/* ===== [BEGIN] ===== GENERAL + HEADER ===== */
html, body {
	width: 100%;
}

/* == [BEGIN] SCROLLBAR == */
body::-webkit-scrollbar { 
	width: 7px;
	height: 7px;
}
body::-webkit-scrollbar-track { 
	background: #1E90FF77;
} 
body::-webkit-scrollbar-thumb { 
	background: #1E90FFFF;
	border-radius: 10px;
} 
body::-webkit-scrollbar-thumb:hover { 
	background: #0047AB;
} 
body::-webkit-scrollbar-button { 
	display: none;
}
/* == [END] SCROLLBAR == */

/* == [BEGIN] CHECKBOX == */
/* Basic styling */
[type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50% !important;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}
/* Pseudo element for check styling */
[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}
/* Checked */
[type=checkbox]:checked {
  background-color: currentcolor;
}
[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
/* Disabled */
[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}
/* IE */
[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}
[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
/* == [END] CHECKBOX == */

header {
	height: 6em;
	width: 100%;
	position: relative;
	z-index: 1000;
	background-color: white;
}

p {
	margin: 0 !important;
}

.container, .row {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.help-block {
	color: red;
}
/* ===== [END] ===== GENERAL + HEADER ===== */

/* ===== [BEGIN] ===== MODAL ===== */
.modal {
	align-items: center;
	position: fixed;
	z-index: 1;
	padding-top: 0%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	overflow-x: hidden;
}
.modal-content {
	justify-content: center;
	background-color: #fefefe;
	margin: auto;
	padding: 2em;
	border: 0.1em solid #888;
	width: 80%;
	max-height: 40em;
	overflow: auto;
}
.close {
	color: #aaaaaa;
	float: right;
	font-size: 1.8em;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
/* ===== [END] ===== MODAL ===== */

/* ===== [BEGIN] ===== NAVIGATION ===== */
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	background-color: #003DA5;
	overflow-x: hidden;
	padding-top: 5em;
	transition: 0.5s;
	text-decoration: none;
}
.adminSidenav {
	height: 90%;
	width: 0;
	position: absolute;
	z-index: 1001;
	top: 0;
	right: 0;
	background-color: #003DA5;
	overflow-x: hidden;
	padding-top: 1em;
	transition: 0.5s;
	text-decoration: none;
	margin-top: 4em;
	border-radius: 15px;
	overflow-y: auto;
}
.sidenav a, .adminSidenav a {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-decoration: none;
	font-size: 1.3em;
	color: white;
	display: block;
	transition: 0.3s;
	text-align: center;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.sidenav a:hover, .adminSidenav a:hover {
	color: white;
	text-decoration: none;
}
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 0.5em;
	font-size: 2.5em;
}
.adminSidenav .closebtn {
	position: absolute;
	top: 0;
	left: 0.5em;
	font-size: 2.5em;
}
.closebtn {
	padding: 0 !important;
}
/* ===== [END] ===== NAVIGATION ===== */

/* ===== [BEGIN] ===== GLOBAL HEADER ===== */
.header_account_row {
	height: 100%;
	display: flex;
	align-items: center;
}

.header_nav_row, .mobile_header_nav_row {
	background-color: #003DA5;
	height: 4em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.header_nav_row .col-sm-1 {
	height: 100%;
	margin: 0em 1em 0em 1em;
}

.header_logo {
	height: 90%;
	background-color: #FFFFFF55;
}

.header_nav_row .nav_option {
	height: 100%;
	width: 8.33%;
	text-decoration: none;
	font-weight: bold;
	color: white;
	text-align: center;
	font-size: 1.2em;
	transition: all ease-in-out .2s;
	display: flex;
}
.header_nav_row .nav_option .col-sm-1 {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.header_nav_row .nav_option .col-sm-1:hover {
	background-color: red !important;
}

.header_logo_col {
	height: 100%;
	padding-left: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_logo_col a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_account_col {
	height: 100%;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header_account_col .container {
	width: 200% !important;
	background-color: black;
	position: absolute;
	top: 100%;
	right: -50%;
	font-weight: bold;
	font-size: 1em !important;
	padding: 1em 1em 1em 1em !important;
	display: none;
	text-align: left;
	z-index: 1000;
}
.header_account_col .container .row {
	margin-top: 1em !important;
}
.header_account_col .container .row a {
	color: white;
	text-decoration: none;
}
.header_account_col .container .row a:hover {
	color: dodgerblue;
}

.header_properties_col {
	height: 100%;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header_properties_col .container {
	width: 150% !important;
	background-color: #003DA5;
	position: absolute;
	top: 100%;
	right: -25%;
	font-weight: bold;
	font-size: 1em !important;
	display: none;
	text-align: center;
	z-index: 1000;
}
.header_properties_col .container .row a {
	color: white;
	text-decoration: none;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.header_properties_col .container .row a:hover {
	color: red;
}

.header_properties_col .container .row .header_properties_menu_1, .header_properties_col .container .row .header_properties_menu_2 {
	width: 100% !important;
	background-color: #003DA5;
	position: absolute;
	top: 0%;
	right: -100%;
	font-weight: bold;
	font-size: 1em !important;
	padding: 1em 1em 1em 1em !important;
	text-align: center;
	z-index: 1000;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header_properties_col .container .row .header_properties_menu_1 a, .header_properties_col .container .row .header_properties_menu_2 a {
	margin-top: 1em;
}

.nav_icon {
	height: 2em;
}
/* ===== [END] ===== GLOBAL HEADER ===== */

/* ===== [BEGIN] ===== COOKIES CONSENT ===== */
#myModalCookies {
	width: 80%;
	height: 25%;
	background-color: rgba(0, 0, 0, 0);
	left: 10%;
	top: 75%;
}
#accept_cookies_button:hover {
	background-color: #FF0000CC !important;
}
/* ===== [END] ===== COOKIES CONSENT ===== */

/* ===== [BEGIN] ===== GLOBAL CONTACT ===== */
#global_contact_general {
	background-color: dodgerblue;
	border-radius: 40px;
	width: 4em;
	height: 4em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease-in-out .5s;
	cursor: pointer;
}
#global_contact_general p {
	color: white;
	font-weight: bold;
	font-size: 1.5em;
}
#global_whatsapp_icon {
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 998;
	display: none;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_phone_icon {
	background-color: red;
	border-radius: 40px;
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 997;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_phone_icon img {
	width: 2em;
	height: 2em;
}
#global_email_icon {
	background-color: mediumpurple;
	border-radius: 40px;
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 997;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_email_icon img {
	width: 2em;
	height: 2em;
}
/* ===== [END] ===== GLOBAL CONTACT ===== */


#main_image {
	height: 40em;
	background-image: url('../images/home/main_images/main_image_1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
	transition: 3s;
}
#main_image_darken {
	width: 100%;
	height: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
#main_image #main_image_darken .first_row .col-sm-8 .second_row {
	background-color: #003DA5AA;
	padding: 1.2em 0.8em 2em 1em !important;
	border-radius: 15px;
}
#main_image #main_image_darken .first_row .col-sm-8 .second_row .button span:hover {
	background-color: red !important;
}

.home_aboutus_container {
	margin-top: 10em !important;
	height: 60em;
}

.home_aboutus_row {
	height: 50%;
}
.home_aboutus_row .col-sm-4 {
	height: 100%;
}
.home_aboutus_container .first_row .left_col img {
	border-top-left-radius: 15px;
}
.home_aboutus_container .first_row .right_col {
	border-top: 0.1em solid #BBBBBB;
	border-right: 0.1em solid #BBBBBB;
	border-top-right-radius: 15px;
}
.home_aboutus_container .second_row .left_col {
	border-left: 0.1em solid #BBBBBB;
	border-bottom: 0.1em solid #BBBBBB;
	border-bottom-left-radius: 15px;
}
.home_aboutus_container .second_row .right_col img {
	border-bottom-right-radius: 15px;
}

.home_contact_box {
	margin-top: 10em !important;
}
.home_contact_box .row {
	min-height: 10em;
}
.home_contact_box .row .col-sm-8 {
	background-color: #EEEEEE;
	min-height: 10em !important;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #000000;
	padding: 0;
	background-image: url('../images/home/contact_image.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: darken;
}
.home_contact_box .row .col-sm-8 .container {
	background-color: #000000AA;
	padding: 2em !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.home_contact_box .row .col-sm-8 .container a {
	background: linear-gradient(red, red);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 0%;
	transition: all .2s ease-out;
}
.home_contact_box .row .col-sm-8 .container a:hover {
	background-size: 100% 100%;
}

.main_activity {
	margin-top: 10em !important;
}
.main_activity .main_col {
	height: 50em;
	padding: 0;
}

#main_activity_img {
	opacity: 0.1;
	transition: all 2s ease-in-out;
}
.main_activity .main_col .row .right_col {
	overflow: hidden;
}
.main_activity_p {
	margin-left: -30em !important;
	transition: all 2s ease-in-out;
}

.main_info {
	margin-top: 10em !important;
	padding: 0em 1em !important;
}

.company_structure_container {
	margin-top: 10em !important;
	overflow: hidden;
}

.company_structure_main_row {
	font-size: 2em;
	text-align: center;
	font-weight: bold;
	color: dodgerblue;
}

.company_structure_middle_row {
	margin-top: 3em !important;
	min-height: 20em;
}
.company_structure_middle_row .col-sm-4 {
	padding: 0em;
	height: 25em;
}
.company_structure_middle_row .col-sm-4 .container {
	background-color: #EEEEEE;
	border-radius: 25px;
	height: 100%;
	box-shadow: 0px 0px 3px #000000;
	transition: all 1s ease-in-out;
}
.company_structure_middle_row .col-sm-4 .container a {
	color: white;
	text-decoration: none;
}
.company_structure_middle_row .col-sm-4 .container .container {
	height: 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transition: all .5s ease-in-out;
}
.company_structure_middle_row .col-sm-4 .container .container:hover {
	background-size: 125% 125%;
}
.company_structure_middle_row .col-sm-4 .container .container .container {
	width: 100%;
	height: 100%;
	background-color: #000000BB;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: all .4s ease-in-out;
}
.company_structure_middle_row .col-sm-4 .container .container .container:hover {
	opacity: 0;
}
.company_structure_middle_row .col-sm-4 .container .container .container .row .first_info_row {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: white;
}
.company_structure_middle_row .col-sm-4 .container .container .container .row .second_info_row {
	font-size: 1.2em;
	text-align: center;
	color: white;
}

.button_fill_left_right {
	margin-top: 5em !important;
	margin-bottom: 1em !important;
	text-align: center;
}
.button_fill_left_right p a {
	text-decoration: none;
	color: white;
	background-color: dodgerblue !important;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 25px;
	padding: 0.5em 1em 0.5em 1em;
	background: linear-gradient(red, red);
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: all .2s ease-out;
}
.button_fill_left_right p a:hover {
	background-size: 100% 100%;
}

.button_fill_top_bottom {
	margin-top: 5em !important;
	margin-bottom: 1em !important;
	text-align: center;
}
.button_fill_top_bottom p a {
	text-decoration: none;
	color: white;
	background-color: dodgerblue !important;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 25px;
	padding: 0.5em 1em 0.5em 1em;
	background: linear-gradient(red, red);
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 100% 0%;
	transition: all .2s ease-out;
}
.button_fill_top_bottom p a:hover {
	background-size: 100% 100%;
}

.company_contact_container {
	margin-top: 10em !important;
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
}

.company_firm_title {
	margin-top: 10em !important;
}
.company_firm_title .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.company_firm_title .subtitle {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}

.property_title {
	margin-top: 10em !important;
}
.property_title .title {
	font-size: 2em;
	font-weight: bold;
}
.property_title .subtitle {
	font-size: 1.5em;
}
.property_title .price {
	font-size: 2em;
	font-weight: bold;
}
.property_title .type {
	padding: 0.5em 1.5em 0.5em 1.5em;
	border-radius: 25px;
	font-weight: bold;
	color: white;
	font-size: 1em;
}

.property_image_container {
	margin-top: 5em !important;
}
.property_image_container .property_first_row {
	height: 40em;
}
.property_image_container .property_first_row .col-sm-8 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all .5s ease-in-out;
}
.property_image_container .property_first_row .col-sm-8 .row_1 .col-sm-6 span {
	background-color: #003DA5;
	padding: 1em;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	cursor: pointer;
}
.property_image_container .property_first_row .col-sm-8 .row_1 .col-sm-6 span:hover {
	background-color: red;
}
.property_image_container .property_first_row .col-sm-8 .row_2 {
	text-align: center;
}
.property_image_container .property_first_row .col-sm-8 .row_2 span {
	background-color: #000000AA;
	padding: 1em 3em 1em 3em;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transition: all .5s ease-in-out;
}

.property_address_container {
	margin-top: 10em !important;
}
.property_address_container .col-sm-4 .container .agency_row p a:hover {
	color: blue !important;
}

.agent_details_container {
	margin-top: 5em !important;
}

.property_details_container .first_row {
	background-color: #003DA5;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.property_details_container .first_row p {
	color: white;
	font-size: 1.5em;
	font-weight: bold;
}

.property_details_container .second_row {
	margin-top: 3em !important;
}
.property_details_container .second_row .left_col {
	padding-left: 0;
}
.property_details_container .second_row .left_col a img:hover {
	opacity: 0.5;
}
.property_details_container .second_row .right_col {
	padding-right: 0;
}
.property_details_container .second_row .right_col p {
	font-size: 1.2em;
	margin-top: 0.5em !important;
}
.property_details_container .second_row .right_col p a:hover {
	color: blue !important;
}

.property_details_container .form_row {
	margin-top: 3em !important;
}
.property_details_container .form_row form .form-group .col-sm-4 {
	padding-right: 0;
	padding-left: 0;
}
.property_details_container .form_row form .form-group {
	margin: 0;
	width: 100%;
}
.property_details_container .form_row form .form-group label {
	text-align: center;
	background-color: #003DA5;
	color: white;
	font-weight: bold;
	padding-bottom: 7px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.property_details_container .form_row form .form-group .col-sm-8 {
	padding-left: 0;
	padding-right: 0;
}
.property_details_container .form_row form .form-group input {
	border-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.property_details_container .form_row form .form-group textarea {
	border-radius: 0;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.property_details_container .form_row form .form-group .btn-primary {
	background-color: #003DA5;
	font-weight: bold;
	border-radius: 4px;
	border-color: #003DA5;
	width: 49.5%;
}
.property_details_container .form_row form .form-group .btn-primary:hover {
	background-color: #003DA5BB;
}
.property_details_container .form_row form .form-group .btn-default {
	border-color: #003DA5;
	font-weight: bold;
	border-radius: 4px;
	width: 49.5%;
	margin-left: 1%;
}
.property_details_container .form_row form .form-group .btn-default:hover {
	background-color: #003DA5BB;
	color: white;
}

.property_container {
	margin-top: 10em !important;
}

.property_middle_row {
	margin-top: 3em !important;
	min-height: 20em;
}
.property_middle_row .col-sm-6 {
	padding: 0em;
	height: 25em;
}
.property_middle_row .col-sm-6 .container {
	background-color: #EEEEEE;
	border-radius: 25px;
	height: 100%;
	box-shadow: 0px 0px 3px #000000;
	transition: all 1s ease-in-out;
}
.property_middle_row .col-sm-6 .container a {
	color: white;
	text-decoration: none;
}
.property_middle_row .col-sm-6 .container .container {
	height: 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transition: all .5s ease-in-out;
}
.property_middle_row .col-sm-6 .container .container:hover {
	background-size: 125% 125%;
}
.property_middle_row .col-sm-6 .container .container .container {
	width: 100%;
	height: 100%;
	background-color: #00000055;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	opacity: 1;
	transition: all .4s ease-in-out;
}
.property_middle_row .col-sm-6 .container .container .container .row_first {
	height: 20em !important;
	padding: 1em 0em 0em 1em !important;
	display: flex;
	flex-direction: row;
}
.property_middle_row .col-sm-6 .container .container .container .row_first p {
	background-color: #FF0000AA;
	height: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em !important;
	border-radius: 7px;
	font-weight: bold;
}
.property_middle_row .col-sm-6 .container .container .container .row {
	height: 5em;
	display: flex;
}
.property_middle_row .col-sm-6 .container .container .container .row .col-sm-6 {
	width: 50% !important;
	height: 100%;
}
.property_middle_row .col-sm-6 .container .container .container .row .first_info_row {
	width: 100%;
	height: 100%;
	font-size: 1.2em;
	font-weight: bold;
	color: white;
	background-color: #003DA5AA;
	border-bottom-left-radius: 25px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}
.property_middle_row .col-sm-6 .container .container .container .row .second_info_row {
	width: 100%;
	height: 100%;
	font-size: 1.2em;
	font-weight: bold;
	color: white;
	background-color: #00000099;
	border-bottom-right-radius: 25px;
	padding: 0.5em 0.5em 0.5em 0.5em;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
}

.property_container .pages_row {
	margin-top: 3em !important;
}
.property_container .pages_row .col-sm-4 {
	text-align: right;
}
.property_container .pages_row .col-sm-4 a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	font-size: 1.2em;
	margin-left: 1em;
	background-color: #003DA5AA;
	padding: 0.5em;
	border-radius: 10px;
}
.property_container .pages_row .col-sm-4 a:hover {
	font-size: 1.5em;
}

.property_facilities {
	margin-top: 10em !important;
}
.property_facilities .col-sm-8 .main_row .col-sm-6 p {
	font-size: 1.2em;
	margin-top: 0.5em !important;
}

.property_description {
	margin-top: 10em !important;
}
.property_description .col-sm-8 .main_row p {
	font-size: 1.2em;
}

.filter_form_container {
	transition: all .5s ease-in-out;
}

.filter_sort_menu {
	background-color: #003DA5;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
	color: white;
	padding: 2em !important;
	overflow: hidden;
}
.filter_sort_menu form {
	transition: all .5s ease-in-out;
}

.firm_main_container {
	margin-top: 5em !important;
}
.firm_main_container .col_left {
	text-align: center;
}
.firm_main_container .col_right {
	text-align: justify;
	font-size: 1.3em;
}

.agency_properties_container {
	margin-top: 10em !important;
}

.agency_properties_title {
	text-align: center;
	color: dodgerblue;
	font-weight: bold;
	font-size: 2em;
}

.agency_agents {
	margin-top: 10em !important;
}

.agency_agents_first_row {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: dodgerblue;
}

.agency_agents_second_row {
	margin-top: 3em !important;
	display: flex;
	align-items: center;
}

.agency_agents_scroll {
	font-size: 2em;
	padding: 0.5em;
	background-color: #DDDDDD;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.agency_agents_scroll:hover {
	background-color: dodgerblue !important;
	color: white !important;
}

.agency_agents_main_container {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.agency_agents_main_container .row {
	overflow: hidden;
	height: 30em;
	width: 80em !important;
	text-align: center;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.agency_agents_main_container .row .agent_container {
	height: 30em;
	width: 20em;
	padding: 0.5em;
	display: inline-block;
	flex-shrink: 0;
}
.agency_agents_main_container .row .agent_container a {
	text-decoration: none;
	color: black;
}
.agency_agents_main_container .row .agent_container .container {
	padding: 1em !important;
	background-color: white;
	border: 0.1em solid #BBBBBB;
	border-radius: 25px;
	text-align: center;
	height: 100%;
}
.agency_agents_main_container .row .agent_container .container:hover {
	box-shadow: 0px 0px 3px #000000;
}

.agency_contact {
	margin-top: 5em !important;
}
.agency_contact .row .left_col {
	text-align: center;
}
.agency_contact .row .left_col p a:hover {
	color: blue !important;
}

.agency_contact .row .right_col iframe {
	width: 100%;
}

.agent_profile_container {
	margin-top: 10em !important;
}
.agent_profile_container .row .left_col {
	text-align: left;
	padding-right: 2em;
}
.agent_profile_container .row .right_col {
	padding-left: 2em;
	font-size: 1.3em;
}
.agent_profile_container .row .right_col p a:hover {
	color: blue !important;
}

.page_main_header {
	height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.page_main_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page_main_header_row p {
	color: white;
	font-size: 4em;
	font-weight: bold;
	text-align: center;
	color: white;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}

#account_menu, #account_menu2 {
	margin-top: 10em !important;
	text-align: center;
	color: black;
	border: 0.1em solid black;
	padding-top: 2em !important;
	padding-bottom: 2em !important;
	margin-bottom: 2em !important;
	background-color: lightgrey;
	overflow: hidden;
}
#account_menu .form-horizontal .form-group .help-block, #account_menu2 .form-horizontal .form-group .help-block {
	color: red;
}

.a_panel_nav {
	position: fixed;
	left: 0;
	top: 4em;
	height: 100%;
	padding-bottom: 4em !important;
}
.a_panel_nav_main_row {
	height: 100%;
}
.a_panel_nav_main_row a {
	text-decoration: none !important;
}
.a_panel_nav_main_row .col-sm-2 {
	height: 100%;
	background-color: #EEEEEE;
	border-right: 0.1em solid black;
	text-align: center;
	padding: 0 !important;
	overflow-y: auto;
}

.a_panel_nav_title {
	font-size: 2em;
	font-weight: bold;
	margin-top: 3em !important;
}

.a_panel_nav_item {
	border-top: 0.1em solid black;
	color: black;
}
.a_panel_nav_item p {
	font-size: 1.2em;
	margin-top: 1em !important;
	margin-bottom: 1em !important;
}
.a_panel_nav_item:hover {
	background-color: gray;
	color: white !important;
	font-weight: bold;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}

.a_panel_page_title {
	text-align: center;
	font-weight: bold;
	background-color: #AAAAAA;
	padding: 1em 0em 1em 0em;
}

.a_panel_main_page_container {
	margin-top: 10em !important;
	padding: 0em 5em 0em 5em !important;
}
.a_panel_main_page_container .row {
	text-align: center;
}
.a_panel_main_page_container .container {
	overflow-x: auto;
	border:0.1em solid black;
}

.table_display th, .table_display td {
	text-align: center !important;
}

.privacy_policy {
	margin-top: 10em !important;
}
.privacy_policy h1 {
	text-align: center;
	font-weight: bold;
	margin: 0;
	margin-bottom: 2em;
}
.privacy_policy p {
	font-size: 1.2em;
	text-align: justify;
}
.privacy_policy hr {
	border-color: black;
}

.contact_main_container {
	margin-top: 10em !important;
}
.contact_title_row {
	text-align: center;
}
.contact_title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
}
.contact_main_text {
	margin-top: 3em !important;
}
.contact_main_text_col p {
	text-align: center;
	font-size: 1.2em;
}

.contact_info_row {
	margin-top: 10em !important;
}
.contact_info_offers_row {
	margin-top: 5em !important;
}
.contact_info_row_second {
	text-align: center;
}
.contact_info_row_second .col-sm-4 {
	background-color: #EEEEEE;
	min-height: 17em;
}
.contact_info_row_second .col-sm-12 {
	background-color: #EEEEEE;
}
.contact_info_row_second .col-sm-4 img, .contact_info_row_second .col-sm-12 img {
	width: 3em;
	height: 3em;
}
.contact_info_row_second .col-sm-12 a img {
	width: 20em;
	height: 4em;
	margin-top: 2em;
}
.contact_info_title {
	margin-top: 1em !important;
	font-size: 1.5em;
	font-weight: bold;
}
.contact_info_first {
	margin-top: 2em !important;
	font-size: 1.3em;
	font-weight: bold;
}
.contact_info_second {
	font-size: 1.3em;
	font-weight: bold;
}
#contact_info_row_first, #contact_info_row_second {
	opacity: 0;
	transition: ease 1s;
}

.location_container {
	margin-top: 5em !important;
	background-color: #EEEEEE;
}
.location_title {
	margin-top: 1em !important;
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
}
.location_address {
	margin-top: 3em !important;
	padding-left: 1em !important;
	padding-right: 1em !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.location_address img {
	width: 3em;
	height: 3em;
}
.location_address p {
	font-size: 1.3em;
	font-weight: bold;
}
.location_map {
	margin-top: 3em !important;
	text-align: center;
}
.location_map iframe {
	width: 80%;
	height: 50em;
	margin-bottom: 4em;
}

.aboutus_main_container {
	margin-top: 10em !important;
}
.aboutus_title_row {
	text-align: center;
}
.aboutus_title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
}
.aboutus_main_text {
	margin-top: 3em !important;
}
.aboutus_main_text_col p {
	text-align: center;
	font-size: 1.2em;
}

.aboutus_main_container {
	margin-top: 10em !important;
}

.aboutus_main_row_first .aboutus_main_col_left {
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_first .aboutus_main_col_right {
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_first .aboutus_main_col_left .text .title, .aboutus_main_row_first .aboutus_main_col_right .text .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.aboutus_main_row_first .aboutus_main_col_left .text .subtext, .aboutus_main_row_first .aboutus_main_col_right .text .subtext {
	margin-top: 3em !important;
	font-size: 1.2em;
	text-align: center;
}

.aboutus_main_row_second .aboutus_main_col_left {
	border-top: 0.1em solid gray;
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_second .aboutus_main_col_left .text .title, .aboutus_main_row_second .aboutus_main_col_right .text .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.aboutus_main_row_second .aboutus_main_col_left .text .subtext, .aboutus_main_row_second .aboutus_main_col_right .text .subtext {
	margin-top: 3em !important;
	font-size: 1.2em;
	text-align: center;
}
.aboutus_main_row_second .aboutus_main_col_right {
	border-top: 0.1em solid gray;
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services_info_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10em !important;
}
.services_info_nav a {
	color: black !important;
	text-decoration: none !important;
}
.services_info_nav p {
	background: #BBBBBB;
	padding: 1em;
	font-size: 1.2em;
	font-weight: bold;
	border-left: 0.1em solid black;
	width: 10em;
	text-align: center;
	cursor: pointer;
}
.services_info_nav p:hover {
	background-color: #DDDDDD;
}
#mechanics_tab img {
	margin-bottom: 0.1em;
}
.mechanics_dropdown_content {
	display: none;
	position: absolute;
	background-color: #BBBBBB;
	width: 12em;
	z-index: 996;
	text-align: center;
}
.mechanics_dropdown_content p {
	color: black !important;
	padding: 1em 0em 1em 0em !important;
	text-decoration: none !important;
	font-size: 1.2em !important;
	display: block;
	font-weight: normal !important;
	border-left: 0 !important;
	border-top: 0.1em solid black;
	cursor: pointer;
}
.mechanics_dropdown_content p:hover {
	background-color: #DDDDDD;
}

.mechanics_title {
	margin-top: 10em !important;
	text-align: center;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mechanics_title .line {
	border-top: 0.1em solid black;
	border-bottom: 0.1em solid black;
}
.mechanics_title p {
	font-size: 3em;
}
.services_info_row {
	margin-top: 10em !important;
}
.services_info_left {
	min-height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.services_info_left_next {
	min-height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 3em;
}
.services_info_right .title {
	font-weight: bold;
	text-align: center;
	font-size: 2em;
	color: black;
}
.services_info_right .text {
	margin-top: 3em !important;
	font-size: 1.3em;
	text-align: justify;
	color: black;
}


/* ===== [BEGIN] ===== FOOTER ===== */
footer {
	margin-top: 10em;
	background-color: black;
	color: white;
	height: 20em;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
footer .container .row {
	font-size: 1.2em;
	text-align: center;
}
.footer_policies {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ===== [END] ===== FOOTER ===== */




/* SPECIAL == LAPTOP (big) & LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1500px) {
	#main_image #main_image_darken .first_row {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#main_image #main_image_darken .first_row .col-sm-8 {
		width: 95%;
		margin-left: 0;
		padding: 0;
	}
}

/* LAPTOP (big) & LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1300px) {
	.header_account_col .container {
		width: 400% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -150%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
	
	.security_change_email, .security_change_password {
		width: 100% !important;
	}
	.security_change_password {
		margin-top: 1em;
	}
	
	.property_middle_row .col-sm-6 .container .container .container .row .col-sm-6 p {
		font-size: 1em;
	}
}

/* LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1100px) {
	.header_account_col .container {
		width: 400% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -150%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
	
	.header_nav_row .nav_option {
		width: 12%;
	}
	
	.property_middle_row .col-sm-6 .container .container .container .row {
		height: 7em;
	}
	.property_middle_row .col-sm-6 .container .container .container .row .col-sm-6 p {
		font-size: 0.9em;
	}
	.property_middle_row .col-sm-6 .container .container .container .row_first .row_first_tag {
		font-size: 0.8em !important;
		padding: 0.8em !important;
	}
	
	#myModalCookies {
		height: 35%;
		top: 65%;
	}
}

/* TABLET & MOBILE */
@media only screen and (max-width: 900px) {
	.header_account_col .container {
		width: 350% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -125%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
}

/* MOBILE */
@media only screen and (max-width: 767px) {
	.header_nav_row {
		display: none;
	}
	.mobile_header_nav_row .logo_col {
		width: 100%;
		height: 100%;
	}
	.header_logo {
		width: 15em !important;
		background-color: #003DA5;
	}
	.header_account_row {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header_account_row .header_logo_col {
		display: none;
	}
	.header_account_row .col-sm-1 {
		padding: 0em 2em 0em 2em;
	}
	
	.panel_left_col2 {
		display: none;
	}
	
	#main_image #main_image_darken .first_row .col-sm-8 .second_row .title {
		font-size: 1.5em !important;
	}
	
	.main_activity {
		padding: 0em 1em !important;
	}
	.main_activity .main_col {
		height: auto;
	}
	.main_activity .main_col .row {
		padding: 2em 0em !important;
	}
	.main_activity .main_col .row .left_col {
		justify-content: center !important;
	}
	.main_activity .main_col .row .right_col {
		margin-top: 1em;
	}
	.main_activity .main_col .row .right_col .title {
		text-align: center;
	}
	.main_activity .main_col .row .right_col .color_bar {
		width: 50% !important;
		margin-left: 25%;
	}
	.main_activity .main_col .row .right_col .color_bar span {
		width: 50% !important;
	}
	
	.home_contact_box {
		padding: 0em 1em !important;
	}
	
	.main_info .col-sm-2 {
		margin-top: 3em;
	}
	
	.home_aboutus_container {
		height: auto;
	}
	.home_aboutus_row .col-sm-4 {
		height: auto;
		min-height: 50%;
	}
	.home_aboutus_container .first_row .right_col {
		border: 0;
		border-radius: 0;
	}
	.home_aboutus_container .first_row .left_col img {
		height: 25em !important;
		border-radius: 0;
	}
	.home_aboutus_container .second_row .left_col {
		border: 0;
		border-top: 0.1em solid #BBBBBB;
		margin-top: 2em !important;
		border-radius: 0;
	}
	.home_aboutus_container .first_row .right_col .title, .home_aboutus_container .second_row .left_col .title {
		text-align: center !important;
		margin-top: 1em !important;
	}
	.home_aboutus_container .first_row .right_col .text, .home_aboutus_container .second_row .left_col .text {
		text-align: justify !important;
	}
	.home_aboutus_container .second_row .right_col img {
		height: 25em !important;
		margin-top: 1em;
		border-radius: 0;
	}
	
	#filter_form {
		margin-top: -90em !important;
	}
	.filter_sort_menu form {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.filter_sort_menu form .br {
		display: none !important;
	}
	.filter_sort_menu form .form-group {
		margin-bottom: 0;
	}
	.filter_sort_menu form .property_id_group {
		margin-top: 2em;
	}
	.filter_sort_menu form .form-group div {
		margin-bottom: 15px;
	}
	.filter_sort_menu form .form-group .col-sm-6 {
		flex-direction: column;
	}
	.filter_sort_menu form .form-group label {
		margin-bottom: 0;
		margin-top: 1em;
	}
	
	.property_container .pages_row {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.property_container .pages_row_second {
		flex-direction: column-reverse;
	}
	.property_container .pages_row .col_right {
		margin-top: 2em;
	}
	.property_container .pages_row_second .col_right {
		margin-top: 0em;
		margin-bottom: 2em;
	}
	
	.company_structure_middle_row .col-sm-8 .row .col-sm-4 {
		padding: 0 !important;
	}
	
	.property_middle_row .col-sm-8 .row .col-sm-offset-0 {
		padding: 0 !important;
		margin-top: 3em;
	}
	
	.property_title .col-sm-offset-2 {
		text-align: center !important;
	}
	.property_title .col_right {
		margin-top: 3em;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.property_title .col_right .tags {
		margin-top: 0.5em;
	}
	
	.property_address_container {
		text-align: center;
	}
	.property_address_container .col-sm-4 {
		padding: 0;
	}
	.property_address_container .col-sm-4 .container .second_row p {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0em 0.5em 0em 0.5em;
	}
	.property_address_container .col-sm-4 .container .share_row {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.agent_details_container {
		margin-top: 0 !important;
	}
	.property_details_container {
		margin-top: 5em !important;
	}
	.property_details_container .second_row .right_col {
		margin-top: 1em;
		padding: 0em 1em 0em 1em;
	}
	.property_details_container .form_row {
		padding: 0em 1em 0em 1em !important;
	}
	.property_details_container .form_row form .form-group label {
		width: 100%;
		padding: 0.5em 0em 0.5em 0em;
		margin: 0;
		border-radius: 0;
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
	}
	.property_details_container .form_row form .form-group .col-sm-8 input {
		border-radius: 0;
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px;
	}
	
	.agent_profile_container .left_col {
		text-align: center !important;
		padding: 0em 1em !important;
	}
	.agent_profile_container .right_col {
		padding: 0em 1em !important;
		text-align: center;
		margin-top: 1em;
	}
	.agent_profile_container .right_col .agent_statistics {
		justify-content: space-between !important;
	}
	.agent_profile_container .right_col .agent_statistics .right_stats {
		position: relative !important;
	}
	
	#myModalCookies {
		width: 100%;
		left: 0;
		height: 40%;
		top: 60%;
	}
	
	#global_contact_general {
		right: 0.5em;
	}
	#global_email_icon, #global_whatsapp_icon, #global_phone_icon {
		right: 0.55em;
	}
	
	.a_panel_nav {
		display: none;
	}
	
	.a_panel_main_page_container {
		padding: 0 !important;
	}
	
	.social_media {
		display: none;
	}
	
	.company_structure_middle_row .col-sm-4 {
		margin-top: 2em;
	}
	
	.contact_info_row_second .col-sm-4, .contact_info_row_second .col-sm-12 {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.contact_info_row_second .col-sm-12 {
		padding: 2em 1em 2em 1em;
	}
	.contact_info_middle {
		border-top: 0.1em solid gray;
		border-bottom: 0.1em solid gray;
	}
	
	.aboutus_main_row_first .aboutus_main_col_right {
		border-top: 0.1em solid gray;
	}
	
	.firm_main_container .col_right {
		margin-top: 3em;
	}
	
	.services_info_nav {
		flex-direction: column;
	}
	.services_info_nav p {
		border-left: 0;
		border-top: 0.1em solid black;
	}
	#mechanics_tab img {
		rotate: -90deg;
	}
	.mechanics_dropdown_content {
		width: 6em;
		margin-top: -4.1em;
		margin-left: 12em;
	}
	.mechanics_dropdown_content p {
		width: 6em;
		border-left: 0.1em solid black !important;
	}
	.services_info_right .title {
		margin-top: 3em !important;
	}
	
	footer {
		height: 25em;
	}
	#footer_anpc_sol_img {
		margin-top: 1em;
	}
	.footer_policies p {
		margin-left: 1em !important;
	}
}

/* TABLET & LAPTOP (small) & LAPTOP (big) & PC */
@media only screen and (min-width: 768px) {	
	.mobile_header_nav_row {
		display: none;
	}
	
	#global_contact_general {
		margin-bottom: 0.5em;
		right: 1em;
	}
	#global_email_icon, #global_whatsapp_icon, #global_phone_icon {
		margin-bottom: 0.5em;
		right: 1.05em;
	}
	#global_contact_general:hover {
		width: 5em;
		height: 5em;
	}
	
	#filter_arrow {
		display: none;
	}
	
	.contact_info_row_second .col-sm-4, .contact_info_row_second .col-sm-12 {
		padding-top: 2em;
		transition: ease 0.5s;
	}
	.contact_info_row_second .col-sm-12 {
		min-height: 25em;
	}
	.contact_info_row_second .col-sm-4:hover {
		padding-top: 1em;
		color: white;
		background-color: red !important;
	}
	.contact_info_row_second .col-sm-12:hover {
		padding-top: 1em;
		color: white;
		background-color: dodgerblue !important;
	}
	.contact_info_middle {
		border-left: 0.1em solid gray;
		border-right: 0.1em solid gray;
	}
	
	.aboutus_main_row_first .aboutus_main_col_right {
		border-left: 0.1em solid gray;
	}
	.aboutus_main_row_second .aboutus_main_col_right {
		border-left: 0.1em solid gray;
	}
	
	.mechanics_dropdown:hover .mechanics_dropdown_content {
		display: block;
	}
	
	.footer_policies p {
		margin-left: 2em !important;
	}
}
