/*
==============================================
Variables CSS
==============================================
*/

:root {
	--color-azul-claro: #1eb6e5;
	--color-azul: #269bd9;
	--color-negro: #58595b;
	--color-azul-banner: #00a3e3;
	--bg-color-grey: #f1f1f1;
	--ld-color-primary: #ffa400;
}



/*
==============================================
Reset CSS
==============================================
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: 400;
	font-style: normal;
	font-family: 'Gotham-Book', sans-serif;
	vertical-align: baseline;
	color: var(--color-negro);
	font-display: swap;
}

img {
	max-width: 100%;
}

*,
::after,
::before {
	box-sizing: border-box;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: #000;
}

i {
	margin-right: 5px;
}

a:hover,
a:active,
a:focus,
input[type='radio'] {
	outline: none;
	outline: 0;
}

/* remember to define focus styles! */

:focus {
	outline: none;
}

body {
	color: black;
	background: transparent;
	color: black;
	background: transparent;
}

ol,
ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */

table {
	border-collapse: separate;
	border-spacing: 0;
}

strong {
	font-weight: 600;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
}

blockquote,
q {
	quotes: '' '';
}

.form-control:focus {
	border-color: #dfa42a;
	webkit-box-shadow: none;
	box-shadow: none;
}

.container {
	max-width: 1280px;
	margin: auto;
	width: 100%;
}

.remodal {
	padding: 0px;
}

.bg-grey {
	background: var(--bg-color-grey);
}

.bg-white {
	background: #fff;
}

/*
==============================================
Header
==============================================
*/

.header {
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	width: 100%;
	z-index: 10;
	backdrop-filter: blur(4px);
}

.content_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 5px;
}

.header_logo img {
	width: 100px;
}

.header_menu ul {
	display: flex;
	align-items: center;
}

.header_menu ul li {
	margin: 0 5px;
}

.header_menu ul li a {
	font-size: 14px;
	padding: 0 5px;
	position: relative;
	text-decoration: none;
	color: #fff;
}

.header_menu ul li a:hover {
	color: var(--color-azul-claro);
}

.header_menu ul li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--color-azul-claro);
	transition: all 0.5s ease;
	bottom: -8px;
	left: 0;
}

.header_menu ul li a:hover:after {
	width: 100%;
}

.header_menu.menuMovil {
	display: none;
}

/*
==============================================
home
==============================================
*/

.main {
	padding-bottom: 60px;
}

.banner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.banner_info {
	position: absolute;
	bottom: 80px;
	padding-left: 20px;
}

.tagTipo {
	background: var(--color-azul-banner);
	display: inline-block;
	padding: 10px 20px;
	color: #fff;
}

.banner_info_content {
	display: inline-block;
	background: rgba(0, 0, 0, 0.8);
	padding: 30px 20px;
	color: #fff;
}

.banner_info_content h1 {
	/*font-family: 'Gotham-Medium', sans-serif;*/
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 700;
}

.banner_info_content h2 {
	color: #fff;
	font-size: 27px;
}

.banner_info_content h3 {
	color: var(--color-azul-claro);
	margin-top: 10px;
	font-size: 16px;
}

.menu_secondary {
	background: #000;
	padding: 5px 0;
	position: sticky;
	top: 54px;
	z-index: 10;
}

.menu_secondary .container,
.menu_secondary_list ul,
.menu_secondary_tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu_secondary_list a {
	font-size: 12px;
	padding: 5px 20px;
	color: #fff;
	border-right: 1px solid #fff;
}

.menu_secondary_list li:last-child>a {
	border: none;
}

.menu_secondary_tools_img img {
	width: 30px;
}

.menu_secondary_tools_img {
	margin: 0 10px;
}

.menu_secondary_tools {
	padding-right: 10px;
}

.menu_secondary_tools_button a {
	background: #f7931e;
	color: #fff;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 4px;
	line-height: 1;
}

.woowTheContent {
	height: auto;
	font-size: 1rem;
}

.woowTheContent h1 {
	font-size: 32px;
	margin: 25px 0px 0px;
}

.woowTheContent h2 {
	font-size: 26px;
	margin: 25px 0px 15px;
	font-weight: 600;
}

.woowTheContent h3 {
	font-size: 24px;
	margin: 25px 0px 0px;
}

.woowTheContent h4 {
	font-size: 22px;
	margin: 25px 0px 0px;
}

.woowTheContent h5 {
	font-size: 20px;
	margin: 25px 0px 0px;
}

.woowTheContent h6 {
	font-size: 18px;
	margin: 25px 0px 0px;
}

.woowTheContent p {
	margin: 8px 0px 10px;
}

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

.woowTheContent ul,
.woowTheContent ol {
	padding-left: 40px;
}

.woowTheContent ul {
	list-style: inherit;
}

.woowTheContent ol {
	list-style: auto;
}

.woowTheContent ul li,
.woowTheContent ol li {
	padding-bottom: 15px;
}

.woowTheContent blockquote {
	border-color: var(--color-azul-claro);
	border-left-style: solid;
	border-left-width: 7px;
	padding-left: 20px;
	margin-bottom: 1em;
	margin-right: 1em;
	line-height: 1.5em;
	color: #919191;
}

.woowTheContent a {
	color: var(--color-link);
	text-decoration: underline;
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*
==============================================
Section 1
==============================================
*/

.single-vivienda .banner img {
	width: 100%;
}

.section_1,
.section_2 {
	padding: 40px 5px 10px 5px;
}

.woowNavBreadcrumb {
	overflow: auto;
	margin: 0px;
	margin-bottom: 15px;
	padding: 2px 0px;
}

.woowNavBreadcrumb ol li {
	float: left;
	list-style: none;
}

.woowNavBreadcrumb ol li:after {
	content: '/';
	padding: 0px 8px;
	color: #999999;
	font-weight: 600;
}

.woowNavBreadcrumb ol li:last-child:after {
	content: '';
	display: none;
}

.woowNavBreadcrumb ol li a span {
	font-size: 14px;
	color: #999999;
}

.woowNavBreadcrumb ol li a span:hover {
	color: #222;
	text-decoration: underline;
}

.woowNavBreadcrumb ol li b {
	opacity: 0;
	position: absolute;
}

.breancumb {
	margin-bottom: 10px;
}

.breancumb a,
.breancumb {
	font-size: 14px;
	color: #999999;
	font-style: italic;
}

.titleSingle {
	font-size: 30px;
	margin-bottom: 15px;
	font-family: 'Gotham-Medium', sans-serif;
}

.section_1 h3 {
	font-size: 17px;
	margin-bottom: 20px;
	color: var(--color-azul-claro);
}

.section_1 h3 span {
	color: #000;
}

.section_1_grid {
	display: grid;
	grid-template-columns: repeat(4, 24.3%);
	grid-gap: 10px;
}

.section_1_grid img {
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.section_1_item_1 {
	grid-column-start: 1;
	grid-column-end: 3;
}

.iframeVideo iframe {
	max-width: 100%;
}

.iframeVideo lite-youtube {
	height: 385px;
}

.section_1_item_2 {
	grid-column-start: 3;
	grid-column-end: 5;
	display: grid;
	grid-template-columns: repeat(2, 50%);
	grid-gap: 10px;
}

.section_1_subitem_1 {
	grid-column-start: 1;
	grid-column-end: 3;
}

/*
==============================================
Section 2
==============================================
*/

.section_2 {
	padding-top: 0;
	display: flex;
	flex-wrap: wrap;
}

.breadcump_img {
	margin-bottom: 30px;
	width: 100%;
}

.breadcump_img,
.breadcump_item,
.info_section_2 {
	display: flex;
	align-items: center;
}

.breadcump_item img {
	width: 40px;
}

.breadcump_item {
	padding: 0 20px;
	border-right: 2px solid var(--color-azul-claro);
}

.breadcump_item p,
.breadcump_item a {
	font-size: 14px;
	line-height: 14px;
	margin-left: 5px;
	color: var(--color-azul-claro);
}

.breadcump_item span {
	font-size: 32px;
}

.breadcump_item:last-child,
.info_section_2_item:nth-child(4) {
	border: none;
}

.info_section_2 {
	padding-top: 20px;
}

.info_section_2_item {
	width: 26.666%;
	border-right: 2px solid var(--color-azul-claro);
}

.info_section_2_item_img img {
	width: 40px;
}

.info_section_2_item h4 {
	text-align: center;
	font-size: 13px;
}

.info_section_2_item_img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.info_section_2_item_img p {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 14px;
	line-height: 14px;
	color: var(--color-azul-claro);
	margin-right: 10px;
}

.info_section_2_item h4 {
	margin-bottom: 10px;
}

.section_2_info {
	width: 70%;
	border-bottom: 1px solid #ccc;
	margin-bottom: 40px;
}

.section_2_formulario {
	width: 30%;
	padding-left: 20px;
}

.section_2_tabs {
	padding-top: 60px;
}

.section_2_tabs_title {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.section_2_tabs_title:after {
	content: '';
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 2px;
	background: #ccc;
	z-index: -1;
}

.section_2_tabs_title button {
	border: none;
	background: #fff;
	cursor: pointer;
	padding: 10px 30px;
	border-bottom: 2px solid #ccc;
}

.section_2_tabs_title .tablink_active {
	color: var(--color-azul-claro);
	border-bottom: 2px solid var(--color-azul-claro);
}

.tabs_content {
	padding: 30px 0;
}

.tabs_content p {
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: justify;
}

.img_home_tabs {
	width: 300px;
	margin: auto;
	display: block;
	margin-bottom: 30px;
}

.tabs_content_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 60px;
}

.tabs_content_item {
	padding: 0 30px;
	width: 25%;
}

.tabs_content_item img {
	height: 70px;
	width: 70px;
	display: block;
	margin: auto;
	margin-bottom: 10px;
}

.tabs_content_item p {
	font-size: 12px;
	text-align: center;
}

.item-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.item-flex span {
	font-size: 72px;
}

.tabs_galeria_content {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}

.img-gal {
	width: 25%;
	padding: 10px;
}

.btnMas {
	background: var(--color-azul);
	padding: 15px;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 18px;
	border-radius: 4px;
	display: inline-block;
}

.btnMasWhite {
	border: 1px solid var(--color-azul);
	padding: 10px;
	color: var(--color-azul) !important;
	text-decoration: none !important;
	font-size: 16px;
	border-radius: 4px;
	display: inline-block;
	margin: 5px;
}

.btnMasWhite:hover,
.btnMasWhite.activo {
	background: var(--color-azul);
	color: #fff !important;
}

.section_2_cuotas_header {
	padding: 20px;
	background: var(--color-azul);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.section_2_cuotas img {
	width: 35px;
}

.section_2_cuotas_info {
	width: 100%;
}

.section_2_cuotas_info {
	background: #fff;
}

.section_2_cuotas_header h5 {
	color: #fff;
	margin-left: 5px;
	font-size: 18px;
	line-height: 1;
}

.section_2_cuotas_info {
	padding: 20px;
}

.section_2_cuotas_info,
.section_2_cuotas_item {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.section_2_cuotas_item {
	padding: 0 40px;
}

.section_2_cuotas_info span {
	width: 2px;
	height: 30px;
	background: var(--color-azul);
	display: block;
}

.section_2_cuotas_item_img img {
	margin-right: 10px;
	width: 50px;
}

.section_2_cuotas_item_text p {
	font-size: 13px;
	margin-bottom: 5px;
}

.section_2_cuotas_item_text strong {
	font-size: 22px;
}

.content-tab {
	display: none;
}

.content-tab.active {
	display: block !important;
}

/*
==============================================
Formulario
==============================================
*/

.formulario_header {
	background: #000;
	padding: 20px;
}

.formulario_header p {
	color: #fff;
	margin-bottom: 10px;
	font-size: 14px;
}

.formulario_header h3 {
	color: var(--color-azul-claro);
	margin-bottom: 10px;
	font-size: 28px;
	font-family: 'Gotham-Medium', sans-serif;
}

.formulario_content {
	overflow: auto;
	position: sticky;
	top: 102px;
	height: 560px;
}

.formulario_divider {
	background: var(--color-azul);
	text-align: center;
	padding: 10px;
}

.formulario_divider p {
	color: #fff;
}

.formulario_content form {
	/*padding: 20px;*/
}

/*Formulario hubspot*/
.form_hubspot {
	padding: 20px 0px 30px;
	overflow: hidden;
}

.form_hubspot span {
	color: var(--color-negro) !important;
}

.form_hubspot .hs-error-msg {
	color: #ef5350 !important;
}

.formulario_item {
	margin-bottom: 20px;
}

.formulario_item label,
.form_hubspot label {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 13px;
	display: block;
	margin-bottom: 5px;
	color: var(--color-negro) !important;
}

.form_hubspot .hs-form-field {
	margin-bottom: 15px;
}

.form_hubspot .hs-form-field {
	margin-bottom: 15px;
}

.formulario_item input,
.form_hubspot input[type='text'],
.form_hubspot input[type='email'],
.form_hubspot input[type='number'],
.form_hubspot input[type='tel'] {
	width: 100%;
	height: 35px;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 0px 0 2px;
	font-size: 15px;
}

.formulario_item select,
.form_hubspot select {
	width: 100%;
	height: 35px;
	border: none;
	border-bottom: 1px solid #cccccc;
	padding: 0px 0 2px;
}

.formulario_check,
.form_hubspot checkbox {
	margin-bottom: 20px;
}

.formulario_check label,
.form_hubspot checkbox label {
	font-size: 13px;
}

.formulario_check a,
.form_hubspot checkbox a {
	color: var(--color-azul);
}

.formulario_submit button,
.formulario_redes a,
.form_hubspot .actions input {
	background: var(--color-azul);
	width: 100%;
	padding: 20px;
	border: 2px solid var(--color-azul);
	color: #fff;
	border-bottom: 2px solid var(--color-azul-claro);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.5s ease;
	font-family: 'Gotham-Medium', sans-serif;
}

.formulario_submit button:hover,
.formulario_redes a:hover,
.form_hubspot .actions input:hover {
	background: #fff;
	color: var(--color-azul);
}

.form_hubspot legend {
	font-size: 14px;
}


.formulario_redes {
	display: flex;
	align-items: center;
}

.formulario_redes a {
	width: 100%;
	display: block;
	text-align: center;
	line-height: 1;
}

.formulario_redes a:nth-child(1) {
	border-right: 2px solid var(--color-azul-claro);
}

/*
==============================================
360
==============================================
*/

.tabs_content_360 {
	display: flex;
	flex-wrap: wrap;
}

.tabs_tipologias_title {
	width: 30%;
}

.tabs_tipologias_content {
	width: 70%;
}

.tabs_tipologias_title h3 {
	font-family: 'Gotham-Medium', sans-serif;
	color: var(--color-azul);
	font-size: 20px;
	margin-bottom: 30px;
}

.tablink-3,
.tablink-4 {
	font-family: 'Gotham-Medium', sans-serif;
	width: 100%;
	border: none;
	background: #fff;
	text-align: left;
	font-size: 16px;
	margin-bottom: 10px;
}

.tabs_content_grid_360,
.tabs_content_grid_360_group,
.tabs_content_grid_360_item,
.tabs_content_grid_360_item_img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.tabs_tipologias_content {
	padding-left: 50px;
}

.tabs_content_grid_360_item {
	width: 50%;
	justify-content: center;
	margin-top: 20px;
}

.tabs_content_grid_360_item:nth-child(1) {
	border-right: 2px solid #484340;
}

.tabs_content_grid_360_item p {
	width: 100%;
	text-align: center;
	font-size: 14px;
}

.tabs_content_grid_360_item_img img {
	width: 40px;
}

.tabs_content_grid_360_item_img {
	flex-wrap: nowrap;
	align-items: center;
	padding: 0 10px;
}

.tabs_content_grid_360_item_img p {
	margin: 0 0 0 5px;
}

.section_2_cuotas_header_2 {
	padding: 40px 0 20px 0;
}

.section_2_cuotas_header_2 p {
	text-align: center;
	font-size: 16px;
	margin-bottom: 20px;
	color: #fff;
}

.section_2_cuotas_header_2 p:nth-child(2) {
	font-size: 14px;
}

.section_2_cuotas_legends {
	padding: 30px 0;
}

.section_2_cuotas_legends span {
	font-family: 'Gotham-Medium', sans-serif;
}

.section_2_cuotas_legends p {
	text-align: center;
	margin-bottom: 20px;
	font-size: 15px;
}

.section_2_cuotas_legends p span {
	font-size: 14px;
	padding: 5px 20px;
}

.section_2_cuotas_legends p span:nth-child(1) {
	border-right: 2px solid var(--color-azul);
}

.section_2_cuotas_redes,
.section_2_cuotas_redes {
	display: none;
}

.section_2_cuotas_redes {
	text-align: center;
}

.section_2_cuotas_redes a {
	font-size: 14px;
	color: red;
	padding: 0 15px;
}

/*
==============================================
Mapa
==============================================
*/

.section_2_mapas {
	padding-top: 50px;
}

.section_2_mapas iframe {
	width: 100%;
}

.info_mapa_group {
	margin-top: 30px;
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrapw;
}

.info_mapa_item {
	width: 35%;
	padding-right: 20px;
}

.info_mapa_item p {
	margin-bottom: 5px;
	font-size: 14px;
}

.map-sala {
	height: 400px;
	width: 100%;
}

.map-sala iframe {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	height: 500px;
	width: 100%;
	z-index: 999;
}

/*
==============================================
Destacados
==============================================
*/

.masProyectos {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 25px;
	margin-bottom: 30px;
}

.content_destacado_gropu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.content_destacado_item {
	width: 49%;
}

.content_destacado_item img,
.cardMasProyectos img {
	width: 100%;
}

.content_destacado_item .banner_info,
.cardMasProyectos .banner_info {
	padding: 0;
	bottom: 0;
}

.content_destacado_item .banner_info_content .masProyectosTitulo,
.cardMasProyectos .banner_info_content .masProyectosTitulo {
	font-size: 22px;
	color: #fff;
	margin-bottom: 10px;
}

.content_destacado_item .banner_info_content p,
.cardMasProyectos .banner_info_content p {
	font-size: 16px;
	color: #fff;
}

.content_destacado_item .banner_info_content span,
.cardMasProyectos .banner_info_content span {
	color: var(--color-azul-claro);
	margin-top: 10px;
	display: inline-block;
}

.content_destacado_item .banner_info_content .titleList,
.cardMasProyectos .banner_info_content .titleList {
	color: var(--color-azul-claro);
	margin-top: 10px;
	display: inline-block;
}

/*
==============================================
Footer
==============================================
*/

.content_footer {
	display: flex;
	flex-wrap: wrap;
}

.content_footer_item {
	width: 25%;
	padding: 0 20px;
}

.content_footer_item p {
	line-height: 1.5;
	margin-bottom: 5px;
	font-size: 14px;
}

.content_footer_item a {
	text-decoration: underline;
	font-size: 14px;
	color: #545456;
}

.content_footer_item strong {
	font-family: 'Gotham-Medium', sans-serif;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	padding-bottom: 5px;
}

.content_footer_copy p {
	padding: 20px 100px;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.content_footer_img {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 50px;
}

.content_footer_img img {
	margin: 0 20px;
	width: 100px;
}

.link_to_redes {
	padding: 10px 0;
}

.link_to_redes a {
	text-decoration: none;
}

.link_to_redes i {
	font-size: 17px;
	margin: 0 5px;
}

.tablink-3,
.tablink-4 {
	cursor: pointer;
}

.tablink-3.tablink_active,
.tablink-4.tablink_active {
	color: var(--color-azul);
	font-size: 17px;
}


/*
==============================================
Style Casa en venta
==============================================
*/
.casasEnVenta {
	/*padding-top: 120px;*/
}

.casasEnVenta .titleCasasList {
	text-align: center;
	padding-bottom: 40px;
}

.casasEnVenta .content_destacado_item {
	margin-bottom: 33px;
}

.casasEnVenta .bannerCasas {
	padding-bottom: 15px;
}

.casasEnVenta .bannerCasas img {
	display: block;
	width: 100%;
}

/* Proyectos */

.casasEnVenta .titleProyectosBg {
	background: #222221;
	text-align: center;
	color: #fff;
	padding: 20px 0px;
	text-transform: uppercase;
}

.casasEnVenta .textIntro {
	padding-bottom: 40px;
}

.titleH {
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 23px;
}

.casasEnVenta .textPage {
	padding-bottom: 30px;
	text-align: justify;
}

.casasEnVenta a {
	color: var(--color-azul-banner);
}

.botonesProyectos {
	text-align: center;
	padding: 0px 0px 40px;
}

/*
==============================================
Style Lotes en venta
==============================================
*/

.ventaLotes article .lotesIconos {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-azul);
	display: inline-block;
	margin-bottom: 20px;
}

.ventaLotes .lotesIconos img,
.ventaLotes .lotesIconosContacto img {
	width: 28px;
	vertical-align: middle;
}

.ventaLotes .lotesIconosContacto img {
	width: 35px;
}

.ventaLotes .lotesIconos span {
	color: var(--color-azul);
	padding-right: 10px;
}

.ventaLotes .lotesIconosContacto li {
	display: inline-block;
	border-right: 1px solid #ccc;
	padding: 8px 10px;
}

.ventaLotes .lotesIconosContacto li:first-child {
	padding-left: 0px;
}

.ventaLotes .lotesIconosContacto li:last-child {
	padding-right: 0px;
	border: none;
}

.ventaLotes article hr {
	background: var(--color-azul);
	box-sizing: border-box;
}

.ventaLotes .lotesImgSlide {
	position: relative;
}

.ventaLotes .lotesImgSlide:after {
	content: "";
	position: absolute;
	background-image: url(../images/elements/slide-lotes-der.html);
	background-size: cover;
	width: 50px;
	height: 50px;
	top: 50%;
	transform: translate(0px, -30px);
	right: 10px;
}

.ventaLotes .lotesImgSlide:before {
	content: "";
	position: absolute;
	background-image: url(../images/elements/slide-lotes-iz.html);
	background-size: cover;
	width: 50px;
	height: 50px;
	top: 50%;
	transform: translate(0px, -30px);
	left: 10px;
}

.ventaLotes .verticalCenter {
	position: relative;
}

.ventaLotes .verticalCenter a {
	width: 100%;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/** CUSTOM FANCYBOX **/

.fancybox-button svg {
	color: #fff;
}

.section_1_subitem_3 {
	position: relative;
}

.mask-dark {
	background: #1e1e1e;
	opacity: 0.87;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: 0;
}

.mask-dark p {
	color: #fff;
}

.mask-dark span {
	color: var(--color-azul);
}

.has-iframe {
	padding: 40px 0px 10px;
}

.has-iframe .fancybox__content {
	padding: 0px !important;
	height: 100% !important;
}

/*
==============================================
Landing Page
==============================================
*/
.LandingEntreCielos .bn-color-primary {
	color: var(--ld-color-primary);
}

.LandingEntreCielos .banner-landing {
	background-image: url(../images/landings/homework/banner-landing-v2.html);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	width: 100%;
}

.LandingEntreCielos .banner-landing::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.LandingEntreCielos .banner-landing img {
	width: initial;
}

.LandingEntreCielos .banner-landing img:nth-child(1) {
	max-width: 280px;
	position: relative;
}

.LandingEntreCielos .banner-landing img:nth-child(2) {
	max-width: 200px;
}

.LandingEntreCielos .banner-landing h1 {
	color: #fff;
	font-size: 1.8rem;
	text-align: left;
}

.LandingEntreCielos .banner-landing .info {
	background-color: var(--color-azul-claro);
	font-size: 2rem;
	line-height: 1;
}

.LandingEntreCielos .banner-landing .info strong {
	color: #fff !important;
}

.LandingEntreCielos .banner-landing hr {
	border-top: 3px solid #fff;
}

.LandingEntreCielos .banner-landing ul {
	margin-bottom: 6rem;
	padding-left: 8rem;
	list-style-type: initial;
}

.LandingEntreCielos .banner-landing ul li {
	color: #fff;
	font-size: 1.7rem;
	text-align: left;
}

.LandingEntreCielos .banner-landing form input {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #9e9e9e;
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	padding: 0.3rem;
	width: 100%;
}

.LandingEntreCielos .banner-landing form input::placeholder {
	color: #fff;
}


/*
==============================================
Formulario de contacto
==============================================
*/
.LandingEntreCielos .hs-fieldtype-text {
	width: 100% !important;
}

#label-firstname-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-lastname-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-email-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-mobilephone-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-hs_persona-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-presupuesto_para_invertir-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-cuando_planea_comprar_vivienda_-575adb6b-db80-45a4-9a20-cdbbb0e4177d span,
#label-inversion_mensual_para_vivienda-575adb6b-db80-45a4-9a20-cdbbb0e4177d span {
	color: #fff;
	font-weight: bold;
}

.LandingEntreCielos .inputs-list {
	margin-bottom: 0 !important;
	padding-left: 0 !important;
	list-style-type: none !important;
}

.LandingEntreCielos .hs-error-msg {
	font-size: 1rem;
	color: var(--ld-color-primary);
}

.LandingEntreCielos select.hs-input {
	background-color: transparent;
	border: 2px solid var(--color-azul-claro);
	color: #fff;
	padding: 8px;
	margin-top: 0.6rem;
}

.LandingEntreCielos select.hs-input option {
	color: #000 !important;
}

.LandingEntreCielos .hs-button {
	background-color: var(--ld-color-primary) !important;
	width: initial !important;
	font-size: 1.4rem !important;
	text-transform: uppercase;
	padding: 5px 30px !important;
	border-radius: 10px;
	margin: 1rem 0;
	border: none !important;
}

.LandingEntreCielos .hs-form-booleancheckbox-display .hs-form-required {
	display: none;
}

.LandingEntreCielos li.hs-form-booleancheckbox {
	margin-top: 3rem;
}

.LandingEntreCielos li.hs-form-booleancheckbox p {
	font-size: 1rem;
	color: #fff;
	display: block !important;
	font-weight: bold;
	line-height: 1.2;
	margin-left: 0.7rem !important;
	vertical-align: middle;
}

.LandingEntreCielos li.hs-form-booleancheckbox p a {
	color: var(--color-azul-claro);
	font-weight: bold;
}

.LandingEntreCielos li.hs-form-booleancheckbox input {
	transform: scale(1.7);
}

.LandingEntreCielos li.hs-form-booleancheckbox span {
	line-height: 0.7;
	margin-top: -14px;
}

.LandingEntreCielos .content-desde {
	font-size: 1.7rem;
	color: #fff;
	line-height: 1;
	padding-left: 6rem;
	padding-top: 2rem;
	text-align: left;
}

.content-desde strong {
	color: var(--color-azul-claro);
	font-size: 4.5rem;
}

.LandingEntreCielos .bg-negro-claro {
	background-color: rgba(0, 0, 0, 0.6);
}

.LandingEntreCielos .ld-content-form h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	margin-top: 5rem;
}

.LandingEntreCielos .ld-content-form a.btn {
	background-color: var(--ld-color-primary);
	border: none;
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: bold;
}

.LandingEntreCielos .content-2 h4,
.LandingEntreCielos .content-2 h4 strong {
	color: #000;
}

.LandingEntreCielos .content-2 h4 {
	font-size: 2.5rem;
	line-height: 1.4;
}

.LandingEntreCielos .content-2 div {
	background-color: var(--color-azul-claro);
	color: #fff;
	font-size: 3rem;
}

.LandingEntreCielos .content-iconos {
	padding-top: 6rem;
}

.LandingEntreCielos .content-iconos img {
	max-width: 150px;
}

.LandingEntreCielos .content-iconos p {
	font-size: 1.3rem;
	line-height: 1.1;
}

.LandingEntreCielos .content-3 {
	padding-bottom: 10rem;
	padding-top: 5rem;
}

.LandingEntreCielos .content-3 a {
	background-color: var(--color-azul-claro);
	border-radius: 15px;
	color: #fff;
	font-size: 2.5rem;
}

.LandingEntreCielos .content-3 a:hover {
	color: #fff;
}


/*
==============================================
Pagina Blog
==============================================
*/

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

.pageListBlog .banner_info .banner_info_content {
	background: rgba(0, 0, 0, 0.5);
	padding: 5px 20px;
	border-radius: 5px;
}

.pageListBlog .banner_info .banner_info_content a {
	color: #fff;
}

.pageListBlog .banner_info .banner_info_content:hover {
	background: var(--color-azul-claro);
}

.pageListBlog .banner_info .banner_info_content a img {
	width: 18px;
	vertical-align: sub;
}

.listCat {
	width: 100%;
}

.listCat ul {
	text-align: center;
	padding: 10px 0px 0px;
}

.listCat ul li {
	display: inline-block;
	margin: 0px 5px;
	text-transform: uppercase;
	border-radius: 7px;
	overflow: auto;
}

.listCat ul li:hover a {
	background: var(--color-azul-claro);
	color: #fff;
	text-decoration: none;
}

.listCat ul li a {
	color: var(--color-negro);
	display: block;
	padding: 7px 12px;
	font-size: 15px;
}

.blogBreadcrumb ol {
	display: inline-block;
	box-shadow: 5px 6px 8px -7px #ccc;
	border-radius: 10px;
	padding: 5px 6px;
}

.blogBreadcrumb ol li:after {
	content: '➤';
	color: var(--color-azul-claro);
	font-size: 11px;
}

.blogBreadcrumb ol li a span {
	font-size: 14px;
}

.blogBreadcrumb ol li:last-child a span {
	color: var(--color-azul-claro);
}

.article-post a:hover {
	text-decoration: none;
}

.categoriasList a {
	background: var(--color-azul-claro);
	color: #fff !important;
	text-decoration: none;
	margin-right: 5px;
	padding: 5px 10px;
	border-radius: 5px;
}

.article-post .linkMore {
	color: var(--color-azul-claro);
	display: inline-block;
	font-size: 20px;
}

.article-post .linkWapp {
	display: inline-block;
	float: right;
	padding-top: 13px;
}

.article-post .linkWapp img {
	width: clamp(10px, 40px, 45px);
}

.sidebarList .titleSidebar {
	font-size: 20px;
	font-weight: 600;
}

.sidebarList .widgetBlog img {
	display: block;
	margin: 0px auto;
	max-width: 120px;
}

.sidebarList .widgetBlog .text:before {
	content: '❛❛';
	color: var(--color-azul-claro);
	font-size: 90px;
	text-align: center;
	width: 100%;
	display: block;
	line-height: 40px;
	margin-top: 30px;
}

.sidebarList .widgetBlog .text {
	text-align: justify;
}

/*
==============================================
Pagina single Blog
==============================================
*/

.singleBlog a {
	color: var(--color-azul-claro);
}

.titleBlogSingle {
	font-size: 40px;
}

.recentPost {
	box-shadow: 1px 2px 6px -3px #a3a3a3;
	border-radius: 10px;
}

.recentPost a {
	text-decoration: none;
}

.recentPost h4 {
	font-size: clamp(13px, 21px, 25px);
	font-family: 'Gotham-Medium', sans-serif;
	font-weight: 600;
}

.recentPost .listCat ul {
	text-align: left;
}

.recentPost .listCat ul li {
	margin: 3px 3px 4px 0px;
}

.recentPost .listCat ul li a {
	background: var(--color-azul-claro);
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	text-transform: capitalize;
	padding: 3px 6px;
}

.sidebarSingle {
	box-shadow: -10px 0px 3px -6px #edebeb;
}

/*
==============================================
	Style elemets
==============================================
*/

.fixedBar {
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 999;
	text-align: center;
}

.fixedBar img {
	/*	width: 600px;*/
	max-width: 100%;
	display: block;
	margin: 0px auto;
}


/*
==============================================
Rediseño single vivienda 
==============================================
*/

#newSingle {}

#newSingle .banner img {
	width: 100%;
	height: auto;
}

#newSingle .bannerTag {
	background: #f39200;
	color: #fff;
	padding: 7px 25px;
	position: absolute;
	top: 25%;
	right: 0px;
	font-size: 15px;
	border-radius: 20px 0px 0px 20px;
}

#newSingle .banner_info {
	bottom: 0px;
}

#newSingle .tagTitulo {
	background: var(--color-azul-banner);
	display: inline-block;
	padding: 8px 20px;
	color: #fff;
	width: min(450px, 100%);
	font-size: 16px;
	text-align: center;
	border-radius: 10px 10px 0px 0px;
}

#newSingle .banner_info_content {
	width: min(450px, 100%);
	padding: 20px 20px;
}

#newSingle .banner_info_content p.precio {
	color: #fff;
}

#newSingle .banner_info_content p.direccion {
	color: var(--color-azul-banner);
}

#newSingle .menu_secondary {
	padding: 0px;
}

#newSingle .menu_secondary_list li a:hover,
#newSingle .menu_secondary_list li a:hover span:before {
	/*color: var(--color-azul-banner);
	text-decoration: none;*/
}

#newSingle .menu_secondary_list li a.active,
#newSingle .menu_secondary_list li a.active span:before {
	color: var(--color-azul-banner) !important;
	text-decoration: none;
}

#newSingle .menu_secondary_list li span {
	padding-right: 4px;
}

#newSingle .menu_secondary_tools_img a {
	display: block;
}

#newSingle .menu_secondary_tools_img img {
	line-height: 0px;
	padding: 5px 0px 0px;
}


#newSingle section.filter {
	display: none;
}

#newSingle section.active {
	display: block;
}

#newSingle .woowNavBreadcrumb {
	text-align: right;
	margin-bottom: 0px;
	padding: 15px 0px;
}

#newSingle .woowNavBreadcrumb ol li a span {
	/*color: var(--color-azul-claro);*/
	color: #9d9d9d;
	display: inline-block;
}

#newSingle .woowNavBreadcrumb ol li:after {
	content: '\e905';
	padding: 3px 2px 0px 0px;
	color: var(--color-azul-claro);
	font-weight: 500;
	font-family: 'icomoon' !important;
	display: inline-block;
	transform: translateY(2px);
}

#newSingle .woowNavBreadcrumb ol li:first-child span:before {
	color: #9d9d9d;
}

#newSingle .woowNavBreadcrumb ol li:last-child a span {
	color: var(--color-azul-claro);
	text-transform: lowercase;
}

#newSingle .woowNavBreadcrumb ol li a span:first-letter {
	text-transform: uppercase;
}

#newSingle .woowNavBreadcrumb ol li:last-child:after {
	color: transparent;
}

#newSingle .contentInfo .descProyecto {
	max-height: 250px;
	overflow: hidden;
	overflow-y: scroll;
}

#newSingle .contentInfo .woowTheContent {
	font-size: 0.9rem;
}

.btnProyectos {
	display: inline-block;
	border-width: 2px;
	border-color: var(--color-azul-claro);
	border-radius: 5px;
	margin: 0px 15px;
}

.btnProyectos span {
	font-size: 22px;
	vertical-align: sub;
	padding-right: 3px;
}

.btnProyectos.maqueta {
	background-color: var(--color-azul-claro);
	color: #fff;
	transition: all 0.5s ease;
}

.btnProyectos.maqueta:hover {
	background-color: #fff;
	color: var(--color-azul-claro);
}

.btnProyectos.maqueta:hover span:before {
	color: var(--color-azul-claro);
}

.btnProyectos.brochure,
.btnProyectos.brochure span:before {
	color: var(--color-azul-claro);
	transition: all 0.5s ease;
}

.btnProyectos.brochure:hover {
	background-color: var(--color-azul-claro);
	color: #fff;
}

.btnProyectos.brochure:hover span:before {
	color: #fff;
}

#newSingle .contentSlider {
	background: #efefef;
	text-align: center;
	border-radius: 10px;
	position: relative;
}

#newSingle .contentSlider p {
	font-weight: 700;
	font-size: 20px;
	color: #4e4e4e;
}

/* Estilos slider */
.swiperSingleVivienda {
	padding-bottom: 10px;
}


.swiperSingleVivienda .swiper-wrapper {
	height: auto;
}

.swiperGeneralThumbs .swiper-button-next,
.swiperGeneralThumbs .swiper-button-prev,
.swiperVideosThumbs .btn-next2,
.swiperVideosThumbs .btn-prev2 {
	background: var(--color-azul-claro);
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	top: var(--swiper-navigation-top-offset, 48%);
	--swiper-navigation-size: 20px;
}

.swiperGeneralThumbs .swiper-button-next {
	right: 5px;
	z-index: 0;
}

.swiperGeneralThumbs .swiper-button-prev {
	left: 5px;
	z-index: 0;
}

.swiperGeneralThumbs .swiper-button-next:after {
	font-family: 'icomoon' !important;
	content: "\e907";
	font-size: 35px;
}

.swiperGeneralThumbs .swiper-button-prev:after {
	font-family: 'icomoon' !important;
	content: "\e909";
	font-size: 35px;
}

.swiperSingleVivienda .swiper-pagination {
	bottom: -6px;
}

.swiperSingleVivienda .swiper-pagination-bullet {
	width: 18px;
	height: 5px;
	border-radius: 11px;
	--swiper-pagination-color: var(--color-azul-claro);
}

.swiperSingleVivienda .swiper-slide img {
	border-radius: 10px;
}

/* Estilos slider [Videos] */
.swiperVideosThumbs .btn-next2 {
	top: 22px;
}

.swiperVideosThumbs .btn-prev2 {
	top: 22px;
}

.swiperVideosThumbs .swiper-slide p {
	font-size: 20px;
	font-weight: 600;
}


#newSingle .lineVisitanos {
	border-style: dashed;
	border-top-width: 2px;
	width: 85%;
}

#newSingle .listVisitanos {
	text-align: left;
}

#newSingle .listVisitanos li {
	padding: 5px 0px;
	font-size: 14px;
}

#newSingle .listVisitanos strong {
	width: 20%;
	display: inline-block;
	color: var(--color-azul-claro);
}

#newSingle .listVisitanos p {
	display: inline-block;
	width: 78%;
	background: #f9f9f9;
	padding: 8px 15px;
	border-radius: 10px;
	vertical-align: middle;
	color: #4e4e4e;
}

#newSingle .borderLogo {
	border-right: 1px solid #dee2e6;
}

#newSingle .mapProyecto iframe {
	display: block;
}

#newSingle .infoMap {
	background: #000;
	padding: 7px 15px;
}

#newSingle .infoMap span {
	color: #fff;
	font-size: 14px;
}

#newSingle .infoMap a {
	float: right;
}

#newSingle .infoMap a img {
	width: 25px;
	margin-left: 10px;
}

#newSingle .cardMasProyectos {
	margin-bottom: 20px;
}

#newSingle .cardMasProyectos .banner_info_content {
	width: min(300px, 90%);
	padding: 10px 15px;
}

#newSingle .cardMasProyectos .tagTipo {
	padding: 4px 10px;
	color: #fff;
	font-size: 10px;
}

#newSingle .cardMasProyectos .masProyectosTitulo {
	font-size: 16px;
}

#newSingle .cardMasProyectos .banner_info_content p {
	font-size: 13px;
}

#newSingle .cardMasProyectos .banner_info_content span {
	font-size: 13px;
}

#newSingle .iconZonas img {
	width: 45%;
	padding-right: 5px;
}

#newSingle .iconZonas span {
	font-size: 12px;
	line-height: 16px;
	display: inline-block;
	width: 50px;
	vertical-align: super;
	font-weight: 600;
}

#newSingle .iconsVideo div {
	border-radius: 10px;
	border: solid 2px #9d9d9d;
	padding: 15px;
}

#newSingle .iconsVideo img {
	max-width: 60px;
}

#newSingle .iconsVideo span {
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	display: block;
	padding-top: 8px;
}

#newSingle .boxTipologia>div {
	box-shadow: 0px -1px 4px rgb(68 68 68 / 30%);
	border-radius: 10px 10px 0px 0px;
}

#newSingle .boxTipologia .cartTipo {
	border-right: 1px solid rgb(68 68 68 / 15%);
}

#newSingle .boxTipologia .cartTipo span {
	color: var(--color-azul-claro);
	font-size: 28px;
	display: block;
	text-align: center;
	font-weight: 600;
	margin-top: 10%;
}

#newSingle .boxTipologia .cartTipo strong {
	color: var(--color-azul-claro);
	font-size: 35px;
	display: block;
	text-align: center;
	line-height: 25px;
}

#newSingle .boxTipologia .cartInfo p {
	text-align: left;
	font-size: 12px;
	font-weight: 600;
}

#newSingle .cartBtn {
	min-height: 80px;
	line-height: 48px;
	background: var(--color-azul-claro);
	border-radius: 0px 0px 10px 10px !important;
}

#newSingle .cartBtn strong {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
	line-height: 51px;
	color: #fff;
}

#newSingle .cartBtn a {
	display: block;
	line-height: 0px;
	background: #dbf3fd;
	color: var(--color-azul-claro);
	padding: 8px 0px;
	font-size: 15px;
	text-decoration: none;
	font-weight: 600;
}

#newSingle .cartBtn a span {
	position: relative;
	width: 10px;
	height: 13px;
	display: inline-block;
}

#newSingle .cartBtn a span:before {
	color: var(--color-azul-claro);
	position: absolute;
	top: -6px;
	font-size: 30px;
}

#newSingle .cartBtn b {
	display: block;
	line-height: 0px;
	padding: 7px 0px;
}

#newSingle .boxInfo {
	background: #eee;
	position: relative;
}

#newSingle .boxInfo h3 {
	font-weight: 600;
	font-size: 13px;
	margin: 0px;
}

#newSingle .boxInfo h4 {
	font-size: 20px;
	font-weight: 600;
}

#newSingle .boxInfo span {
	display: block;
	color: #fff;
	font-size: 12px;
	position: absolute;
	right: 0px;
	left: 0px;
	bottom: 0px;
	padding: 2px 10px;
}

#newSingle .contentImgInfo {
	border-radius: 10px;
	overflow: hidden;
}

#newSingle .contentImgInfo img {
	display: block;
}

#newSingle .contentImgInfo p {
	color: #fff;
	text-align: center;
	padding: 10px 10px;
	font-size: 14px;
}

#newSingle .form_hubspot fieldset {
	max-width: 100%;
}

#newSingle .btnContacto {
	position: fixed;
	bottom: 10%;
	right: 2%;
	z-index: 99;
}

#newSingle .btnContacto a {
	display: block;
	background: #ff8d00;
	color: #fff;
	border-radius: 20px;
	font-size: 10px;
}

#newSingle .btnContacto a span {
	color: #fff;
}

#newSingle .btnContacto img {
	display: none;
	margin-bottom: -7px;
	width: 40px;
	margin-left: auto;
	margin-right: 0px;
}


.bounce {
	animation: bounce 2s ease infinite;
}

@keyframes bounce {
	70% {
		transform: translateY(0%);
	}

	80% {
		transform: translateY(-15%);
	}

	90% {
		transform: translateY(0%);
	}

	95% {
		transform: translateY(-7%);
	}

	97% {
		transform: translateY(0%);
	}

	99% {
		transform: translateY(-3%);
	}

	100% {
		transform: translateY(0);
	}
}

.centerVertical {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}


/*
==============================================
Landing Bosque
==============================================
*/

#landingBosque {
	font-weight: 400;
	font-style: normal;
	font-family: 'Gotham-Book', sans-serif;
}

#landingBosque strong {
	font-weight: 600;
	font-style: normal;
	font-family: 'Gotham-Medium', sans-serif;
}

#landingBosque .headerBosque {
	background: #000;
	padding-top: 8px;
}

#landingBosque .titleH1 {
	font-size: 23px;
}

#landingBosque .titleH2 {
	font-size: 20px;
}

#landingBosque .titleH3 {
	font-size: 16px;
}

#landingBosque .bonoBosque {
	font-size: 35px;
	color: var(--color-azul-claro);
	font-weight: 600;
	font-family: 'Gotham-Medium', sans-serif;
}

#landingBosque .lineBlue {
	background-color: var(--color-azul-claro);
	width: 60%;
}

#landingBosque .cajaFiltro {
	background: #ededed;
	max-width: 335px;
	margin: 0px auto;
	text-align: left;
	color: #000;
}

#landingBosque .cajaFiltro ul li {
	display: block;
	padding: 5px 0px;
}

#landingBosque .cajaFiltro span:before {
	color: #000;
	font-weight: 600;
}

#landingBosque .cajaFiltro img {
	width: 21px;
	vertical-align: sub;
}

#landingBosque .textMini {
	font-size: 12px;
}

#landingBosque .resaltoBlue {
	color: var(--color-azul-claro);
}

#landingBosque .shadowImg {
	box-shadow: 1px 0px 7px -2px #121212;
}

#landingBosque .swiperGeneralThumbs .swiper-button-next {
	z-index: 10;
}

#landingBosque .swiperGeneralThumbs .swiper-button-prev {
	z-index: 10;
}

#landingBosque .swiperSingleVivienda .swiper-slide img {
	border-radius: 0px;
}

.listaZonas li {
	display: block;
	padding-bottom: 5px;
}

.listaZonas li:before {
	content: url('../images/landings/bono-bosque/ICONO-VINETA.html');
	width: 20px;
	display: inline-block;
	vertical-align: sub;
}

#landingBosque .footerBosque {
	background: rgb(231, 231, 231);
	font-size: 11px;
}

#landingBosque .btnProyectos.maqueta img {
	vertical-align: bottom;
	width: 25px;
}

#landingBosque .btnProyectos.maqueta:hover img {
	filter: invert(55%) sepia(91%) saturate(1846%) hue-rotate(159deg) brightness(104%) contrast(80%);
}

.animateGif {
	position: relative;
}

.animateGif .cursor {
	position: absolute;
	width: 40px;
	bottom: 10px;
	right: 10px;
}

#landingBosque .btnProyectos ion-icon {
	font-size: 19px;
	vertical-align: sub;
}

#landingBosque .visitantes {
	font-weight: 600;
}

#landingBosque .visitantes ion-icon {
	font-size: 20px;
	vertical-align: middle;
}

#landingBosque .aptosSeparados {
	border: 1px solid var(--color-azul-claro);
}

#landingBosque .aptosSeparados h2 {
	display: inline-block;
}

#landingBosque .aptosSeparados ion-icon {
	font-size: 30px;
	vertical-align: bottom;
	color: var(--color-azul-claro);
}

#landingBosque .titleColor {
	color: #fff;
	font-weight: 600;
}

#landingBosque .titleColor span {
	color: var(--color-azul);
	font-weight: 600;
}

#landingBosque .rmp_menu_trigger {
	display: none !important;
}

.naranja strong {
	color: #ff8d00;
}

/*
==============================================
Landing Exterior
==============================================
*/

.mainLandingExterior h2 {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--color-negro);
	letter-spacing: 1.5px;
}

.mainLandingExterior h2 span {
	color: var(--color-azul-banner);
	font-weight: 700;
	padding-bottom: 6px;
	letter-spacing: 1.5px;
}

.mainLandingExterior .descripcion {
	max-width: 70% !important;
	margin: auto;
	text-align: center;
	margin-bottom: 7px;
}

/** Slider Landing **/

.swiperLandingExterior {
	padding: 0;
	object-fit: cover;
}

.florSlider {
	width: 20vw;
	position: absolute;
	top: 30%;
	right: 42vw;
	z-index: 1;
}

.swiperLandingExterior .swiper-pagination {
	width: 18px;
	height: 5px;
	border-radius: 11px;
	--swiper-pagination-color: var(--color-azul-claro);
}

.swiperLandingExterior .swiper-button-next,
.swiperLandingExterior .swiper-button-prev {
	background: var(--color-azul-claro);
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	top: var(--swiper-navigation-top-offset, 48%);
	--swiper-navigation-size: 20px;
}

/** popup landing **/
.mainLandingExterior .popup {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	padding-top: 60px;
}

.mainLandingExterior .popup-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.mainLandingExterior .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.mainLandingExterior .close:hover,
.mainLandingExterior .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/** Submenu **/
.cont-submenu .menu_secondary_list {
	margin: 8px auto;
}

.cont-submenu .menu_secondary_list span {
	color: #fff
}

/** Section principal **/
.cont-principal h1 {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 5px;
}

.cont-principal .descrip {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 700;
	color: var(--color-negro);
	letter-spacing: 1.5px;
}

.cont-principal .descrip span {
	color: var(--color-azul-banner);
	font-weight: 700;
	padding-bottom: 5px;
	letter-spacing: 1.5px;
}

.contenedor-slider {
	max-width: 920px;
	margin: auto;
}

.contenedor-slider .swiperPasosExterior {
	padding-left: 2.5%;
	padding-right: 2.5%;
}

.contenedor-slider .contSlider {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
	padding-top: 10%;
	margin-bottom: 10%;
}

.contenedor-slider .contSlider img {
	width: 100%;
	margin: auto;
}

.contenedor-slider .contSlider p {
	font-size: 13px;
}

.contenedor-slider .swiper-button-next,
.contenedor-slider .swiper-button-prev {
	background: #cdcdcd;
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	--swiper-navigation-size: 20px;
	--swiper-navigation-top-offset: 30%;
}

.contenedor-slider .swiper-button-next:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f0da";
	font-size: 32px;
}

.contenedor-slider .swiper-button-prev:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f0d9";
	font-size: 32px;
}

.mainLandingExterior hr {
	max-width: 850px;
	margin: 60px auto;
	background-color: #e5e1de;
	height: 0.4px;
}

/** section testimonios **/
.section-testimonios .cont-testimonios {
	display: flex;
	flex-direction: row;
	max-width: 85%;
	margin: auto;
	justify-content: space-evenly;
}

.section-testimonios .cont-testimonios .card-testimonio {
	width: 30%;
	background-color: var(--bg-color-grey);
	border-radius: 0px 0px 10px 10px;
	margin-bottom: 8px;
	overflow: hidden;
}

.section-testimonios .cont-testimonios .card-testimonio img {
	width: 100%;
}

.section-testimonios .cont-testimonios .card-testimonio .info-card {
	padding: 5%;
	padding-left: 10%;
}

/** Section Proyectos **/
.section-proyectos .cambio-moneda {
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.section-proyectos .cambio-moneda span {
	margin: auto;
	font-weight: 700;
	font-size: 1.1rem;
}

.section-proyectos .cambio-moneda .cont-botones {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.section-proyectos .cambio-moneda .cont-botones button {
	padding: 3px 15px 3px 15px;
	border-radius: 5px;
	background-color: #a3a3a3;
	color: #fff;
	border: none;
	font-weight: 700;
	font-size: 1.1rem;
}

.section-proyectos .cambio-moneda .cont-botones button.active {
	background-color: var(--color-azul-banner);
}

.section-proyectos .cont-proyectos {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 85%;
	margin: auto;
	justify-content: space-around;
	row-gap: 50px;
	margin-bottom: 8px;
}

.section-proyectos .cont-proyectos .card-proyecto {
	width: 30%;
	border-radius: 20px;
	background-color: var(--bg-color-grey);
	overflow: hidden;
}

.section-proyectos .cont-proyectos .card-proyecto img {
	width: 110%;
	max-width: 110%;
	margin: -5px;
}

.section-proyectos .cont-proyectos .card-proyecto h3 {
	margin: 5%;
	font-weight: 700;
	font-size: 1rem;
}

.section-proyectos .cont-proyectos .card-proyecto hr {
	height: 0.1px;
	width: 90%;
	margin: auto;
	color: #ededed;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto {
	margin: 5%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-top: 10px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .item span {
	font-size: 15px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto .separador2 {
	margin-right: 5px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-proyecto img {
	width: 12%;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio {
	margin: 5%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio p {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-azul);
	margin-top: 5px;
}

.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio .precio,
.section-proyectos .cont-proyectos .card-proyecto .info-card-precio .info-precio .precioSalario {
	font-size: 1.6rem;
	font-weight: 700;
}

.section-proyectos .cont-proyectos .card-proyecto a {
	margin: auto !important;
	font-size: 1rem;
	font-weight: 700;
	background-color: var(--color-azul-banner);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 5px 20px 5px 20px;
	margin: 3%;
}

/** Section FAQS **/
.section-faqs .container .accordion>.card {
	border: none;
	max-width: 85%;
	margin: auto;
}

.section-faqs .container .accordion>.card>.card-header {
	border: none;
	margin-top: 20px;
	border-radius: 5px;
	background-color: var(--bg-color-grey);
}

.section-faqs .container .accordion>.card>.card-header>.card-title {
	text-decoration: none;
	color: var(--color-negro);
	font-size: 1rem;
	font-weight: 700;
}

.section-faqs .accordion .card-header:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f068";
	float: left;
	border: solid 1px var(--color-azul-banner);
	border-radius: 50%;
	padding: 2px 5px 1px 4px;
	font-size: 11px;
	color: var(--color-azul-banner);
	font-weight: 900;
	margin-right: 3%;
}

.section-faqs .accordion .card-header.collapsed:after {
	font-family: 'Font Awesome 5 Free';
	content: "\f067";
	padding: 2px 5px 1px 4px;
	color: var(--color-azul-banner);
	font-weight: 900;
	font-size: 11px;
	margin-right: 3%;
}

.section-faqs .CTA {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
}

.section-faqs .CTA a {
	font-size: 1.2rem;
	font-weight: 700;
	background-color: var(--color-azul-banner);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 5px 20px 5px 20px;
	margin: 3%;
}

.section-faqs .CTA span {
	font-size: 1.2rem;
	font-weight: 700;
}

/* section blog */

.section-blog {
	margin-bottom: 15px;
}

.contenedor-slider-blog {
	width: 85%;
	margin: auto;
}

.contenedor-slider-blog .swiperBlogExterior {
	padding-left: 5%;
	padding-right: 10%;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide {
	-webkit-box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	-moz-box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	box-shadow: 2px 2px 2px 0px rgba(176, 176, 176, 0.61);
	border: solid 1px rgba(176, 176, 176, 0.61);
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding-bottom: 1.5%;
	padding-top: 2%;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog {
	width: 45%;
	display: flex;
	flex-direction: column;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span {
	margin-top: 3px;
	margin-bottom: 3px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span a {
	color: #fff;
	background-color: var(--color-azul-claro);
	border: none;
	border-radius: 5px;
	padding: 3px 10px 3px 10px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog span a:hover {
	text-decoration: none;
	color: #fff;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-info-blog a {
	color: var(--color-azul-claro);
	margin-top: 3px;
}

.contenedor-slider-blog .swiper-wrapper .swiper-slide .slide-content .cont-img-blog {
	width: 45%;
}

.contenedor-slider-blog .swiper-button-next,
.contenedor-slider-blog .swiper-button-prev {
	background: #cdcdcd;
	color: #fff;
	font-weight: 900;
	padding: 19px;
	border-radius: 50%;
	--swiper-navigation-size: 25px;
}

.section-formulario .hbspt-form {
	text-align: center;
}

.section-formulario .hs-form {
	display: inline-block;
	margin: 0px auto;
}

/*
==============================================
Landing bella villa
==============================================
*/

.fondo-azul {
	background-image: url('../images/landings/bella-villa/FONDO1.html');
	background-size: 100%;
}

.fondo-blanco {
	background-image: url('../images/landings/bella-villa/FONDO2.html');
	background-size: 100%;
}

.texto-landing-section p {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 32px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: normal;
	text-wrap: wrap;
}

.texto-landing-section .fondo-amarillo {
	background-color: #d8c80b;

}

.texto-landing-section div span {
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 55px;
	color: #fff;
	line-height: normal;
	font-weight: 900;
}

.img-cta {
	width: 80%;
	margin: auto;
}

.banner2 img {
	width: 100%;
}

.contentBellaVilla #formulario {
	border-radius: 5px;
	background-color: #fff;
	-webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.6);
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.6);
	overflow: hidden;
}

.contentBellaVilla #formulario .header-form {
	background-color: #04abbe;
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 25px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.contentBellaVilla #formulario .header-form span {
	background-color: #04abbe;
	font-family: 'Gotham-Medium', sans-serif;
	font-size: 25px;
	color: #fff;
	font-weight: 700;
}

.footer-Bella-Villa {
	background-color: #000;
}

.footer-Bella-Villa div p {
	color: #fff;
}

.footer-Bella-Villa div span {
	color: var(--color-azul-claro);
	font-size: 25px;
	font-weight: 700;
}

.cta2 {
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.video-landing-bella {
	height: 100%;
	min-height: 400px;
}

/*
==============================================
Landing PQRS
==============================================
*/
.woow-sect-form-pqrs .list-group-item {
	border-radius: 44px;
	background-color: #59b9ea;
	border: none;
	color: #fff;
	transition: all 0.8s ease;

	&.active {
		background-color: #0087bc;
	}

	&:disabled,
	&.disabled {
		background-color: #78d9ff8f;
		color: #999999;
	}

	&:hover {
		background-color: #016d97;
		color: #fff;
	}

}

.woow-cont-form-pqrs {
	border-radius: 29px;
	background-color: #eeeeee;
}

.woow-sect-form-pqrs .btn-primary {
	color: #fff;
	border-radius: 7px;
	background-color: #0087bc;
	transition: all 0.8s ease;
	border: none;

	&.disabled,
	&:disabled {
		color: #fff;
		background-color: #78d9ff8f;
	}

	&:hover {
		background-color: #016d97;
		color: #fff;
	}
}

.woow-sect-form-pqrs .btn-secondary {
	border-radius: 7px;
	background-color: #eeeeee;
	transition: all 0.8s ease;
	color: #696969;
	border: none;

	&.disabled,
	&:disabled {
		color: #fff;
		background-color: #78d9ff8f;
	}

	&:hover {
		background-color: #696969;
		color: #fff;
	}
}

.woow-sect-form-pqrs th {
	text-align: center;
	background-color: #0087bc;
	color: #fff;
	border-radius: 6px;
}