/*
Theme Name: Achaval Cornejo
Theme URI: https://mati.agency
Version: 1.0
Author: @matiagency
Author URI: https://mati.agency
*/

:root,
[data-bs-theme=light]{
   
	/* Defaults */
	--mati-header-mobile-min-height: 110px;
	--mati-header-desktop-min-height: 120px;

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #828C93;
    --bs-body-bg: #fff;

    --bs-primary: #165ED3;
    --bs-primary-rgb: 22,94,211;

    --bs-secondary: #EA0029;
    --bs-secondary-rgb: 234,0,41;

    --bs-gray: #f5f5f5;
    --bs-light: #f2f6f8;
    --bs-dark: #151515;

	/* Links */
    --bs-link-color: #165ED3;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
/*    --bs-border-color: #fc3f50;*/
    --bs-border-radius: 0;

}

/* Colors */

.bg-light{
	background-color: #F5F5F5 !important;
}
.bg-gray{
	background: #B8BCC6;
}


.has-primary-background-color{
	background-color: var(--bs-primary);
}
.has-secondary-background-color{
	background-color: var(--bs-secondary);
}
.has-dark-background-color{
	background-color: var(--bs-dark);
}

.wp-block-button__link.has-primary-background-color,
.wp-block-button__link.has-primary-background-color:hover,
.wp-block-button__link.has-secondary-background-color,
.wp-block-button__link.has-secondary-background-color:hover{
	color: #fff;
}

/**/

html{
	scroll-behavior: smooth;
}

body {
	font-size: 1rem;
	line-height: 1.5em;
	font-family: 'Helvetica Neue', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body.header-fixed:not(.header-absolute){
	padding-top: var(--mati-header-mobile-min-height);
}

@media screen and (min-width:992px){
	body.header-fixed:not(.header-absolute){
		padding-top: var(--mati-header-desktop-min-height);
	}
}

*:focus {
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.5px;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1, h2, h3, h4, h5, h6{
		letter-spacing: -1px;
	}
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}

/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	background: #fff;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}
@media screen and (min-width: 992px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* Extras */

.wow {
	visibility: hidden;
}

.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Buttons */

.btn{
	min-width: 120px;
	padding: 9px 20px;
	font-size: 15px;
    border-width: 1px;
	border-radius: 50px;
	white-space: nowrap;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}
.btn:hover {
/*	color: #165ED3;*/
/*	padding-left: 25px;
	padding-right: 25px;*/
}

@media screen and (min-width: 992px){
	.btn-sm{
		line-height: 28px;
	}
	.btn-lg{
		line-height: 52px;
	}
}
@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

/* Btn Float */

.btn-float{
    position: fixed;
    left: 12px;
    bottom: 12px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 65px;
	    height: 65px;
	    line-height: 65px;
	    font-size: 40px;
	}
}

/* Btn Loading */

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}


.btn-arrow{
	position: relative;
	min-width: auto;
	background: #fff;
	color: #165ED3;
	border:1px solid #fff;
	transition: all 0.3s;
}
.btn-arrow span{
	display: inline-block;
	margin-right: 5px;
}
.btn-arrow:after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 28px;
	background: url('assets/img/icons/icon-btn-arrow.svg') no-repeat center;
	background-size: 80%;
	filter: invert(27%) sepia(99%) saturate(1442%) hue-rotate(203deg) brightness(89%) contrast(101%);
	transition: 0.3s all;
}
.btn-arrow:hover{
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}
.btn-arrow:hover:after{
	filter: brightness(0) invert(1);
}

@media screen and (min-width: 992px){
	.btn-arrow{
		padding: 0;
		width: 48px;
		height: 48px;
		border-radius: 50%;
	}
	.btn-arrow span{
		display: none;
	}
}

.btn-download {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 224px;
}
.btn-download .fa-download::before {
  content: url('assets/img/icons/icon-btn-download.svg');     
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
}


.btn-download.btn-outline-secondary .fa-download::before{
	filter: invert(12%) sepia(81%) saturate(7076%) hue-rotate(345deg) brightness(90%) contrast(105%);
}

.btn-download.btn-outline-secondary:hover .fa-download::before {
	filter: invert(1);
}

.bg-primary:has(.btn-secondary) .btn-secondary:hover{
	background: #fff;
	color: #165ED3;
}


.btn-line{	
	border: none;
	border-radius: 0;
	color: #165ED3;
	border-bottom: solid 1px #165ED3;
	text-align: left;
	padding: 0;
	padding-bottom: 8px;
	width: 220px;
	transition: all .5s ease;
	max-width: 80%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}

.btn-line .arrow{
	display: block;
    width: 19px;
    height: 13px;
    background: url('assets/img/icons/icon-arrow-right.svg') no-repeat center;
    background-size: contain;
    margin-left: 20px;
}

.btn-line:hover{
	color: #165ED3;
	border-color: #165ED3;
	width: 240px;
	max-width: 90%;
}

/* Form */

label{
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 400;
	color: #165ED3;
}

.required{
	color: #165ED3;
}

.invalid-feedback p,
.text-success p {
	background: rgb(255 255 255 / 80%);
    display: inline-block;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 500;
}

.form-control{
	min-height: 46px;
	background: transparent;
	color: #165ED3;
	font-size: 15px;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
	border-bottom: solid 1px #165ED3;
	transition: 0.3s all;
}
.form-control::placeholder{
 	color: #165ED3;
 	font-size: 16px;
}
.form-select:focus,
.form-control:focus{
	color: #165ED3;
    box-shadow: none !important;
    background-color: rgba(0,0,0,0.01);
    border-color: #165ED3;
}

textarea.form-control{
	border-radius: 0;
}
select.form-control{
    background: transparent url('assets/img/icons/icon-arrow-select.svg') no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 12px;
    padding: 0 40px 0 15px;
    background-color: transparent;
    font-size: 16px;
}
select.form-control:focus{
	background-color:#fff ;
}

@media screen and (min-width: 992px){
	.form-control{
		font-size: 18px;
	}
	.form-control-sm{
		min-height: 36px;
	}
	.form-control-lg{
		min-height: 56px;
	}
}

/* Form Control > Light */

select.form-control-light{
	padding: 0 40px 0 15px;
    background: transparent url('assets/img/icons/icon-arrow-select-light.svg') no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 12px;
}
select.form-control-light:focus{
	color: #fff;
	background: transparent url('assets/img/icons/icon-arrow-select-light.svg') no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 12px;
	background-color: #165ED3;
}

.form-control-light{
    color: #fff !important;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 100px;
}
.form-control-light::placeholder{
	color: #fff !important;
}
.form-control-light:focus{
	color: #fff;
	background: transparent;
	border-color: #fff;
}
.form-control-light:focus::placeholder{
	color: #fff;
}


.bg-primary label,
.bg-primary .form-control,
.bg-primary .form-control:focus,
.bg-primary .form-control::placeholder{
 	color: #fff;
}

.bg-primary .form-control{
	border-color: #fff;
}

.bg-primary .form-control:focus{
    border-color: #fff;
    background-color: rgba(0,0,0,0.05);
}
.bg-primary .form-control:focus::placeholder{
	color: #fff;
}

/* Form checkbox */

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	font-weight: 400;
}

/* Input File */

.input-file-group{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 82px;
	padding: 8px 16px;
	text-align: center;
	background: transparent;
	border-radius: 0;
	cursor: pointer;
	border: dashed 1px #165ED3;
	color: #165ED3;
	text-decoration: underline;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}
.input-file-group .files{
    font-size: 14px;
    max-height: 100px;
    overflow: auto;
    margin: 0 10px;
}
.input-file-group .files span{
	display: block;
	color: #165ED3;
}
.input-file-group:hover{
	background: #165ED3;
	color: #fff;
}
.input-file-group:hover span{
	color: #fff;
}

/* Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--mati-header-mobile-min-height);
	background: #fff;
	transition: 0.3s all;
	z-index: 999;
}

.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo{
	display: block;
	max-width: 235.5px;
	padding: 15px 0;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: #165ED3;
	transition: 0.3s;
	border-radius: 6px;
}

.header-absolute:not(.header-fixed) .header:not(.active) .nav-menu .menu-line{
	background-color: #fff;
}

.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 110px;
	left: 0;
	width: 100%;
	height: calc(100dvh - 110px);
	margin: 0;
	text-align: center;
	overflow: auto;
	background: #fff;
}
.header .navigation.active {
	display: block;
}


.header .navigation .menu{
	position: relative;
	margin: 20px 0 0;
}
.header .navigation .menu > li {
	position: relative;
}

.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	color: #165ED3;
	text-align: left;
}

.header .navigation ul li.menu-item-has-children > .toggle-submenu-mobile {
	display: none;
	cursor: pointer;
}

@media screen and (min-width:992px){
	.header .navigation .menu{
		margin: 0;
	}
}

@media screen and (max-width: 992px){
	.header .navigation .menu > li:last-of-type {
		margin-top: 30px;
	}
}
@media screen and (max-width: 992px){
	.header .navigation .menu > li.menu-item-has-children > .toggle-submenu-mobile {
		content: '';
	    width: 18px;
	    height: 10px;
	    background: url('assets/img/icons/icon-arrow-select.svg') no-repeat center;
	    background-size: contain;
	    position: absolute;
	    right: 15px;
	    top: 20px;
	    transition: all 0.3s;
	    display: block;
	}

	.header .navigation .menu > li.menu-item-has-children.active-submenu > a {
		background: #165ED3;
		color: #fff;
	}

	.header .navigation .menu li a:hover ~ .toggle-submenu-mobile{
		background: url('assets/img/icons/icon-arrow-select-light.svg') no-repeat center;
	}
	.header .navigation .menu li.menu-item-has-children.active-submenu > .toggle-submenu-mobile{
		transform: rotate(180deg);
		background: url('assets/img/icons/icon-arrow-select-light.svg') no-repeat center;
	}
}


.header .socialmedia {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}
.header .socialmedia li{
	margin: 0 5px;
}
.header .socialmedia li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	color: #165ED3;
}
.header .socialmedia li a:hover{
	background: #165ED3;
    color: #fff;
    border: 1px solid #fff;
}

.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.active-submenu .sub-menu{
	box-shadow: -1px 0 0 1px rgba(0,0,0,0.1)
}
.header .navigation .menu li.active-submenu .sub-menu{
	display: block;
}

.header .navigation .menu li.menu-search a{
	display: inline-flex;
    align-items: center;
	min-width: 150px;
	padding: 9px 19px;
	margin: 0;
	color: #fff;
	text-align: center;
	border-radius: 50px;
	background: #EA0029;	
}
.header .navigation .menu li.menu-search a:hover{
	color: #FFF;
	background: #165ED3;
}

.header .navigation .menu li.menu-search a:before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('assets/img/icons/icon-search.svg') no-repeat center;
	background-size: contain;
	margin-right: 10px;
}

@media screen and (max-width: 991px) {
	.header .navigation .menu li.menu-search a{
		width: 90%;
	}
}

/* Top Menu */

.header .top-menu {
    position: relative;
	width: 100%;
    height: 48px;
    background: #165ED3;
    color: #fff;
}

.header .top-menu .menu{
	margin: 0;
}
.header .top-menu .menu li{
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 15px;
}
.header .top-menu .menu li:not(:last-child):before{
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: #FFF;
}
.header .top-menu .menu li a:hover{
	text-decoration: underline;
}

.header .top-menu .container {
	display: flex;
    justify-content: flex-end;
    align-items: center;
	height: 47px;
}

.header-absolute:not(.header-fixed) .header{
	position: absolute;
}
.header-absolute:not(.header-fixed) .header:not(.active){
	background: transparent;	
}

.header-absolute:not(.header-fixed) .header:not(.active) .logo{
	background: url(assets/img/logo-color.png) no-repeat center;
	background-size: contain;
}
.header-absolute:not(.header-fixed) .header:not(.active) .logo img{
	opacity: 0;
}


.header-fixed .header{
	position: fixed;
	background: var(--bs-white);
	min-height: 60px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}
.header-fixed .header .top-menu{
	display: none;
}
.header-fixed .header .navigation{
	top: 60px;
}

@media screen and (min-width: 1200px) {

	.header {
		min-height: var(--mati-header-desktop-min-height);
	}
	.header .logo {
		max-width: 235.5px;
		padding: 21px 0;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        top: auto;
        left: auto;
        width: 80%;
        height: auto;
        background: transparent;
        overflow: inherit;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}
	.header .navigation .menu > li {
		padding: 0 10px;
	}
	.header .navigation .menu > li a{
		padding: 20px 0px;
		font-size: 16px;
		color: #165ED3;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}
	.header-absolute:not(.header-fixed) .header .navigation .menu > li > a{
		color: #fff;
	}

	.header .navigation .menu li:not(.menu-search) a:before{
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        width: 0;
        height: 1px;
        background: #fff;
        transition: 0.3s all;
    }

    .header .navigation .menu li:not(.menu-search).active > a,
	.header .navigation .menu li:not(.menu-search).current-menu-item > a,
	.header .navigation .menu li:not(.menu-search) > a:hover{
	    color: #EA0029;
	}

    .header .navigation .menu li:not(.menu-search).active > a:before,
	.header .navigation .menu li:not(.menu-search).current-menu-item > a:before,
	.header .navigation .menu li:not(.menu-search) > a:hover:before{
        left: 0;
        width: 100%;
		background-color: #EA0029;
	}



	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 50px;
		left: 0;
		width: 180px;
		background: #fff;
	}
	.header .navigation .menu li.menu-item-has-children:hover > .sub-menu{
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 8px 10px;
		font-size: 15px;
		color: #165ED3;
		border-bottom: 1px solid #165ED3;
		margin-bottom: 0;
	}	

	.header .navigation .menu li .sub-menu li a:before{
		background: #EA0029;
		bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		color: #EA0029;
		border-bottom-color: transparent; 
	}

	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	.header .navigation .menu li.menu-search {
		margin-left: 180px;
	}

	/*	Header fixed	*/
	.header-fixed .header{
		min-height: 70px;
	}
	.header-fixed .header .navigation{
		top: auto;
	}
	.header-fixed .header .navigation .menu li .sub-menu{
		top: 70px;
	}
	.header-fixed .header .navigation .menu > li:not(.menu-search) > a{
		padding: 24px 0;
	}
}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: #165ED3;
		color: #fff;
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}

	.header .top-menu .menu {
		display: none;
	}
}


/* Icons */

.icon-location{
  background-image: url('assets/img/icons/icon-vias-address.svg');
}
.icon-email{
  background-image: url('assets/img/icons/icon-vias-email.svg');
}
.icon-phone{
  background-image: url('assets/img/icons/icon-vias-phone.svg');
}
.icon-whatsapp{
	background-image: url('assets/img/icons/icon-vias-whatsapp.svg');
}
.icon-instagram{
	background-image: url('assets/img/icons/icon-vias-instagram.svg');
}

/* Modules */

.vias{
	margin: 0;
}
.vias li{
    margin-bottom: 3px;
}
.vias li i{
	display: inline-block;
	vertical-align: middle;
	font-size: 24px;
	margin-right: 2px;
}

@media screen and (max-width: 479px){
	.vias li i {
	    margin-top: 2px;
	}
}

/* Module > Contact */

.module-contact .vias li{
	display: block;
	margin-bottom: 10px;
}
.module-contact .vias li i{
	content: '';
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	min-width: 30px;
	font-size: 24px;
	margin-right: 2px;
	color: var(--bs-secondary);
}


@media screen and (min-width: 992px) {
	.module-contact .title h2 {
	    font-size: 60px;
	    line-height: 100%;
	}
}


/* Module > Vias */

/* Modules > Tab Menu */

.tab_menu {
	min-height: 55px;	
	/*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
}
.tab_menu ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #CACACA;
}
.tab_menu ul li a {
    display: block;
    padding: 15px 12px;
    position: relative;
}
.tab_menu ul li a.active,
.tab_menu ul li a:hover{
	color: #165ED3;
}

.tab_menu ul li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #165ED3;
    transition: 0.3s all;
}
.tab_menu ul li.current-menu-item a:before,
.tab_menu ul li a.active:before,
.tab_menu ul li a:hover:before{
    left: 10%;
    width: 80%;
}
.tab_menu.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}

@media screen and (max-width: 992px){
	.tab_menu {
		display: none;
	}
}

/* Modules > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 50px;
	letter-spacing: -1px;
	line-height: 100%;
	font-weight: 300;
}
.title h2{
	font-size: 40px;
	font-weight: 300;
	line-height: 100%;
}
.title h3{
	font-size: 30px;
	font-weight: 300;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title b{
	font-weight: bold;
}
.title span{
	color: #165ED3;
}
.title p{
	margin: 0;
	margin-top: 16px;
}
.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	margin-bottom: 20px;
}
.title .btn{
	margin-top: 50px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}
.title.max-width{
	max-width: 768px;
}
.title.max-width-lg{
	max-width: 992px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 80px;
	}
	.title h2{
		font-size: 60px;
	}
	.title h3{
		font-size: 36px;
	}
	.title h4{
		font-size: 24px;
	}
	.title p{
		margin-top: 20px;
	}
}

/*@media screen and (max-width: 991px){
	.title br{
		display: none;
	}
}*/

/* Data Title */

.data-title {
	margin-bottom: 25px;
}

@media screen and (min-width: 992px){	
	.data-title{
		margin-bottom: 40px;
	}
	.data-title .title h3{
		font-size: 60px;
	}
}

/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	padding: 50px 0;
	min-height: 500px;
	background: var(--bs-primary) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 7.24%, rgba(0, 0, 0, 0) 21.82%);
	background-blend-mode: multiply, normal, normal;
    z-index: 1;
}

.banner video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.banner .title{
	position: relative;
	margin: 0;
	color: #fff;
	max-width: 500px;
	z-index: 2;
}
.banner .title h1{
	font-size: 42px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	display: flex;
    align-items: center;
}

.banner .arrow-down{    
    display: block;
    position: absolute;
    bottom: 5%;
    /* width: 29px; */
    width: 100%;
    max-width: 1440px;
    height: 40px;
    background: url(assets/img/icons/icon-arrow-down.svg) no-repeat center left;
    background-size: contain;
    animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    z-index: 3;
}

.banner .searcher {
	position: relative;
	z-index: 4;
	max-width: 811px;
}

.banner .searcher input.form-control{
	background: #fff;
	border-color: #fff;
	border-radius: 50px;
}

.banner .searcher input.form-control::placeholder{
	color: #828C93;
}

.banner .searcher .input-group-text {
	min-height: 46px;
	border-radius: 20px 0 0 20px;
	background: #fff;
	border-color: #fff;
}

@media screen and (min-width: 992px){
	.banner{
		min-height: 610px;
		height: 70vh;
	}

	.banner .title h1{
		font-size: 80px;
	}
	.banner .title p{
		font-size: 20px;
	}
}


/* Modules > Banner Title */

.banner-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	height: 335px;
	padding: 50px 0;
    color: #165ED3;
    border-top: solid 1px #165ED3;
    border-bottom: solid 1px #165ED3;
}
.banner-title .title {
	margin: 0;
}
.banner-title .title h1{
	text-transform: capitalize;
}
.banner-title .title p{
	max-width: 550px;
}


/* Framework */

.section{
	position: relative;
	padding: 45px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

/* Module > Presentation */
.presentation{
	position: relative;
	display: flex;
	align-items: center;
	padding: 50px 0;
	min-height: 680px;
	background: var(--bs-primary) no-repeat center;
	background-size: cover;
	position: relative;
}

.presentation:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   	background:  linear-gradient(180deg, rgba(0, 0, 0, 0.4) 7.24%, rgba(0, 0, 0, 0) 21.82%);
	background:  linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 7.24%, rgba(0, 0, 0, 0) 21.82%);
	background-blend-mode: multiply, normal, normal;
    z-index: 1;
}


.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.presentation .title {
	color: #fff;
	max-width: 550px;
	position: relative;
	z-index: 5;
}
.presentation .title br{
	display: block;
}
.presentation .title h1{
	font-size: 42px;
	font-weight: 400;
	/*line-height: 1.1em;*/
	/*letter-spacing: -0.02em;*/

	font-family: "Helvetica Neue";
	font-style: normal;
	line-height: 90%; /* 72px */
	letter-spacing: -2px;
}

.presentation .arrow-down{
	display: block;
    position: absolute;
    bottom: 5%;
    /* width: 29px; */
    width: 100%;
    max-width: 1440px;
    height: 40px;
    background: url(assets/img/icons/icon-arrow-down.svg) no-repeat center left;
    background-size: contain;
    animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    z-index: 3;
}

.presentation .filter{
	position: relative;
	z-index: 5;
}

.presentation .filter form .items .item{
	position: relative;
	background: #fff;
	border-radius: 50px;
	overflow: hidden;
}

.presentation .filter form .items .item .form-control{
	border-bottom: none;
	line-height: 46px;
    padding: 0 15px;
    height: 46px;
}

.presentation .filter form .items .item .form-control::placeholder,
.presentation .filter form .items .item select.form-control {
	color: #828C93;
	filter: grayscale(1);
	font-size: 14px;
}

.presentation .filter form .items .item select.form-control {
	padding-right: 30px;
}

.presentation .filter form .items .item.buscar:after {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    line-height: 40px;
    width: 40px;
    height: 100%;
    background: url(assets/img/icons/icon-search-grey.svg) no-repeat 10px center;
    background-size: 20px;
}

.presentation .filter form .items .item.buscar input {
	padding-left: 40px;
	border-radius: 50px;
}

.presentation .filter .btn{
	height: 44px;
}

@media screen and (min-width: 992px) {
	.presentation {
		height: 100vh;
	}
	.presentation .title {
		padding: 0;
	}
    .presentation .title h1{
        font-size: 80px;
    }

	.presentation .arrow-down{
		bottom: 50px;
	}


	.presentation .filter form .items .item{
		border-radius: 0;
	}
	.presentation .filter form .items .item:not(:first-child):before{
		position: absolute;
		content: '';
		left: 1px;
		top: 10px;
		bottom: 10px;
		width: 1px;
		background: #D5D5D5;
		z-index: 2;
	}
	.presentation .filter form .items .item:first-child{
		border-radius: 100px 0 0 100px;
	}
	.presentation .filter form .items .item:nth-child(5){
		border-radius: 0 100px 100px 0;
	}
}

/* Module > Video Player */

.video-player:not(.btn-download){
	position: relative;
	width: 100%;
	padding: 30% 0;
	background: #f1f1f1 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: transparent;
	border: solid 1px #fff;
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 48px);
		left: calc(50% - 48px);
		width: 96px;
		height: 96px;
		font-size: 50px;
		line-height: 92px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}

/* Module > Pagination */

.pagination {
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}

.pagination p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	color: #165ED3;
}

@media screen and (min-width: 992px) {
	.pagination p {
		margin-right: 25px !important;
	}
}

.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 16px;
	color: #165ED3;
	font-weight: 700;

	display: none;
}
.pagination .page-numbers:hover{
	text-decoration: underline;
}
.pagination .page-numbers.current{
	font-weight: bold;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
	display: inline-block;
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 16px;
	}
}

/* Module > Newsletter */

.module-newsletter{
	text-align: center;
}
.module-newsletter .title h3{
	font-weight: 500;
}
.module-newsletter form{
	justify-content: center;
}
.module-newsletter .form-control{
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 25px;
}
.module-newsletter .form-control::placeholder{
	color: #fff;
}

@media screen and (min-width: 992px){
	.module-newsletter .title{
		margin-bottom: 30px;
	}
	.module-newsletter .form-control{
		min-width: 320px;
	}
}
@media screen and (max-width: 991px){
	.module-newsletter .btn{
		width: 100%;	
	}
}


.module-newsletter .title p{
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}


/* Module > Stats */
.module-stats .items article .number {
	margin: 0;
	font-size: 60px;
	font-weight: 300;
}
.module-stats .items article p{
	margin: 0;
	font-size: 20px;
	line-height: 26x;
}

.module-stats .items .item:not(:last-child) {
	border-bottom: solid 1px #fff;	
}

@media screen and (min-width: 992px) {
	.module-stats .items .item:not(:last-child) {
		border-bottom: none;
		border-right: solid 1px #fff;
	}
}

/**/

.page.properties .error-noresults{
	padding: 25vh 0;
}
.page.properties .error-noresults i{
	font-size: 40px;
	margin-bottom: 15px;
}


/* Map */
#map {
	width: 100%;
	height: 400px;
	background-color: #eee;
}
@media screen and (min-width: 992px) {
	#map{
		height: 670px;
	}
}

/* Pages */

.feed .slider .slide{
	padding: 0 10px;
}
.feed .slider .arrows button{
	top: 120px;
}

.page.home .about .video-player{
	 padding: 40% 0;
}

.page.home .feed-properties.comercial{
	background-color: #9da2b1;
}
.page.home .feed-properties.comercial .slider .slick-list:before{
	background: #B8BCC6;
}



/* Page > Branchs */

.page.branchs .feed .items article .thumbnail{
	aspect-ratio: 1.52 / 1;
}
.page.branchs .feed .items article .thumbnail .img{
	aspect-ratio: 1.52 / 1;
}

.page.branchs .feed .items article .data h2{
	font-size: 32px;
	font-weight: 300;
	margin-top: 15px;
}

.page.branchs .feed .items article .data .vias li{
	margin-bottom: 5px;
}
.page.branchs .feed .items article .data .vias li i{
	min-width: 25px;
	font-size: 18px;
	text-align: center;
}


/* Page > About */

.page.about .about .title {
	max-width: 950px;
}
.page.about .about .title p{
	max-width: 510px;
	font-size: 20px;
}

@media screen and (max-width: 991px){
	.page.about .about .title h3 {
	    font-size: 24px;
	    font-weight: 500;
	    line-height: 110%;
	}

	.page.about .about .title p {
	    font-size: 16px;
	    max-width: 510px;
	}

	.page.about .brochure h4 {
	    font-size: 24px;
	    font-weight: 500;
	    line-height: 110%;
	}

	.page.about .about .title h2 {
	    font-size: 36px;
	    font-weight: 300;
	    line-height: 100%;
	}
}

.page.about .brochure h4 {
	font-size: 32px;
}

.page.about .brochure p {
	font-size: 16px;
}

.page.about .team .items article .thumbnail img{
	width: 100%;
	background: #DCDCDC;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.page.about .team .items article .data {
	padding: 20px 0;
}
.page.about .team .items article .data h2{
	font-size: 24px;
}


.page.about .history .tabs {
	min-height: 55px;	
}
.page.about .history .tabs ul {
    position: relative;
    z-index: 9;
    margin: 0 -15px;
    padding: 0 15px;
    display: block;
}

.page.about .history .tabs ul li {
    position: relative; 
}

@media screen and (min-width: 992px){
	.page.about .history .tabs ul li {
	    position: relative;
	    display: inline-block;
	    vertical-align: middle;
	    margin: 0 -1px;    
	}
}

.page.about .history .tabs ul li a{
	display: block;
	border-bottom: solid 1px #D5D5D5;
    padding: 15px 20px; 
    font-size: 32px;
    margin: 10px 0;
    font-weight: 300;
    line-height: 1em;
}

.page.about .history .tabs ul li a.active{
	color: #EA0029;
	font-weight: 400;
}

.page.about .history .tabs .slider .slick-list{
	padding:0 15% 0 0 !important;	
	overflow: visible;
}

.page.about .history .tabs .slider .slick-list:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 110%;
	top: -20px;
	left: -100%;
	background: #fff ;
	z-index: 5;
}
.page.about .history .tabs .slider .arrows .slick-prev{
	display: none !important;
}

.page.about .history .tabs .slider .slide {
	padding-right: 20px;
}

.page.about .history .tabs .slider .slide .thumbnail img{
	aspect-ratio: 1.15 / 1;
	object-fit: cover;
	width: 100%;
	margin-bottom: 20px;
}

.page.about .history .tabs .slider .slide .year{
	font-size: 36px;
}
@media screen and (min-width: 992px){
	.page.about .history .tabs ul li{
		display: block;
	}
	.page.about .history .tabs ul li a{
		padding: 20px 0;
		font-size: 40px;
	}
}

.page.about .blog .feed-blog article .thumbnail{
	background-color: var(--bs-primary);
}

/* Page > Contact */

.page.contact .vias li i{
	min-width: 20px;
	font-size: 16px;
	text-align: center;
}

/* Page > Valuations */

.page.valuations .vias li{
	display: block;
	margin-bottom: 3px;
}

/* Page > Blog */

.page.blog{

}

/* Page > Properties */

.page.properties .btn[data-open="filter"] {
    max-width: 450px;
    margin: 0 auto;
    display: block;
}

.page.properties .filter .form-control{
	border: solid 1px #165ED3;
	border-radius: 50px;
}
.page.properties .filter.active {
    margin-top: 20px;
}

@media screen and (min-width:992px){
	.page.properties .filter .form-control{
		min-width: 160px;
	}
}

@media screen and (max-width: 920px) {
    .page.properties .filter:not(.active) {
        display: none;
    }
}

.page.properties .banner {
	min-height: 690px;
}

.page.properties .banner .title{
	max-width: fit-content;
}
.page.properties .banner .title img{
	display: inline-block;
	vertical-align: 0;
	margin-bottom: 20px;
	margin-right: 20px;
}

.page.properties .searcher .search::placeholder,
.page.properties .searcher .search:focus::placeholder {
	color: #828C93 !important;
}

.page.properties .searcher .search {
	background: #fff;
	color: #828C93 !important;
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
	text-align: left;
	background-image: url('assets/img/icons/icon-search-grey.svg');
	background-position: 20px center;
    background-repeat: no-repeat;
    padding-left: 60px;
}

.page.properties .breadcrumbs {
	display: inline-block;
}

.page.properties .breadcrumbs span:last-child {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	text-align: left;
	color: #165ED3;
}

.page.properties .select-order {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content: flex-end;
}

.page.properties .select-order-icon {
    background-image: url('assets/img/icons/icon-order.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 46px;
    display: block;
}

.page.properties .select-order select {
	color: #828C93;
	border-bottom: none;
	/*background: none;*/
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 10px 30px;
    text-align: right;
    width: auto;
}


/* Pages > Internal */

.page.internal .content{
	
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
	background: #165ED3;
}

.page.page-404 .content .title h1,
.page.page-404 .content .title p {
	color: #fff;
}

.page.page-404 .content .btn-primary:not(:hover){
	border-color: #fff;
}

/* Pages > Page Maintenance */

.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
}




/* Feed General */

.feed article {
	position: relative;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.16 / 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #eee url('assets/img/placeholder.svg') no-repeat center;
	background-size: 140px;
}

.feed article .thumbnail img{
	aspect-ratio: 1.16 / 1;
	object-fit: cover;
	transition: 0.3s all;
}

.feed article .thumbnail .img{
	width: 100%;
	height: 100%;
	background: no-repeat center;
	background-size: cover;
	transition: 0.3s all;
}

.feed article:hover .thumbnail .img{
    transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.feed article ul li i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 3px;
}

/* Feed > blog */

.feed-blog article .thumbnail{
	display: block;
	aspect-ratio: 1.16 / 1;	
}
.feed-blog article .thumbnail img{
	aspect-ratio: 1.16 / 1;
}
.feed-blog article .thumbnail .img{
	width: 100%;
	height: 100%;
	background: no-repeat center;
	background-size: cover;
	transition: 0.3s all;
}

.feed article:hover .thumbnail .img{
    transform: scale(1.1);
	-webkit-transform: scale(1.1);
}


.feed-blog article .data {
	padding: 20px 0;
}

.feed-blog article .meta .category {
	display: inline-block;
	color: #828C93;
	border: solid 1px #828C93;
	border-radius: 100px;
	padding: 6px 18px; 
	font-size: 12px;
}

.feed-blog article .data h2{
	font-size: 24px;
}

/* Feed > blog > featured */

.featured .feed-blog article{
	border-bottom: solid 1px #165ED3;
	padding-bottom: 30px;
}
.featured .feed-blog article .thumbnail{
	margin-bottom: 30px;
}

.featured .feed-blog article .category{
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 30px;
	font-size: 12px;
	color: #828C93;
	border: solid 1px #828C93;
	border-radius: 100px;
}
.featured .feed-blog article .data h2{
	margin-bottom: 10px;
	font-size: clamp(24px, 5vw, 52px);
	font-weight: 400;
	line-height: 1.2em;
}
.featured .feed-blog article .data p{
	max-width: 100%;
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 24px;
}
@media screen and (min-width:992px){
	.featured .feed-blog article{
		padding-bottom: 70px;
	}
	.featured .feed-blog article .thumbnail{
		margin: 0;
	}
	.featured .feed-blog article .data p{
		font-size: 24px;
		line-height: 32px;
	}
}

/* Feed > Properties */

.feed-properties article .thumbnail{
	display: block;
	aspect-ratio: 1.4 / 1;
}
.feed-properties article .thumbnail img{
	width: 100%;
	height: 100%;
}

.feed-properties article .meta {
	margin-bottom: 10px;
}
.feed-properties article .meta .operation {
	display: inline-block;
	padding: 2px 20px; 
	color: #828C93;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 100px;
	border: solid 1px #828C93;
}
.feed-properties article .meta .operation.venta{
	color: #EA0029;
	border-color: #EA0029;
}
.feed-properties article .meta .operation.alquiler{
	color: #165ED3;
	border-color: #165ED3;
}

.feed-properties article .data{
	padding: 20px 0;
}

.feed-properties article .data .title {
	margin-bottom: 20px;
}

.feed-properties article .data .title h2{
    margin: 0 0 10px;
	font-size: 20px;
	line-height: 24px;
    font-weight: 700;
}
.feed-properties article .data .title p{
	margin: 0;
}

.feed-properties article .data .title .price p {
	margin: 12px 0;
	font-size: 32px;
	line-height: 32px;
	font-weight: 700;
}
.feed-properties article .data .title .price p span{
	font-size: 16px;
	font-weight: 500;
	color: inherit;
}

.feed-properties article .data .title .price.multiple p{
	margin: 8px 0;
	font-size: 24px;
	line-height: 24px;
}

.feed-properties article .data .title .meta{
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}
.feed-properties article ul li{
	font-size: 12px;
}
.feed-properties article ul li i{
	filter: brightness(0) opacity(0.5);
}

/* Feed > Devleopments */

.feed-developments .slider .arrows button{
	top: 200px;
}
.feed-developments .slider article .thumbnail{
	aspect-ratio: 0.86 / 1;
	background: #eee;
}
.feed-developments .slider article .thumbnail img{
	aspect-ratio: 0.86 / 1;
}

.feed-developments article a{
	display: block;
	cursor: pointer;
}
.feed-developments article .thumbnail{
	position: relative;
	display: block;
	aspect-ratio: 0.86 / 1;
	width: 100%;
	height: 100%;
	margin-bottom: 30px;
}
.feed-developments article .thumbnail:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 7.24%, rgba(0, 0, 0, 0) 21.82%);
	z-index: 9;
}
.feed-developments article .thumbnail img{
	aspect-ratio: 0.86 / 1;
	object-fit: cover;
}

.feed-developments article .title{
	margin: 0;
}
.feed-developments article h2{
	font-size: 32px;
    line-height: 110%;
}
.feed-developments article .meta {
	display: inline-block;
	color: #fff;
	border: solid 1px #fff;
	border-radius: 100px;
	padding: 6px 18px; 
	font-size: 12px;
	text-transform: uppercase;
	position: absolute;
	left: 28px;
	top: 33px;
	z-index: 9;
}
.feed-developments article ul li{
	font-size: 12px;
}
.feed-developments article ul li i{
	font-size: 16px;
	vertical-align: -1px;
}


/* Feed > Branchs */

.feed-branchs .slider .arrows button{
	top: 50%;
}

.feed-branchs .slider article .thumbnail {
	aspect-ratio: 0.67 / 1;
	background: var(--bs-primary);
}
.feed-branchs .slider article .thumbnail img{
	aspect-ratio: 0.67 / 1;
}

.feed-branchs .slider article .data{
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 25px 15px;
}

.feed-branchs article ul{
	margin: 0;
}
.feed-branchs article ul li{
	font-size: 12px;
	line-height: 18px;
}
.feed-branchs article ul li i{
	filter: brightness(0) invert(1);
}


/* Single > blog */

.single.blog .content .goback{
	color: #828C93;
}
.single.blog .content .goback:hover{
	color: var(--bs-primary);
}

.single.blog .content .title {
	color: #165ED3;
}
.single.blog .content .title h1{
	margin-top: 30px;
	font-size: clamp(22px, 6vw, 60px);
	font-weight: 300;
	line-height: 1.1em;
}
.single.blog .content .title p{
	font-size: 18px;
	line-height: 24px;
	max-width: 650px;
}

.single.blog .content .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.single.blog .content .meta {
	padding: 15px 0;
    margin: 32px 0;
	border-top: 1px solid #165ED3;
    border-bottom: 1px solid #165ED3;
}

.single.blog .content article{
	font-size: 16px;
	line-height: 1.6em;
}
.single.blog .content article h1,
.single.blog .content article h2,
.single.blog .content article h3,
.single.blog .content article h4,
.single.blog .content article h5,
.single.blog .content article h6{
	margin-bottom: 1rem;
}
.single.blog .content article img{
	max-width: 100%;
}

@media screen and (min-width:992px){
	.single.blog .content article{
		font-size: 18px;
		line-height: 1.6em;
	}
	.single.blog .content .title h1{
		line-height: 1em;
	}
	.single.blog .content .title p{
		font-size: 24px;
		line-height: 32px;
	}
}

.single.blog .tags h4,
.single.blog .share h4{
	display: block;
	margin: 0 0 15px 0;
	font-size: 15px;
	color: #165ED3;
	letter-spacing: 0;
}

.single.blog .tags ul li{
	display: inline-flex;
	margin-right: 10px;
	margin-bottom: 10px;
}
.single.blog .tags ul li a{
	padding: 5px 16px;
	color: #165ED3;
	font-size: 15px;
	border: solid 1px #165ED3;
	border-radius: 100px;
}
.single.blog .tags ul li a:hover {
	background: #165ED3;
	color: #fff;
}


.single.blog .share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.single.blog .share ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #165ED3;
	color: #fff;
	margin-right: 10px;
}
.single.blog .share ul li a:hover{
	background: #EA0029;
}

.

/* Single > Properties */

.single.properties .gallery{
	height: 300px;
	border-top: 1px solid #165ED3;
    background: #eee;
}
.single.properties .gallery .slider .slide {
    padding: 0 5px 0 0;
}
.single.properties .gallery .slider .slide img{
    width: auto;
    height: 300px;
    margin: 0 auto;
}

.single.properties .gallery .slider:not(.slick-initialized) .slides{
    white-space: nowrap;
    overflow: auto;
}
.single.properties .gallery .slider:not(.slick-initialized) .slides .slide{
    display: inline-block;
}

.single.properties .gallery .slider .zoom{
	position: absolute;
	left: 30px;
	bottom: 30px;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 992px){
	.single.properties .gallery{
		height: 500px;
	}
	.single.properties .gallery .slider .slide img{
	    height: 500px;
	}
}

.single.properties .inner-menu {
	width: 100%;
}
.single.properties .inner-menu .menu{
    margin: 0 -15px;
    padding: 0 15px;
    display: block;
    white-space: nowrap;
    overflow: auto;
}

.single.properties .inner-menu .menu li{
	position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-right: 25px;
}
.single.properties .inner-menu .menu li a:hover{
	text-decoration: underline;
}

.single.properties .inner-menu.fixed{
	position: fixed;
	top: 60px;
	left: 0;
    width: 100%;
    padding: 0;
	z-index: 5;
	-webkit-animation: fadeInDown 0.5s ease-out;
    -moz-animation: fadeInDown 0.5s ease-out;
}
@media screen and (min-width: 992px){
	.single.properties .inner-menu .menu{
		display: flex;
   		align-items: center;
	}
	.single.properties .inner-menu .menu li.contact{
		margin-left: auto;
		margin-right: 0;
	}
}
@media screen and (min-width: 1200px){
	.single.properties .inner-menu.fixed{
		top: 70px;
	}
}

@media screen and (max-width: 991px){
	.single.properties .inner-menu{
		padding: 0;
	}

	.single.properties .inner-menu .col-12{
		padding: 0;
	}

	.single.properties .inner-menu p.contact{
		margin: 0 !important;
	}
	.single.properties .inner-menu p.contact a{
    	width: 100%;
	    border-radius: 0;
	}
}

.single.properties .content {
	color: #165ED3;
}
@media screen and (min-width: 992px){
	.single.properties .content h4{
		font-size: 36px;
	}
}	

.single.properties .content .intro .title{
	border-bottom: solid 1px #165ED3;
	padding-bottom: 30px;
}
.single.properties .content .intro .title h1{
	font-size: 36px;
	font-weight: 500;
	max-width: 16ch;
	line-height: 100%;
}

.single.properties .content .intro .operation{
	margin: 0;
	display: inline-block;
    padding: 5px 20px;
	text-transform: uppercase;
	color: #828C93;
	border: solid 1px #828C93;
	border-radius: 100px;
	margin-bottom: 20px;
}

.single.properties .content .intro .items .item h5{
	font-size: 16px;
	font-weight: 700;
}

.single.properties .content .intro .share{
    margin-top: 30px;
}

.single.properties .content .intro .share h4{
    margin: 0;
    display: inline-block;
    line-height: 20px;
    font-size: 16px;
    font-weight: 400;
    padding-right: 25px;
    background-image: url('assets/img/icons/icon-share.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center right;
}

@media screen and (min-width: 992px){
	.single.properties .content .intro .share h4{
	    display: block;
	}
}

.single.properties .content .intro .share ul {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
}

.single.properties .content .intro .share ul li {
    display: inline-flex;
    margin: 0;
    padding: 5px 0;
}

.single.properties .content .intro .share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    border-radius: 50%;
    background: #fff;
    color: #165ED3;
}

.single.properties .content .intro .share ul li a:hover {
    color: #fff;
    background: #165ED3;
}

.single.properties .content .intro .price{
	margin: 30px 0 0;
}
.single.properties .content .intro .price p{
	font-size: 30px;
	line-height: 30px;
	font-weight: 500;
    margin: 0 0 5px;
}
.single.properties .content .intro .price p span {
	display: block;
	margin-right: 10px;
	font-size: 14px;
	line-height: 28px;
	font-weight: 300;
}
.single.properties .content .intro .price ~ .expenses{
	margin-top: 30px;
}
.single.properties .content .intro .expenses{
	font-size: 30px;
	line-height: 34px;
	font-weight: 400;
    margin: 0;   
}
.single.properties .content .intro .expenses span{
	display: block;
	font-size: 20px;
	line-height: 28px;
}

@media screen and (min-width: 992px){
	.single.properties .content .intro .title h1{
		font-size: 60px;
		line-height: 100%;
	}
	.single.properties .content .intro .price{
		margin: 0;
	}
	.single.properties .content .intro .price p{
		display: flex;
		align-items: center;
		justify-content: flex-end;
		font-size: 40px;
		line-height: 50px;
	}
	.single.properties .content .intro .price p span {
		font-size:18px;
		line-height: 36px;
	}
	.single.properties .content .intro .price ~ .expenses{
		margin-top: 50px;
	}
}


.single.properties .content .description .btn-less,
.single.properties .content .description .long {
    display: none;
}


.single.properties .btn-video span{
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Copy paste */

.single.properties .content .attributes .items {
	border-top: solid 1px #165ED3;
	border-bottom: solid 1px #165ED3;
	padding: 20px 0;
}

.single.properties .content .attributes .items article .icon {
	min-height: 60px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 50px;

	filter: invert(33%) sepia(98%) saturate(6323%) hue-rotate(215deg) brightness(93%) contrast(83%);
    -webkit-filter: invert(33%) sepia(98%) saturate(6323%) hue-rotate(215deg) brightness(93%) contrast(83%);
}

@media screen and (max-width: 991px){
	.single.properties .content .attributes .items article .icon {
		width: 60px;
	}
}

.single.properties .content .attributes .items article .icon.icon-floors_amount {
	background-image: url('assets/img/icons-properties/escalera.svg');
}

.single.properties .content .attributes .items article .icon.icon-bathroom_amount {
	background-image: url('assets/img/icons-properties/bathroom.svg');
}

.single.properties .content .attributes .items article .icon.icon-toilet_amount {
	background-image: url('assets/img/icons-properties/toilette.svg');
}

.single.properties .content .attributes .items article .icon.icon-room_amount {
	background-image: url('assets/img/icons-properties/room.svg');
}

.single.properties .content .attributes .items article .icon.icon-suite_amount {
	background-image: url('assets/img/icons-properties/estrella.svg');
}

.single.properties .content .attributes .items article .icon.icon-parking_lot_amount {
	background-image: url('assets/img/icons-properties/estacionamiento.svg');
}

.single.properties .content .attributes .items article .icon.icon-total_surface {
	background-image: url('assets/img/icons-properties/sup-total.svg');
}

.single.properties .content .attributes .items article .icon.icon-surface {
	background-image: url('assets/img/icons-properties/superficie.svg');
}

.single.properties .content .attributes .items article .icon.icon-roofed_surface {
	background-image: url('assets/img/icons-properties/superficie.svg');
}

.single.properties .content .attributes .items article .icon.icon-unroofed_surface {
	background-image: url('assets/img/icons-properties/sup-descubierta.svg');
}

.single.properties .content .attributes .items article .icon.icon-semiroofed_surface {
	background-image: url('assets/img/icons-properties/sup-semi-cubierta.svg');
}

.single.properties .content .attributes .items article .icon.icon-roofed_surface{
	background-image: url('assets/img/icons-properties/sup-cubierta.svg');
}



/***/

.single.properties .content .status .items {
	border-left: solid 2px #fff;
	margin-left: 25px;
    margin-bottom: 0;
}
.single.properties .content .status .items li {
	margin-left: -45px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 767px){
	.single.properties .content .status .items li:not(:first-of-type) {
	    margin-top: 30px;
	}
}

.single.properties .content .status .items li .dot {
	width: 25px;
	height: 25px;
	border: solid 1px #fff;
	background: #165ED3;
	border-radius: 50%;	
	margin-right: 8px;
}
.single.properties .content .status .items li.active{
	
}

.single.properties .content .status .items li.active .dot{
	background: #fff;
}

@media screen and (min-width: 768px){
	.single.properties .content .status .items {
		display: inline-flex;
	    width: 100%;
	    justify-content: space-around;
	    border-top: solid 2px #fff;
	    border-left: 0;
	    margin-left: 0;
	}
	.single.properties .content .status .items li {
		text-align: center;
		margin-top: -15px;
		flex-direction: column;
		margin-left: 0;
	}
	.single.properties .content .status .items li .dot {
		margin: 0 auto;
		margin-bottom: 8px;
	}
}


.single.properties .content .unidades-disponibles .title {
	margin-bottom: 20px;
}

.single.properties .content .unidades-disponibles article p {
	color: #4E4E4E;
}

.single.properties .content .unidades-disponibles .table {
	padding-top: 10px;
	border-bottom: 1px solid #165ED3;
    margin-bottom: 30px;
}

.single.properties .content .unidades-disponibles .table thead {
	background: #165ED3;
}

.single.properties .content .unidades-disponibles .table thead th {
	background: transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.1;
	text-align: center;
}

@media screen and (min-width: 768px){
	.single.properties .content .unidades-disponibles .table thead th {
		line-height: 65px;
	}
}

.single.properties .content .unidades-disponibles .table thead th span.icon {
    position: relative; /* Ensure the pseudo-element is positioned relative to the span */
    padding-right: 30px;
}

.single.properties .content .unidades-disponibles .table thead th span.icon::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: url(assets/img/icons/icon-arrow-select-light.svg) no-repeat center center;
    background-size: cover;
    transform-origin: center; 
    pointer-events: none; 
}

.single.properties .content .unidades-disponibles .table thead th.sorting_asc span.icon::before {
    transform: rotate(180deg);
}

.single.properties .content .unidades-disponibles .table tbody tr:not(:last-child) {
	border-bottom: 1px solid #C2C2C2;
}

.single.properties .content .unidades-disponibles .table tbody tr:last-child,
.single.properties .content .unidades-disponibles .table tbody tr:last-child td {
	border-bottom: none;
}

.single.properties .content .unidades-disponibles .table tbody td p {
	margin: 0;
	font-size: 12px;
	line-height: 110%;
	text-align: center;
	color: #165ED3;
}

.single.properties .content .unidades-disponibles .table tbody td p.bold {
	font-weight: 700;
}

.single.properties .content .unidades-disponibles .table tbody td p span {
	line-height: 2;
}

.single.properties .content .unidades-disponibles .table tbody td p small {
	font-size: 14px;
}

@media screen and (min-width: 992px) {
	.single.properties .content .unidades-disponibles .table tbody td p {
		font-size: 16px;
		line-height: 70px;
	}
}


@media screen and (max-width: 640px) {
    .single.properties .content .unidades-disponibles .dataTables_wrapper .dataTables_length,
    .single.properties .content .unidades-disponibles .dataTables_wrapper .dataTables_filter {
        text-align: left;
    }
}

/* Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #004593;
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}





.single.properties .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #165ED3;
    border-radius: 28px;
}

.single.properties .dataTables_wrapper .dataTables_length select[name="developmentProperties_length"] {
	border: 1px solid #165ED3;
	color: #165ED3;
	border-radius: 21px;
}

.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_filter, 
.dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_processing, 
.dataTables_wrapper .dataTables_paginate {
    color: #165ED3  !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, 
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, 
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	color: #165ED3  !important;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #165ED3 !important;
    border: 1px solid #165ED3;
    background: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #EA0029;
    background: #EA0029;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:focus, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:not([disabled]):not(.disabled):active {
    color: #fff !important;
    background: #165ED3 !important;
    border-color: #165ED3 !important;
}



/* Footer */

.footer{
	background: #165ED3;
	color: #fff;
	border-top: solid 1px #fff;
}

.footer a:hover{
	color: inherit;
	text-decoration: underline;
}

.footer .logo-description{
	margin-top: 8px;
	font-size: 20px;
}

.footer .widgets{
	padding: 30px 0;
	text-align: center;
}
.footer .widgets .logo{
	display: block;
	width: 235px;
	margin: 0 auto 30px;
}

.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer .widgets .menu{
	margin: 0;
}
.footer .widgets .menu li a{
	font-weight: 500;
	display: block;
}

.footer .widgets .menu li .sub-menu{
	margin: 5px 0 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}

@media screen and (min-width:992px){
	.footer .widgets .menu{
		display: flex;
		justify-content: space-between;
	}
}

@media screen and (max-width: 991px){
	.footer .widgets .menu li .sub-menu{
    	display: none;
	}
}

.footer .widgets .socialmedia {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.footer .widgets .socialmedia li{
	margin: 0 5px;
}
.footer .widgets .socialmedia li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #165ED3;
	line-height: 32px;
	background: #fff;
	border-radius: 50%;
}
.footer .widgets .socialmedia li a:hover{
    color: #fff;
    text-decoration: none;
	background: #165ED3;
    border: 1px solid #fff;
}

.footer .copyright{
	padding: 15px 0;
	margin-top: 50px;
}
.footer .copyright p{
	margin: 0;
	font-size: 12px;
	font-weight: 500;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 60px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	.footer .widgets .socialmedia{
		margin-top: 0;
		justify-content: flex-start;
	}
	.footer .widgets .socialmedia li{
		margin: 0 0 0 10px;
	}

	.footer .menu > li {
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 20px;
	}
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
}
.slider .dots .slick-dots {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
}
.slider .dots .slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 10px 6px;
}
.slider .dots .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
    text-indent: -9999px;
	background: #d7d7d7;
    border: 0;
	border-radius: 50%;
    overflow: hidden;
    -webkit-appearance: none;
    cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button {
	background: #165ED3;
}

.slider .arrows button{
	position: absolute;
	top: calc(50% - 20px);
	left: 10px;
	width: 45px;
	height: 45px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	background: #fff;
	border: 1px solid #165ED3;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	color: #000;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: 50%;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 10px;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-right.svg');
}
.slider .arrows button:hover {
	color: #fff;
	background: #EA0029;
	border-color: #EA0029;
}
.slider .arrows button:hover:after {
	filter: brightness(15);
}

@media screen and (min-width: 992px){
	.slider .arrows button{
		left: 25px;
	}
	.slider .arrows button.slick-next{
		left: auto;
		right: 25px;
	}
}

/*  Modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

/* Modals > Video */

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}


/* Modals > Search */
#modalSearch .modal-content{
	background-color: #165ED3;
	color: #fff;
	border-radius: 24px;
}
#modalSearch .modal-content .modal-body{
	padding: 80px 20px;
}

#modalSearch .btn-close {
	top: 20px;
	right: 20px;
	filter: invert(1);
}

#modalSearch .modal-content .data{
	max-width: 475px;
	margin: 0 auto;
	text-align: center;
}

#modalSearch .data .btn-back {
	color: #fff;
}

#modalSearch .data .btn-back:hover {
	border: 1px solid #fff;
}

#modalSearch .data .btn-next{
	color: #165ED3;
}

#modalSearch .data .btn-next:hover{
	background: #EA0029;
	color: #fff;
	border-color: #EA0029;
}

#modalSearch .btn-submit:hover {
	color: #165ED3;
	background: #FFF;
	border-color: #FFF;
}

#modalSearch .data .output-range{
	display: block;
    min-width: 180px;
    max-width: fit-content;
    margin: 0 auto;
    border: solid 1px #fff;
    border-radius: 100px;
    font-size: 18px;
    padding: 15px 30px;
    margin-bottom: 30px;
}

 .range-slider {
    -webkit-appearance: none; 
    width: 100%; 
    height: 3px; 
    background: #fff; 
    outline: none; 
    opacity: 0.7; 
    -webkit-transition: .2s; 
    transition: opacity .2s; 
    accent-color: #fff;
}

.range-slider:hover {
    opacity: 1; 
}

#modalSearch .form-range {
	accent-color: #fff;
}

/***/
#modalSearch .form-check-inline{
	padding: 0;
	margin: 0;
}
#modalSearch .form-check-inline label{
    padding: 0;
    margin: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;	
	border: solid 1px #fff;
	color: #fff;
	cursor: pointer;
}
#modalSearch .form-check-inline.form-check-word label{
	width: fit-content;
	padding: 0 20px;
	border-radius: 50px;
}
#modalSearch .form-check-inline:has(.form-check-input[type="radio"]:checked) label{
	background: #fff;
	color: #165ED3;
}
#modalSearch .form-check-inline .form-check-input[type=radio]{
	display: none;
}
#modalSearch .form-check-inline .form-check-input[type=radio]:checked ~ label {
    color: #165ED3;
}


/* Whatsapp */

.btn-whatsapp{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
    z-index: 9999;
}
.btn-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-whatsapp{
	    width: 70px;
	    height: 70px;
	    line-height: 70px;
	    font-size: 40px;
	}
}






/* Double input range */

.range_container {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 20px auto;
}

.range_container .sliders_control {
	position: relative;
	min-height: 50px;
}

.range_container .form_control {
	position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.range_container input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: all;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	/*box-shadow: 0 0 0 1px #C6C6C6;*/
	cursor: pointer;
}

.range_container input[type=range]::-moz-range-thumb {
	-webkit-appearance: none;
	pointer-events: all;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	/*box-shadow: 0 0 0 1px #C6C6C6;*/
	cursor: pointer;  
}

.range_container input[type=range]::-webkit-slider-thumb:hover {
	background: #f7f7f7;
}
/*
.range_container input[type=range]::-webkit-slider-thumb:active {
	box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
	-webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
*/
.range_container input[type="number"] {
	color: #fff;
    width: auto;
    font-size: 18px;
    background: transparent;
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 100px;
}

.range_container input[type=number]::-webkit-inner-spin-button, 
.range_container input[type=number]::-webkit-outer-spin-button {  
	opacity: 1;
}

.range_container input[type="range"] {
	-webkit-appearance: none; 
	appearance: none;
    height: 4px;
    width: 100%;
    position: absolute;
    /*background-color: #C6C6C6;*/
    background-color: #FFF;
    pointer-events: none;
    left: 0;
}

.range_container #fromSlider {
	height: 0;
	z-index: 1;
}

#clgo iframe{
	bottom: 0 !important;
}

/* Select2 */

.modal-open .select2-container{
	z-index: 99999;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple{
	height: 44px;
	text-align: left;
	color: var(--bs-primary);
	background-color: transparent;
	border-color: var(--bs-primary);;
	border-radius: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
	position: absolute;
	top: 8px;
	right: 18px;
	color: var(--bs-primary);
}
.select2-container--default .select2-selection--multiple .select2-selection__clear{
	position: absolute;
	top: 0px;
	right: 26px;
	color: var(--bs-primary);
}

.select2-container--default .select2-selection--multiple{	
	background: transparent url('assets/img/icons/icon-arrow-select.svg') no-repeat;
	background-position: calc(100% - 10px) center;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
	border-color: var(--bs-primary);
	max-width: 220px;
	overflow: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
	color: var(--bs-primary);
	line-height: 42px;
	padding-left: 15px;
	padding-right: 50px;
	background: transparent url('assets/img/icons/icon-arrow-select.svg') no-repeat;
	background-position: calc(100% - 20px) center;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable .select2-selection__rendered{
	display: inline-block;

}
.select2-container--default .select2-search--inline .select2-search__field{
	padding-right: 30px;
	padding-left: 10px;
    min-height: 34px;
    line-height: 34px;
}
.select2-container--default .select2-search--inline .select2-search__field::placeholder{
	color: var(--bs-primary);
}


.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--multiple .select2-selection__placeholder{
	color: var(--bs-primary);
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow{
	top: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b{
	display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
	border-radius: 50px;
}
.select2-results__option{
	padding: 4px;
	font-size: 14px;
}
.select2-container--open .select2-dropdown{
	min-width: 200px;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice{
	display: inline-block;
	line-height: 22px;
	margin: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display{
	font-size: 14px;
}




.modal-search .select2-container--default .select2-selection--single, 
.bg-primary .select2-container--default .select2-selection--single{
	border-color: #fff;
}

.modal-search .select2-container--default .select2-selection--single .select2-selection__rendered, 
.bg-primary .select2-container--default .select2-selection--single .select2-selection__rendered{
	background-image: url('assets/img/icons/icon-arrow-select-light.svg');
}


.modal-search .select2-container--default .select2-selection--single,
.modal-search .select2-container--default .select2-selection--single .select2-selection__clear,
.modal-search .select2-container--default .select2-selection--single .select2-selection__rendered,
.modal-search .select2-container--default .select2-selection--single .select2-selection__placeholder,
.bg-primary .select2-container--default .select2-selection--single,
.bg-primary .select2-container--default .select2-selection--single .select2-selection__clear,
.bg-primary .select2-container--default .select2-selection--single .select2-selection__rendered,
.bg-primary .select2-container--default .select2-selection--single .select2-selection__placeholder{
	color: #fff;
}


/* Presentation Select2 */

.presentation .select2-container--default .select2-selection--single,
.presentation .select2-container--default .select2-selection--multiple{
	height: 44px;
	border-color: #fff;
	border-radius: 0;
}

.presentation .select2-container--default .select2-selection--single .select2-selection__rendered{
	background-image: url('assets/img/icons/icon-arrow-select.svg');
	filter: grayscale(1);
}

.presentation .select2-container--default .select2-selection--single .select2-selection__clear,
.presentation .select2-container--default .select2-selection--single .select2-selection__rendered,
.presentation .select2-container--default .select2-selection--single .select2-selection__placeholder,
.presentation .select2-container--default .select2-selection--multiple .select2-selection__clear,
.presentation .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.presentation .select2-container--default .select2-selection--multiple .select2-selection__placeholder{
	color: #828C93;
	font-size: 14px;
}


.presentation .select2-container--default .select2-search--inline .select2-search__field::placeholder{
	color: #828C93;
}

.presentation .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.presentation .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.presentation .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.presentation .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
	border-radius: 0;
}

.presentation .select2-results__option{
	padding: 4px;
	font-size: 15px;
}
.presentation .select2-container--open .select2-dropdown{
	min-width: 200px;
}


.links {
	padding: 30px 0;
	border-bottom: 1px solid #fff;
	background-color: var(--bs-primary);
}
.links article{
	position: relative;
	display: block;
	padding: 60% 0 0;
	background: #000 no-repeat center;
	background-size: 100% auto;
	transition: 0.3s all;
}
.links article:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 100%);
}
.links article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.links article:hover{
	background-size: 110% auto;
}
.links article .data{
	position: absolute;
	bottom:0;
	left: 0;
	padding: 15px;
	color: #fff;
	z-index: 1;
}

.links article .data h2{
	margin: 0;
	font-size: 20px;
	line-height: 22px;
}

@media screen and (min-width:992px){
	.links article{
		padding: 75% 0 0;
	}
	.links article .data{
		padding: 30px;
	}
	.links article .data h2{
		font-size: 24px;
		line-height: 26px;
	}
}


.wp-block-buttons>.wp-block-button{
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

/* Single > Landings */

.single.landings .module-gallery .slider{
	height: 300px;
	border-top: 1px solid #165ED3;
    background: #eee;
}

.single.landings .module-gallery .slider .slide{
	height: 300px;
	background-size: cover;
	background-position: center;
    display: flex !important;
    justify-content: center;
}

.single.landings .module-gallery .slider .slide a{
	margin-bottom: 20px;
}

.single.landings .module-gallery .slider .slide img{
    width: auto;
    height: 300px;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.single.landings .module-gallery .slider .slide h2{
    font-size: 2.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
}

.single.landings .module-gallery .slider .slides {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.single.landings .module-gallery .slider .slick-initialized {
	opacity: 1;
}


@media screen and (min-width: 992px){
	.single.landings .module-gallery .slider,
	.single.landings .module-gallery .slider .slide{
		height: 500px;
	}
	.single.landings .module-gallery .slider .slide img{
	    height: 500px;
	}
}

.single.landings  .module{
	padding: 1.5rem 0;
}


@media screen and (min-width: 992px){
	.single.landings  .module{
		padding: 3rem 0;
	}
}

.single.landings .module-properties .thumbnail .img,
.single.landings .module-developments .thumbnail .img,
.single.landings .module-list .thumbnail .img{
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.single.landings .module-list picture .meta{
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 99;
}

.single.landings .module-list .meta .operation{
	color: #fff;
	border: solid 1px #fff;
}

.single.landings .module-list .meta .price{
	font-size: 1.5rem;
}

.single.landings .module-image h3{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding-left: 5%;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 300;
    text-shadow: 1px 1px 1px #000;
    z-index: 30;
}

@media screen and (min-width: 992px){
	.single.landings .module-image h3{
	    font-size: 2.3rem;
	    padding-left: 10%;
	}
}