/*======================
   01. Google fonts
========================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Open+Sans:wght@400;600;700&family=PT+Sans:wght@400;700&family=PT+Serif:wght@400;700&display=swap");

/*======================
   02. Basic css
========================*/
* {
  scroll-behavior: smooth;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
:root {
  --gray: #3b3a3a;
  --black: #000;
  --red: #e62833;
}
body {
  font-size: 18px;
  line-height: 1.33;
  background-color: #fff;
  color: var(--gray);
  font-family: "PT Sans", sans-serif;
  /*font-family: 'Nunito', sans-serif;
   font-family: 'Open Sans', sans-serif;
   font-family: 'PT Serif', serif;*/
}

ol,
ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}
a.nostyle {
  color: unset;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* page loader  */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader3 {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--gray);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
  cursor: pointer;
  display: none;
}
.hamburger-menu span {
  background: #272626;
  height: 3px;
  display: block;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: auto;
}
.hamburger-menu .line-top {
  width: 20px;
}
.hamburger-menu .line-center {
  width: 24px;
}
.hamburger-menu .line-bottom {
  width: 10px;
}

/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  background-color: #fff;
  padding: 15px 0;
}

/*sticky START CSS*/
header.sticky {
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
.logo_sm {
  display: none;
}
.logo img {
  max-width: 178px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
header.sticky .logo img {
  max-width: 110px;
}
.top_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.h_contact a {
  font-size: 12px;
  line-height: 1.33;
  color: #3b3a3a;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.contact_link {
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}
.h_contact .h_icon1 {
  margin-left: 17px;
  padding-left: 21px;
  border-left: 1px solid var(--gray);
}
.h_input_box {
  position: relative;
  margin-left: 22px;
}
.h_input_box button {
  background-color: #eae8e8;
  border-radius: 22px;
  border: none;
  padding: 10px 30px 7px 55px;
}
.h_input_box img {
  position: absolute;
  left: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.h_input_box button {
  font-size: 12px;
  line-height: 1.33;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
}
.lang_box {
  margin-left: 30px;
}
.lang_box .nice-select {
  float: none;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  padding: 0 16px 0 0;
  border: none;
  height: auto;
  text-transform: uppercase;
}
.lang_box .nice-select:after {
  border-bottom: 2px solid var(--gray);
  border-right: 2px solid var(--gray);
  content: "";
  display: block;
  height: 7px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
}
.lang_box .nice-select .list {
  right: 0;
  left: auto;
  margin-top: 0;
}
#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 15px;
}
#menu li {
  padding-right: 30px;
}
#menu li:last-child {
  padding-right: 0;
}
#menu li a {
  font-size: 15px;
  color: var(--gary);
  line-height: 1.33;
  padding: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-family: "Nunito", sans-serif;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}
#menu > li > a.active,
#menu > li > a:hover,
.contact_link:hover,
.contact_link.active {
  border-color: var(--red);
  text-shadow: 0px 0px 1px var(--gray);
}

/*slider1 area*/
.slider1_wrapper {
  padding-top: 27px;
}
.slider1_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slider1_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slider1_img img {
  width: 85px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}
.slider1_content {
  padding-left: 20px;
}
.slider1_content1 a {
  max-width: 136px !important;
}
.slider1_content a {
  display: inline-block;
  font-size: 20px;
  color: var(--gary);
  font-weight: 400;
  font-family: "PT Serif", serif;
  line-height: 1.33;
  max-width: 196px;
  transition: 0.4s;
}
.slider1_content a:hover {
  color: rgba(59, 58, 58, 0.6);
  text-decoration: underline;
}
.slider1_content p {
  font-size: 15px;
  color: #a7a7a7;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
.slider1_box1 a {
  max-width: 95px;
}
/*hero area*/
.hero_werapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 605px;
  position: relative;
  z-index: 1;
  margin-top: 25px;
}
.hero_werapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-image: url(/assets/img/bg1.webp);
  top: 0;
  left: 0;
  z-index: -1;
  transition: background-size 1s;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

.hero_werapper:hover:before {
  background-size: 105% 105%;
}
.hero_werapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(59, 58, 58, 0.37);
  top: 0;
  left: 0;
  z-index: -1;
}
.hero_content_main {
  padding: 88px 0 22px;
  height: 605px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top_content h2 {
  font-size: 50px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-left: 42px;
}
.hero_form_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.hero_form {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  width: 100%;
  align-items: center;
}
.hreo_input_link label a {
  font-size: 16px;
  color: var(--gray);
  display: inline-block;
}
.hreo_input_link label a:hover {
  color: rgba(59, 58, 58, 0.6);
}
.hero_input label a,
.hero_input input,
.hero_input .nice-select {
  height: 35px;
  background-color: #fff;
  border: none;
  padding: 10px 21px;
  color: #3b3a3a;
  font-size: 16px;
  border-right: 1px solid var(--gray) !important;
  border-radius: 0;
  width: 100%;
}
.hero_input input::-webkit-input-placeholder {
  color: var(--gray);
}
.hero_input input::-moz-placeholder {
  color: var(--gray);
}
.hero_input input:-ms-input-placeholder {
  color: var(--gray);
}
.hero_input input::-ms-input-placeholder {
  color: var(--gray);
}
.hero_input input::placeholder {
  color: var(--gray);
}
.hero_input1 input::-webkit-input-placeholder {
  font-weight: 700;
  color: var(--gray);
}
.hero_input1 input::-moz-placeholder {
  font-weight: 700;
  color: var(--gray);
}
.hero_input1 input:-ms-input-placeholder {
  font-weight: 700;
  color: var(--gray);
}
.hero_input1 input::-ms-input-placeholder {
  font-weight: 700;
  color: var(--gray);
}
.hero_input1 input::placeholder {
  font-weight: 700;
  color: var(--gray);
}
.hero_input .nice-select {
  float: none;
  font-size: 16px;
  color: var(--gray);
  font-family: "PT Sans", sans-serif;
  border: none;
  height: 35px;
  padding-right: 60px;
  line-height: 1;
  width: 100%;
}
.hero_input .nice-select:after {
  border-color: var(--gray);
  height: 10px;
  width: 10px;
  right: 30px;
  border-width: 3px;
  margin-top: -6px;
}
.hero_input .nice-select .list {
  margin-top: 16px;
}
.hero_input .nice-select.open .list {
  width: 100%;
}
.hero_input2 {
  position: relative;
}
.hero_input2 img {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero_input2 input {
  padding-left: 50px;
}
.hero_form .hero_input_last input {
  border-right: none !important;
}
.hero_frm_btn button {
  padding: 25px 85px;
  background-color: #757575;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  border: none;
  height: 65px;
  margin-left: 5px;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #757575;
  height: 100%;
}
.hero_frm_btn button:hover {
  background-color: transparent;
  color: #757575;
}
.chat_box_wrap {
  display: none;
}
.scroll_down_wrap {
  display: none;
}
/*banner area*/
.banner_wrapper {
  padding-top: 77px;
}

.banner_content {
  max-width: 463px;
  margin-left: auto;
  margin-right: auto;
}
.banner_content p {
  font-size: 24px;
  line-height: 1.33;
  color: var(--black);
  font-weight: 400;
  font-family: "PT Serif", serif;
}
/*nove area*/
.nove_wrapper {
  padding-top: 158px;
}
.nove_wrapper .title {
  padding-bottom: 40px;
}
.nove_img {
  overflow: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.nove_img img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.nove_img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.propied_box_wrapper .sm_bn {
  position: absolute;
  top: 78px;
  right: 0;
  right: 5px;
}
.sm_bn {
  position: absolute;
  top: 20px;
  right: 0;
}
.sm_bn p {
  padding: 15px 30px;
  background-color: #be9129;
  border-radius: 40px 0 0px 40px;
  display: inline-block;
  font-family: "PT Serif", serif;
  font-weight: 700;
  color: #fff;
}
.nove_content {
  padding-left: 16px;
  height: 400px;
}
.nove_box {
}
.nove_text {
  height: 100%;
  padding-top: 20px;
  max-width: 361px;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
}
.nove_text h4 {
  font-size: 14px;
  color: var(--black);
  font-weight: 700;
  font-family: "PT Serif", serif;
  line-height: 1.33;
}
.nove_content h2 {
  font-size: 30px;
  color: var(--balck);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-top: 6px;
  padding-bottom: 20px;
  line-height: 1.33;
  max-width: 345px;
}
.nove_content p {
  font-size: 18px;
  color: var(--black);
  line-height: 1.44;
  font-weight: 400;
}
.nove_content .pl {
  font-weight: 700;
}
.nove_btn {
  padding-top: 20px;
}
.nove_btn a {
  font-size: 16px;
  color: var(--red);
  line-height: 1.33;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: 600;
  margin-right: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  font-family: "Nunito", sans-serif;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
.nove_btn a::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--black);
  right: -30px;
  top: 0;
}
.nove_btn a:hover {
  border-color: var(--red);
}
.nove_btn a:last-child::before {
  display: none;
}
.nove_btn a:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
  color: var(--black);
  margin-left: 30px;
}
.nove_btn a:last-child:hover {
  border-color: var(--black);
}
.title {
  font-size: 55px;
  color: var(--black);
  font-family: "PT Serif", serif;
  font-weight: 400;
  line-height: 1.33;
}
.nove_main_btn {
  padding-top: 207px;
  text-align: center;
}
.button {
  max-width: 340px;
  padding: 25px 40px 20px;
  color: var(--black);
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  border: 1px solid var(--black);
  width: 100%;
  display: inline-block;
  text-align: center;
  line-height: 1.35;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-transform: uppercase;
  font-size: 14px;
}
.button:hover {
  color: var(--red);
  border-color: var(--red);
}
.nove_slider .owl-nav button {
  background-color: transparent;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.21) !important;
  display: inline-block;
}
.nove_slider .owl-nav button span {
  font-size: 34px;
  color: rgba(0, 0, 0, 0.21);
  line-height: 0.9;
}
.nove_slider .owl-nav button.owl-prev {
  position: absolute;
  left: -65px;
  top: 179px;
}
.nove_slider .owl-nav button.owl-next {
  position: absolute;
  right: -65px;
  top: 179px;
}

/*especial area*/
.especial_wrapper {
  padding-top: 140px;
}
.especial_wrapper .title {
  padding-bottom: 40px;
}
.especial_box {
  position: relative;
  z-index: 2;
}
.especial_box a {
  position: absolute;
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding: 32px 50px;
  width: 100%;
}
.especial_box a img {
  max-width: 51px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  opacity: 0;
  right: 0px;
  bottom: 50%;
  transform: translateY(50%);
}
.especial_box a span{
  position: relative;
  display: block;
}
.especial_box1 a img {
  right: -40px;
}
.especial_box2 a {
  bottom: 117px !important;
}
.especial_box2 a img {
  right: -85px;
}
.especial_box3 a img {
  right: -80px;
}
.especial_box a:hover img {
  opacity: 1;
}
.especial_img {
  position: relative;
}
.especial_img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: rgba(112, 112, 112, 0.45);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/*dest area*/
.dest_wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 701px;
  position: relative;
  margin-top: 218px;
  z-index: 1;
}
.dest_wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: 100% 100%;
  background-image: url(/assets/img/MP-Home_Premium.jpg);
  z-index: -1;
  transition: background-size 1s;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}
.dest_wrapper:hover:before {
  background-size: 108% 108%;
}
.dest_wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(59, 58, 58, 0.37);
  top: 0;
  left: 0;
  z-index: -1;
}
.dest_wrapper .sm_bn {
  position: absolute;
  left: 0;
  top: 34px;
}
.dest_wrapper .sm_bn p {
  max-width: 217px;
  text-align: right;
  border-radius: 0 40px 40px 0;
  width: 100%;
}
.dest_content {
  padding-left: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 55px;
  width: 100%;
  height: 701px;
}
.dest_content h2 {
  font-family: "PT Serif", serif;
  font-size: 60px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  max-width: 569px;
}
.dest_content p {
  color: #fff;
  max-width: 260px;
  padding-top: 15px;
  padding-bottom: 20px;
}
.dest_content a img {
  transition: 0.4s;
}
.dest_content a:hover img {
  opacity: 0.7;
}

/*ayud area*/
.ayud_wrapper {
  padding-top: 220px;
}
.ayud_box {
  position: relative;
}
.ayud_img img {
  height: 684px;
}
.ayud_img1 {
  position: relative;
}
.ayud_img1::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.ay_sm_img {
  display: none;
}
.ayud_content {
  position: absolute;
  top: 280px;
  left: 108px;
}
.ayud_content h3 {
  font-family: "PT Serif", serif;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  max-width: 303px;
}
.ayud_content a {
  padding-top: 35px;
  display: inline-block;
}
.ayud_content a img {
  transition: 0.4s;
}
.ayud_content a:hover img {
  opacity: 0.5;
}
.ayud_input button img {
  transition: 0.4s;
}
.ayud_input button:hover img {
  opacity: 0.5;
}
.ayud_content1 {
  top: 125px;
  left: 120px;
}
.ayud_content1 h3 {
  color: var(--black);
}
.ayud_box1 .ayud_img1 img {
  height: 370px;
}
.ayud_box1 .ayud_img1::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.ayud_box2.ayud_img1::before {
  display: none;
}
.ayud_content3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 85px;
  left: 110px;
}
.ayud_right_content {
  padding-top: 50px;
}
.ayud_content3 h3 {
  max-width: 280px;
}
.ayud_content3 p {
  max-width: 480px;
  color: #fff;
  padding-bottom: 30px;
}
.ayud_input input {
  width: 337px;
  height: 45px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  margin-right: 80px;
  color: #fff;
}
.ayud_input button {
  background-color: transparent;
  border: none;
}
.ayud_input input::-webkit-input-placeholder {
  color: #fff;
}
.ayud_input input::-moz-placeholder {
  color: #fff;
}
.ayud_input input:-ms-input-placeholder {
  color: #fff;
}
.ayud_input input::-ms-input-placeholder {
  color: #fff;
}
.ayud_input input::placeholder {
  color: #fff;
}
/*opinan area*/
.opinan_wrapper {
  padding-top: 170px;
}
.title_bg {
  font-size: 60px;
  line-height: 1.3;
  color: var(--black);
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.opinan_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 70px;
}
.opinan_heading h2 {
  max-width: 570px;
}
.opinan_himg {
  padding-right: 338px;
}
.opinan_cont1 p {
  max-width: 300px;
}
.opinan_cont1 a {
  display: inline-block;
  color: #707070;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding-top: 10px;
}
.opinan_cont1 a:hover {
  border-color: #707070;
}
.opinan_cont2 {
  padding-top: 45px;
}
.opinan_cont2 h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray);
}
.opinan_cont2 p {
  font-size: 16px;
  color: #707070;
  font-family: "Open Sans", sans-serif;
  padding-top: 6px;
}
.op_star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
}
.op_star a {
  display: inline-block;
  margin-right: 10px;
}
.op_star a:last-child {
  margin-right: 0;
}
.op_g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 35px;
}
.op_g p {
  font-size: 16px;
  padding-right: 40px;
}
.op_g img {
  max-width: 21px;
}
.opinan_slider .owl-nav button {
  background-color: transparent;
  padding: 5px;
}
.opinan_slider .owl-nav button.owl-prev {
  position: absolute;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.opinan_slider .owl-nav button.owl-next {
  position: absolute;
  right: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.opinan_slider button.owl-next.disabled,
.opinan_slider button.owl-prev.disabled {
  display: none;
}
.opinan_btn {
  padding-top: 140px;
  text-align: center;
}
/*service area*/
.service_wrapper {
  padding-top: 215px;
}
.service_content_wrap {
  position: relative;
}
.service_img {
  position: relative;
}
.se_sm_img {
  display: none;
}
.service_img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.service_content {
  color: #fff;
  position: absolute;
  left: 110px;
  top: 145px;
}
.service_content h2 {
  max-width: 530px;
  color: #fff;
}
.service_content p {
  max-width: 450px;
  padding-top: 20px;
}
.service_content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin-top: 70px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}
.service_content a img {
  transition: 0.4s;
}
.service_content a:hover img {
  opacity: 0.6;
}
.service_content a span {
  padding-left: 40px;
}
/*actula area*/
.actual_wrapper {
  padding-top: 170px;
}
.actual_heading {
  padding-bottom: 50px;
}
.actula_bg_content h2 {
  font-size: 36px;
  color: var(--black);
  font-family: "PT Serif", serif;
  font-weight: 400;
  padding-top: 30px;
}
.actula_bg_content p {
  padding-top: 30px;
}
.actula_bg_content a {
  font-weight: 700;
  color: var(--gray);
  padding-top: 5px;
}
.actual_sm_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.actula_sm_img {
  padding-right: 16px;
}
.actula_sm_img img {
  height: 300px;
  max-width: 317px;
  -o-object-fit: cover;
  object-fit: cover;
}
.actual_content h3 {
  font-size: 26px;
  color: var(--black);
  font-family: "PT Serif", serif;
  font-weight: 400;
  padding-bottom: 35px;
}
.actual_content p {
  max-width: 258px;
}
.actual_content a {
  font-weight: 700;
  color: var(--gray);
}
.actual_row {
  margin-right: -10px;
  margin-left: -10px;
}
.actual_row > div {
  padding-left: 10px;
  padding-right: 10px;
}
.actula_btn {
  margin-top: 155px;
  text-align: center;
  padding-bottom: 270px;
}
.actula_btn a {
  font-weight: 700;
}
/*porque area*/
.porque_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 474px;
  position: relative;
}
.porque_wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  z-index: 0;
}
.porque_wrapper1 {
  background-color: #eae8e8;
  padding-top: 85px;
  padding-bottom: 125px;
}
.porque_box p {
  padding-top: 35px;
  max-width: 352px;
}
.porque_box h2 p {
  max-width: 460px;

}

.porque_sm_content p {
  max-width: 425px;
}
.porque_sm_content .button {
  font-weight: 700;
  margin-top: 50px;
}
/*vivienda area*/
.vivienda_wrapper {
  padding: 80px 0 95px;
}
.vivienda_heading h3 {
  font-size: 30px;
  line-height: 1.3;
  color: var(--black);
  font-family: "PT Serif", serif;
  font-weight: 400;
  max-width: 524px;
}
.vivienda_heading p {
  color: var(--black);
  padding-top: 28px;
  max-width: 550px;
  padding-bottom: 5px;
}
.vivienda_box {
  margin-top: 50px;
}
.vivienda_box p {
  padding-top: 25px;
  max-width: 196px;
  position: relative;
}
.vivienda_box p::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 193px;
  background-color: #707070;
  top: 0;
  left: 0;
}
.vivienda_box1 p {
  max-width: 230px;
}
.vivienda_box2 p {
  max-width: 250px;
}
/*banner 2 area*/
.banner_wrapper2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 400px;
}
/*inmob area*/
.inmob_wrapper {
  padding: 55px 0 180px;
}
.inmob_text h3 {
  font-size: 30px;
  line-height: 1.33;
  color: var(--black);
  font-weight: 400;
  padding-bottom: 5px;
  font-family: "PT Serif", serif;
}
.inmob_text p {
  color: var(--black);
  padding-top: 30px;
  max-width: 647px;
}

.inmob_text h3 p {
  padding-top: initial;
}
/*hablamos area*/
.hablamos_wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 707px;
  padding-top: 155px;
}
.hablamos_wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.hablamos_wrapper .title_bg {
  color: #fff;
}
.hablamos_content p {
  color: #fff;
  max-width: 387px;
  padding-bottom: 65px;
}
.hablamos_content .button {
  color: #fff;
  border-color: #fff;
}

/*landing b area*/
.pro2_hero_wrapper {
  padding-top: 75px;
}
.pro2_heding h2 {
  font-size: 75px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 30px;
}
.pro2Heding_content p {
  padding-top: 25px;
  max-width: 646px;
}
.pro2_hero_right_cont h4 {
  font-size: 21px;
  font-weight: 400;
  color: var(--gray);
  font-family: "PT Serif", serif;
  padding-top: 25px;
  max-width: 317px;
  line-height: 1.28;
}
.pro2_hero_img {
  padding-top: 45px;
}
.pro2_hero_img .pr_sm1 {
  display: none;
}
.pro2Heding_content1 {
  padding-top: 55px;
}
.pro2_product_wrapper {
  margin-top: 15px;
}
.pro2_product_wrapper .pl span {
  font-weight: 400;
}
.pro2_product_wrapper .nove_content h2 {
  max-width: 356px;
}
.pro2_row {
  margin-left: -8px;
  margin-right: -8px;
}
.pro2_row > div {
  padding-left: 8px;
  padding-right: 8px;
}
.pro2_product_wrapper .nove_box {
  margin-top: 115px;
}
.pro2_product_btn {
  text-align: center;
  padding: 185px 0 165px;
}
.pro2_product_btn .button {
  max-width: 206px;
}
.pro2_slider_wrapper {
  padding-bottom: 85px;
}
.pro2_slider_heading {
  padding: 80px 0 55px;
  border-top: 1px solid var(--red);
}
.pro2_slider_heading h3 {
  font-size: 36px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
}
.pro2_item {
  position: relative;
}
.pro2_img {
  position: relative;
}
.pro2_img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.pro2_item_cont {
  position: absolute;
  top: 56.5%;
  left: 50px;
}
.pro2_item_cont h3 {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 278px;
  display: inline-block;
  transition: 0.4s;
}
.pro2_item_cont h3:hover {
  opacity: 0.6;
}
.pro2_contact_wrapper {
  padding-bottom: 218px;
}
.pro2_contact_heading {
  padding-top: 100px;
  border-top: 1px solid var(--red);
}
.pro2_contact_heading h2 {
  font-size: 45px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
}
.pro2_contact_heading p {
  font-family: "Open Sans", sans-serif;
  max-width: 637px;
  padding-top: 30px;
}
.frm_row {
  margin-left: -63px;
  margin-right: -63px;
}
.frm_row > div {
  padding-left: 63px;
  padding-right: 63px;
}
form.pro2_contact_form {
  padding-top: 55px;
}
.pro2_contact_form .input_box {
  padding-top: 40px;
}
.pro2_contact_form .input_box input,
.pro2_contact_form .input_box textarea {
  height: 60px;
  border: none;
  border-bottom: 1px solid #707070;
  width: 100%;
  padding: 25px 0;
  color: var(--gray);
}
.pro2_contact_form .input_box input::-webkit-input-placeholder,
.pro2_contact_form .input_box textarea::-webkit-input-placeholder {
  font-size: 18px;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .input_box input::-moz-placeholder,
.pro2_contact_form .input_box textarea::-moz-placeholder {
  font-size: 18px;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .input_box input:-ms-input-placeholder,
.pro2_contact_form .input_box textarea:-ms-input-placeholder {
  font-size: 18px;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .input_box input::-ms-input-placeholder,
.pro2_contact_form .input_box textarea::-ms-input-placeholder {
  font-size: 18px;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .input_box input::placeholder,
.pro2_contact_form .input_box textarea::placeholder {
  font-size: 18px;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .textarea_box textarea {
  height: 180px;
  resize: none;
}
.pro2_contact_form .check_box {
  padding-top: 55px;
}
.pro2_contact_form .check_box input {
  display: none;
}
.pro2_contact_form .check_box label {
  font-size: 12px;
  line-height: 1;
  color: var(--gray);
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  cursor: pointer;
  padding-left: 30px;
  font-family: "Open Sans", sans-serif;
}
.pro2_contact_form .check_box label::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  border: 1px solid #707070;
  left: 0;
  top: -1px;
}
.pro2_contact_form .check_box input:checked + label::after {
  position: absolute;
  content: "";
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  left: 3px;
  top: 2px;
  height: 4px;
  width: 8px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.pro2_contact_form .check_box label span {
  text-decoration: underline;
}
.pro2_contact_wrapper .form_btn {
  text-align: right;
}
.pro2_contact_wrapper .form_btn .button {
  max-width: 206px;
  background-color: transparent;
}
.pro2_vivienda_wrapper,
.pro2_inmob_wrapper {
  background-color: #eae8e8;
}
.pro2_inmob_wrapper {
  padding: 85px 0 105px;
}

/*contact page area*/
.contact_main_heading {
  padding: 80px 0 100px;
}
.contaact_hero_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 533px;
  position: relative;
}
.contaact_hero_wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(59, 58, 58, 0.11);
  height: 100%;
  width: 100%;
}
.contact_text_wrapper {
  padding-top: 65px;
}
.contact_text {
  padding-top: 15px;
}
.contact_text p {
  max-width: 651px;
  padding-top: 15px;
}
.contact_form_wrapper {
  padding-top: 10px;
  padding-bottom: 166px;
}
.encontact_heading {
  padding-top: 110px;
  border-top: 1px solid var(--red);
}
.encontact_heading h1,
.contact_main_heading h1 {
  font-size: 42px;
  color: #000000;
  font-family: "PT Serif", serif;
  font-weight: 400;
}
.encontact_heading h3 {
  font-size: 30px;
  color: #000000;
  font-family: "PT Serif", serif;
  font-weight: 400;
  padding-top: 66px;
}
.en_contact_box a {
  font-size: 16px;
  color: var(--red);
  font-weight: 400;
  text-decoration: underline;
  display: inline-block;
  padding-top: 15px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.en_contact_box a:hover {
  color: var(--gray);
}
.en_contact_box_tel a {
  font-size: 21px;
  color: var(--gray);
  font-weight: 700;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.44;
}
.en_contact_box_tel a:hover {
  color: var(--red);
}
.en_contact_box_email a {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.en_contact_box_email a:hover {
  color: var(--red);
}
.contact_gallery {
  padding-top: 52px;
}
.con_row {
  margin-right: -2px;
  margin-left: -2px;
}
.con_row > div {
  padding-right: 2px;
  padding-left: 2px;
}
.contact_gal_img img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact_bgWrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 500px;
  border-bottom: 1px solid var(--red);
}
.encontact_heading1 {
  border-top: none;
}
.encontact_heading1 h3 {
  padding-top: 0;
}
.contact_bgWrapper1 {
  margin-bottom: 85px;
}

/*services area*/
.service_hero_wrapper::before {
  background-color: rgba(59, 58, 58, 0.34);
}
.service_text_wrapper {
  padding-top: 40px;
}
.service_left_text,
.service_right_text {
  padding-top: 25px;
}
.service_left_text p {
  padding-top: 15px;
}


.service_right_text h3 {
  font-size: 36px;
  color: var(--gray);
  font-family: "PT Serif", serif;
  font-weight: 400;
  max-width: 334px;
  margin-left: 69px;
  padding-bottom: 30px;
}
.red_border {
  position: relative;
}
.red_border::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 200px;
  background-color: var(--red);
  bottom: 0;
  left: 0;
}
.service_right_text h3.red_border::before {
  width: 223px;
}
.services_box {
  padding-top: 147px;
}
.services_content {
  padding-top: 50px;
}
.services_content h3 {
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
  color: var(--gray);
  max-width: 210px;
  line-height: 1.29;
  font-family: "PT Serif", serif;
  min-height: 91px;
}
.services_content p {
  padding-top: 26px;
  max-width: 318px;
}
.services_content1 h3 {
  font-style: italic;
}
.services_content2 h3 {
  max-width: 321px;
}
.services_box1,
.service_boxes_text {
  padding-top: 115px;
}
.service_boxes_text h4 {
  font-size: 24px;
  color: var(--gray);
  font-weight: 400;
  padding-bottom: 40px;
  max-width: 311px;
  font-family: "PT Serif", serif;
}
.service_boxes_text h4.red_border::before {
  width: 223px;
}
.services_banner {
  margin-top: 170px;
}
.las_ventajas_wrapper {
  padding: 125px 0;
  background-color: #f5f4f4;
}
.las_ventajs_content h3 {
  font-size: 45px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 632px;
  padding-bottom: 35px;
}
.las_ventajs_content p {
  padding-top: 20px;
  max-width: 651px;
}
.las_ventajs_content1 {
  padding-top: 60px;
}
.las_ventajs_content1 h4 {
  font-size: 30px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 25px;
}
.las_ventajs_content1 p {
  max-width: 651px;
}
.las_ventajs_box {
  padding-top: 98px;
}
.las_ventajs_img h4 {
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding: 20px 0;
}
.las_ventajs_img h4.red_border::before {
  width: 429px;
}
.las_ventajs_box p {
  max-width: 430px;
  padding-top: 40px;
}
.las_ventajs_box1 {
  padding-top: 55px;
}
.el_valor_wrapper {
  padding: 125px 0 150px;
}
.el_valor_content h2 {
  font-size: 45px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 475px;
  padding-bottom: 30px;
}
.el_valor_content p {
  max-width: 551px;
  padding-top: 25px;
}
.el_valor_content a {
  font-weight: 700;
  color: var(--gray);
  margin-top: 35px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}
.el_valor_content a:hover {
  color: var(--red);
}
.conoce_wrapper {
  background-color: #f5f4f4;
  padding: 100px 0 125px;
}
.conoce_content p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  padding-bottom: 30px;
  text-transform: uppercase;
}
.conoce_content h3 {
  font-size: 36px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 604px;
}
.conoce_button .button {
  max-width: 290px;
}
.services_banner2::before {
  display: none;
}
.services_banner2 {
  height: 500px;
}
.services_contact_wrapper {
  padding-bottom: 85px;
}
.services_contact_wrapper .pro2_contact_heading {
  border-top: none;
  padding-top: 110px;
}

/*actualid page area*/
.actualid_main_heading {
  padding: 80px 0 35px;
}
.img_opacity {
  position: relative;
  z-index: 1;
}
.img_opacity::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(59, 58, 58, 0.49);
  z-index: 0;
}
.actualid_pro_img {
  position: relative;
  margin-top: 64px;
}
.actulid_pro_content {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.actulid_pro_content h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 334px;
}
.actual_p {
  padding-left: 30px;
  padding-top: 25px;
}
.actual_p p {
  max-width: 540px;
}
.actual_p a {
  font-size: 16px;
  font-weight: 700;
  color: #707070;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  margin-top: 20px;
}
.actual_p a:hover {
  color: var(--red);
}
.actualid_audio_heading h4 {
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 35px;
}
.actualid_audio_content {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 22px 28px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  bottom: 0;
  left: 0;
}
.actualid_audio_content img {
  max-width: 49px;
  cursor: pointer;
  transition: 0.4s;
}
.actualid_audio_content img:hover {
  opacity: 0.7;
}
.actualid_audio_content h4 {
  font-size: 36px;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
}
.actualid_audio_box1 {
  margin-top: 20px;
}
.destacodas_wrapper {
  padding-top: 90px;
}
.destacados_heading h3 {
  font-size: 24px;
  color: #000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 40px;
}
.destacados_contetn {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.destacados_contetn h3 a {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 220px;
  transition: 0.4s;
}
.destacados_contetn h3 a:hover {
  color: rgba(256, 256, 256, 0.7);
}
.actualid_card_wrapper {
  padding-top: 30px;
  padding-bottom: 165px;
}
.actualid_card {
  padding-top: 70px;
}
.actualid_card_content {
  padding-top: 25px;
  padding-left: 30px;
}
.actualid_card_content h3 {
  font-size: 24px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 294px;
  padding-bottom: 15px;
}
.actualid_card_content p {
  max-width: 357px;
  padding-bottom: 15px;
  min-height: 88px;
}
.actualid_card_content a {
  font-size: 16px;
  font-weight: 700;
  color: #707070;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}
.actualid_card_content a:hover {
  color: var(--red);
}
.actualid_card_content1 h3 {
  max-width: 100%;
}
.actualid_card_img img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.act_row {
  margin-left: -7px;
  margin-right: -7px;
}
.act_row > div {
  padding-left: 7px;
  padding-right: 7px;
}

/*actualidad noticia page*/
.actualid_notica_heading {
  padding: 0;
}
.actualid_notica_heading h1 {
  max-width: 693px;
  padding: 65px 0 25px;
}
.page_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_pagination li {
  position: relative;
  padding-right: 22px;
  margin-right: 12px;
}
.page_pagination li::before {
  position: absolute;
  content: ">";
  top: 1px;
  right: 0;
  color: var(--gray);
  line-height: 1.49;
}
.page_pagination li:last-child::before {
  display: none;
}
.page_pagination li a {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.page_pagination li a:hover,
.page_pagination li a.active {
  color: var(--red);
}
.actualid_main_img {
  margin-top: 10px;
}
.noticia_wrapper {
  padding-top: 65px;
}
.noticia_left_content p {
  padding-top: 20px;
  max-width: 650px;
}
.noticia_right_content h4 {
  color: #000000;
  font-size: 21px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 317px;
  padding-top: 20px;
}
.noticia_social {
  padding-top: 70px;
}
.noticia_social p {
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
}
.noticia_social .footer_social {
  margin-top: 15px;
}
.page_pagination_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 125px;
  padding-bottom: 65px;
  border-bottom: 1px solid #707070;
}
.left_page {
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.4s;
}
.left_page:hover {
  opacity: 0.6;
  color: var(--gray);
}
.left_page span {
  font-weight: 16px;
}
.left_page img {
  margin-right: 15px;
}
.right_page img {
  margin-right: 0;
  margin-left: 15px;
}
.actualid_notice_card_wrapper {
  padding-top: 170px;
  padding-bottom: 245px;
}
.act_notice_h h3 {
  font-size: 30px;
  color: #000000;
  font-weight: 400;
  font-family: "PT Serif", serif;
}
.actualid_notice_card_wrapper .actualid_card,
.actualid_notice_card_wrapper .actualid_audio_box {
  margin-top: 60px;
  padding-top: 0;
}
.actualid_notice_card_wrapper .actualid_card > img,
.actualid_notice_card_wrapper .actualid_audio_box > img {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.asn_sm1 {
  display: none;
}
.noticia_right_content .p2 {
  display: none;
}

/*nostros page area*/
.nostros_main_heading {
  padding: 80px 0 45px;
}
.nostros_main_heading h2 {
  max-width: 693px;
}
.nostros_Box_wrapper {
  padding-top: 180px;
  padding-bottom: 250px;
}
.nostros_box_heading h3 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  font-family: "PT Serif", serif;
}
.nostros_box1 {
  padding-top: 80px !important;
}
.nostros_content h3 {
  font-size: 36px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-top: 50px;
}
.nostros_content h4 {
  font-size: 24px;
  color: var(--gray);
  font-weight: 400;
  max-width: 378px;
  padding: 20px 0 35px;
}
.nostros_content h4.red_border::before {
  width: 408px;
}
.nostros_content p {
  max-width: 426px;
  padding-top: 35px;
}
.nostros_box {
  padding-top: 115px;
}
.nostros_content1 h4 {
  max-width: 427px;
}
.nostros_banner_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 533px;
  position: relative;
}
.nostros_banner_wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(59, 58, 58, 0.11);
}
.nostros_equ_wrapper {
  padding-top: 104px;
}
.nostros_equ_wrapper h2 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  font-family: "PT Serif", serif;
}
.nostros_equ_wrapper p {
  padding-top: 35px;
  max-width: 636px;
}
.nostros_equ_wrapper .button {
  max-width: 269px;
  margin-top: 90px;
}
.nostros_qui_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 626px;
  margin-top: 160px;
}
.nostros_qui_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 626px;
}
.nostros_qui_box {
  max-width: 762px;
  font-weight: 100%;
  padding: 105px 0 70px 110px;
  background-color: #fff;
}
.nostros_qui_box h2 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  font-family: "PT Serif", serif;
  max-width: 475px;
}
.nostros_qui_box p {
  max-width: 540px;
  padding-top: 50px;
}
.nostros_qui_box .button {
  max-width: 269px;
  margin-top: 40px;
}
.nostros_com_img {
  position: relative;
  margin-left: 50px;
}
.nostros_com_img .nos9_img {
  position: absolute;
  left: 0;
  bottom: -168px;
}
.nostros_com_Wrapper {
  margin-top: 170px;
  margin-bottom: 283px;
}
.nostros_com_img {
  margin-top: 52px;
}
.nostros_com_content {
  margin-top: 52px;
}
.nostros_com_content h2 {
  font-size: 45px;
  font-weight: 400;
  color: #000000;
  font-family: "PT Serif", serif;
  max-width: 428px;
  padding-bottom: 10px;
}
.nostros_com_content p {
  padding-top: 25px;
  max-width: 535px;
}
.nostros_com_content .link {
  margin-top: 35px;
  color: var(--gray);
  font-size: 18px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  text-decoration: underline;
}
.nostros_com_content .link:hover {
  color: var(--red);
}
.nostros_com_content a img {
  margin-top: 50px;
}

/*nosotros equipo page area*/
.nostros_equipo_main_heading {
  padding: 20px 0 45px;
}
.nostros_equipo_main_heading h2 {
  max-width: 791px;
  padding-top: 40px;
}
.nostros_equi_text p {
  max-width: 683px;
}
.nostros_equi_box1 {
  padding-top: 115px !important;
}
.nostros_equi_box {
  padding-top: 200px;
}
.nosotros_equi_content {
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 25px;
}
.nosotros_equi_content h3 {
  font-size: 21px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  line-height: 1.34;
}
.nosotros_equi_content p {
  font-size: 16px;
  padding-top: 3px;
}
.nosotros_equi_content a {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  line-height: 1.44;
}
.nosotros_equi_content a:hover {
  color: var(--red);
}
.nostros_equi_contact {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nos_equi_row {
  margin-left: -7px;
  margin-right: -7px;
}
.nos_equi_row > div {
  padding-left: 7px;
  padding-right: 7px;
}
.nostros_equi_wrapper {
  margin-top: 340px;
  margin-bottom: 145px;
}
.nostros_equi_wrapper .nostros_qui_box_wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/*nosotros tarbaja page area*/
.nostros_tarbaja_main_heading h2 {
  max-width: 423px;
}
.nostros_tarbaja_text_wrapper {
  padding-top: 55px;
}
.nostros_tarbaja_text_wrapper .service_right_text h3 {
  font-size: 24px;
  max-width: 317px;
  margin-left: 0;
}
.nostros_tarbaja_text_wrapper .service_left_text p {
  max-width: 651px;
}
.tarbaja_qui_wrapper {
  padding-top: 110px;
}
.tarbaja_qui_content h2 {
  font-size: 45px;
  color: var(--black);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 10px;
}
.tarbaja_qui_img,
.tarbaja_qui_content {
  padding-top: 40px;
}
.tarbaja_qui_content p {
  padding-top: 30px;
  max-width: 650px;
}
.tarbaja_qui_content1 {
  padding-top: 20px;
}
.tarbaja_contact_wrapper {
  padding-top: 40px;
}
.tarbaja_contact_wrapper .form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.tarbaja_contact_wrapper .form_btn .a1 {
  color: #a7a7a7;
  border-color: #a7a7a7;
}
.tarbaja_contact_wrapper .form_btn .a1:hover {
  color: var(--red);
  border-color: var(--red);
}
.tarbaja_contact_wrapper .button1 {
  margin-left: 64px;
  max-width: 269px !important;
}

/*vender tasacion page area*/
.tasacion_main_heading {
  padding: 80px 0 40px;
}
.tasacion_main_heading h1 {
  font-size: 45px;
  color: #000000;
  max-width: 754px;
}
.tasacion_text_wrapper h3 {
  max-width: 271px;
}
.tasacion_text_wrapper .service_right_text h3 {
  font-size: 36px;
  max-width: 271px;
}
.tasacion_quires_wrapper {
  padding-top: 10px;
}
.tasacion_quires_content {
  border-bottom: 1px solid var(--red);
  padding-bottom: 75px;
}
.tasacion_quires_content h2 {
  font-size: 40px;
  color: var(--black);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 34px;
  max-width: 533px;
  line-height: 1.35;
}
.tasacion_quires_content p {
  padding-top: 22px;
  max-width: 651px;
}
.tasacion_contact_wrapper {
  padding: 77px 0 102px;
}
.tasacion_form_h h2 {
  font-size: 30px;
  color: var(--black);
  font-weight: 400;
  max-width: 426px;
  font-family: "PT Serif", serif;
}
.tasacion_contact_wrapper .input_box1 {
  padding-top: 60px;
}
.tasacion_contact_wrapper .input_box1 label {
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  padding-bottom: 8px;
}
.tasacion_contact_wrapper .input_box1 .nice-select,
.tasacion_contact_wrapper .input_box1 input,
.tasacion_contact_wrapper .input_box1 textarea {
  height: 50px;
  resize: none;
}
.tasacion_contact_wrapper .input_box1.textarea_box label {
  padding-bottom: 56px;
}
.tasacion_contact_wrapper .input_box1 textarea {
  overflow: hidden;
}
.tasacion_contact_wrapper .input_box1 input {
  padding: 10px 0;
}
.tasacion_contact_wrapper .input_box1 input::-webkit-input-placeholder,
.tasacion_contact_wrapper .input_box1 textarea::-webkit-input-placeholder {
  color: #a7a7a7;
}
.tasacion_contact_wrapper .input_box1 input::-moz-placeholder,
.tasacion_contact_wrapper .input_box1 textarea::-moz-placeholder {
  color: #a7a7a7;
}
.tasacion_contact_wrapper .input_box1 input:-ms-input-placeholder,
.tasacion_contact_wrapper .input_box1 textarea:-ms-input-placeholder {
  color: #a7a7a7;
}
.tasacion_contact_wrapper .input_box1 input::-ms-input-placeholder,
.tasacion_contact_wrapper .input_box1 textarea::-ms-input-placeholder {
  color: #a7a7a7;
}
.tasacion_contact_wrapper .input_box1 input::placeholder,
.tasacion_contact_wrapper .input_box1 textarea::placeholder {
  color: #a7a7a7;
}
.tasacion_contact_wrapper .input_box1 .nice-select {
  float: none;
  line-height: 50px;
  border: none;
  border-bottom: 1px solid #707070;
  border-radius: 0px;
  padding-left: 0;
  font-size: 18px;
  color: #a7a7a7;
  font-weight: 400;
}
.tasacion_contact_wrapper .input_box1 .nice-select:after {
  border-color: var(--gray);
  height: 7px;
  width: 7px;
}
.tasacion_contact_wrapper .input_box1 .nice-select .list {
  width: 100%;
}
.form_heading {
  padding-top: 125px;
  font-size: 21px;
  font-weight: 400-;
  color: var(--gray);
  font-family: "PT Serif", serif;
  padding-bottom: 10px;
}
.tasacion_tam_wrapper {
  background-color: #f5f4f4;
  padding: 75px 0 140px;
}
.tasacion_tam_headimg h3 {
  font-size: 30px;
  color: #000000;
  max-width: 615px;
}
.tasacion_btn .button {
  max-width: 206px;
}
.tasacion_banner_wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 533px;
}
.tasacion_footer_wrapper2 {
  margin-top: 0 !important;
}

/*propiedades page area*/
.propied_pagination_wrapper {
  padding-top: 35px;
}
.propied_heading_wrapper {
  padding-top: 25px;
}
.propied_heading h1 {
  font-size: 45px;
  color: #272626;
  font-weight: 400;
  font-family: "PT Serif", serif;
}
.propied_heading p {
  max-width: 434px;
  padding-top: 20px;
}
.propied_select_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.propied_select .nice-select {
  float: none;
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid transparent;
  padding-left: 0;
  max-width: 175px;
}
.propied_select .nice-select span.current {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  width: 100%;
}
.nice-select:after {
  width: 8px;
  height: 8px;
  border-color: var(--gray);
}
.propied_serach .h_input_box {
  margin-left: 90px;
}
.propied_serach .h_input_box input {
  max-width: 283px;
  width: 100%;
  height: 44px;
  background-color: #eae8e8;
  border-radius: 0;
  padding-left: 75px;
}
.propied_serach .h_input_box input::-webkit-input-placeholder {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
}
.propied_serach .h_input_box input::-moz-placeholder {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
}
.propied_serach .h_input_box input:-ms-input-placeholder {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
}
.propied_serach .h_input_box input::-ms-input-placeholder {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
}
.propied_serach .h_input_box input::placeholder {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
}
.propied_row {
  margin-left: -5px;
  margin-right: -5px;
}
.propied_row > div {
  padding-left: 5px;
  padding-right: 5px;
}
.propied_box {
  padding-top: 117px;
}
.propied_box .nove_text .pl {
  font-weight: 400;
}
.propied_box1 {
  height: 100%;
  padding-top: 55px;
}
.propied_box h2 {
  max-width: 356px;
}
.propied_box_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--gray);
}
.propied_box_pagination li:first-child {
  /*margin-right: 40px;
	padding-right: 0;*/
}
.propied_box_pagination li:first-child img {
  margin-right: 40px;
  padding-right: 0;
}
.propied_box_pagination li:last-child {
  margin-left: 40px;
  padding-right: 0;
}
.propied_box_pagination li {
  padding-right: 15px;
}
.propied_box_pagination li a {
  font-weight: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: var(--gray);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.propied_box_pagination li a span {
  color: var(--gray) !important;
}
.propied_box_pagination li a:hover,
.propied_box_pagination li:hover .propied_box_pagination li a.active,
.propied_box_pagination li.active {
  color: var(--red);
  text-shadow: 0px 0px 1px var(--red);
}
.propied_banner_heading h2 {
  font-size: 45px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding: 58px 0 42px;
}
.propied_banner_box {
  position: relative;
}
.propied_banner_img {
  position: relative;
}
.propied_banner_img::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(112, 112, 112, 0.45);
  z-index: 0;
}
.propied_banner_content {
  position: absolute;
  left: 55px;
  bottom: 70px;
}
.propied_banner_content h3 {
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 204px;
}
.pro_sm1 {
  display: none;
}
/*comprar page area*/
.comprar_main_heading h1 {
  max-width: 693px;
  font-size: 45px;
  color: #272626;
}
.comprar_hero_wrapper::before {
  background-color: rgba(59, 58, 58, 0.34);
}
.comprar_text_wrapper .service_right_text h3 {
  font-size: 36px;
  max-width: 334px;
}
.comprar_sabes_wrapper {
  padding-bottom: 188px;
}
.comprar_sabes_content,
.comprar_sabes_img {
  padding-top: 150px;
}
.comprar_sabes_content h3 {
  font-size: 40px;
  color: #272626;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 430px;
  padding-bottom: 18px;
}
.comprar_sabes_content p {
  max-width: 651px;
  padding-top: 20px;
}
.comprar_como_wrapper {
  background-color: rgba(234, 232, 232, 0.46);
  padding: 125px 0 160px;
}
.comprar_como_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.comprar_como_heading h3 {
  font-size: 40px;
  color: #272626;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 110px;
}
.comprar_como_img h4 {
  display: none;
}
.comprar_como_content h4 {
  font-size: 24px;
  color: #000;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 191px;
  padding: 30px 0 18px;
}
.comprar_como_content p {
  max-width: 254px;
  padding-top: 53px;
}
.comprar_accordion_wrapper {
  padding: 125px 0 160px;
}
.accordion_heading {
  font-size: 40px;
  color: #272626;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 60px;
}
.accordion_box {
  border-bottom: 1px solid #707070;
}
.accordion_box button {
  display: block;
  font-size: 21px;
  color: var(--gray);
  font-weight: 400;
  padding: 30px 40px 30px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.accordion_box button::before {
  position: absolute;
  content: "";
  background-image: url(../img/pa9.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 7px;
  width: 10px;
  right: 21px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.accordion_box button[aria-expanded="true"] {
  color: var(--red);
}
.accordion_box button[aria-expanded="true"]::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion_box button.active,
.accordion_box button:hover {
  color: var(--red);
}
.accordion_box button:hover {
  text-decoration: none;
}
.accordion_box button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
}
.accordion_content {
  padding: 0 15px 25px 15px;
}
.comprar_banner_wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 635px;
}
.comprar_contact_wrapper {
  padding: 145px 0 185px;
}
/*vender page area*/
.vender_hero_wrapper::before {
  background-color: rgba(59, 58, 58, 0.34);
}
.vender_text_wrapper .service_right_text h3 {
  margin-top: 83px;
}
.vender_tu_wrapper {
  padding-top: 160px;
  padding-bottom: 145px;
}
.vender_main_tu_heading h2 {
  font-size: 40px;
  color: #000000;
  font-weight: 400;
  max-width: 430px;
  font-family: "PT Serif", serif;
  padding-bottom: 40px;
}
.vender_col {
  padding: 60px 15px 70px;
  position: relative;
}
.vender_col::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 94%;
  background-color: var(--red);
  bottom: 0;
  right: 0;
}
.vender_tu_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}
.vender_tu_heading h4,
.vender_tu_heading h3 {
  font-size: 30px;
  font-weight: 400;
  color: #000000;
  font-family: "PT Serif", serif;
}
.vender_tu_heading h4 {
  color: var(--red);
  padding-right: 50px;
}
.vender_tu_heading h3 {
  max-width: 443px;
}
.vender_tu_heading2 {
  display: none;
}
.vender_tu_heading h3 span {
  font-style: italic;
}
.vender_tu_p {
  margin-left: 75px;
}
.vender_tu_p p {
  padding-top: 20px;
  max-width: 651px;
}
.vender_tu_p a {
  font-size: 14px;
  color: var(--gray);
  font-weight: 700;
  display: inline-block;
  margin-top: 30px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: underline;
}
.vender_tu_p a:hover {
  color: var(--red);
}
.vender_quires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  margin-left: 58px;
}
.vender_quires_left {
  padding-right: 60px;
}
.vender_quires_left,
.vender_quires_right {
  padding-top: 40px;
}
.vender_quires_left h3 {
  font-size: 30px;
  font-weight: 400;
  color: #272626;
  font-family: "PT Serif", serif;
  padding-bottom: 40px;
}
.vender_quires_left p strong {
  text-decoration: underline;
}
.vender_sabes_wrapper {
  padding-top: 65px;
  padding-bottom: 155px;
  background-color: #f5f4f4;
}
.vender_sabes_text h3 {
  color: #272626;
  font-size: 40px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 430px;
}
.vender_sabes_text h4 {
  color: #272626;
  font-size: 30px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 430px;
  padding-top: 55px;
}
.vender_sabes_form p {
  padding-bottom: 25px;
}
.vender_sabes_form .ayud_input input {
  border-color: var(--gray);
  margin-right: 45px;
  color: var(--gray);
}
.vender_sabes_form .ayud_input input::-webkit-input-placeholder {
  color: #a7a7a7;
}
.vender_sabes_form .ayud_input input::-moz-placeholder {
  color: #a7a7a7;
}
.vender_sabes_form .ayud_input input:-ms-input-placeholder {
  color: #a7a7a7;
}
.vender_sabes_form .ayud_input input::-ms-input-placeholder {
  color: #a7a7a7;
}
.vender_sabes_form .ayud_input input::placeholder {
  color: #a7a7a7;
}
.vender_sabes_form .ayud_input button img {
  max-width: 51px;
}
.vender_es_wrapper {
  padding: 100px 0 170px;
}
.vender_es_text h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 30px;
}
.vender_es_text p {
  padding-top: 25px;
}
.vender_fallos_left_content h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 460px;
  padding-bottom: 30px;
}
.vender_fallos_left_content p {
 /*padding-top: 25px;*/
  max-width: 651px;
}
.vender_fallos_left_content .p1 {
  padding-top: 50px;
}
.vender_fallos_left_content .button {
  max-width: 206px;
  margin-top: 50px;
}
.vender_fallos_right_content {
  margin-left: 40px;
}
.vender_fallos_right_content h3 {
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  font-family: "PT Serif", serif;
  max-width: 380px;
  padding-bottom: 35px;
}
.vender_fallos_right_content h3.red_border::before {
  width: 233px;
}
.vender_fallos_right_content .h1 {
  padding-top: 40px;
}
.vender_banner_wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 635px;
  margin-top: 250px;
}
.vender_contact_wrapper {
  padding: 140px 0 235px;
}
.vender_contact_wrapper .pro2_contact_heading {
  padding-top: 0;
}
.vender_contact_wrapper .pro2_contact_heading p {
  max-width: 706px;
}

/*propodies ficha page area*/
.pro_ficha_hero_wrapper {
  padding-top: 25px;
}
.pro_ficha_hero_img {
  position: relative;
}

.pro_ficha_product {
  padding-bottom: 30px;
  padding-top: 25px;
}
.pro_ficha_product h2 {
  font-size: 18px;
  color: var(--gray);
  font-weight: 700;
  font-family: "PT Serif", serif;
  padding-bottom: 20px;
}
.pro_ficha_product h1 {
  font-size: 36px;
  color: var(--gray);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-bottom: 25px;
}
.pro_ficha_product_content {
  padding-top: 15px;
  border-top: 1px solid #707070;
}
.pro_ficha_product_content p {
  padding-top: 30px;
  max-width: 540px;
}
.pro_ficha_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 95px;
}
.pro_ficha_link a {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  margin-right: 115px;
  text-transform: uppercase;
}
.pro_ficha_link a:hover,
.pro_ficha_link a.active {
  color: var(--red);
}
.pro_ficha_link a:last-child {
  margin-right: 0;
}
.pro_ficha_link a img {
  margin-right: 15px;
}
.pro_ficha_product_details {
  padding-top: 85px;
}
.pro_ficha_product_details h3 {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
.pro_ficha_product_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.pro_ficha_product_box {
  width: 100%;
}
.ficha_product_detials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0 20px;
  border-bottom: 0.5px solid #d6d3d3;
  padding-left: 20px;
  width: 100%;
  height: 80px;
}
.ficha_product_content {
  padding-left: 60px;
}
.ficha_product_content p {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--gray);
  margin-top: 7px;
}
.ficha_product_content p span {
  font-weight: 400;
}
.pro_ficha_product_box1 .ficha_product_detials {
  padding-left: 70px;
}
.ficha_product_detials_last {
  border-width: 1px;
  border-color: #707070;
}
.propodie_ficha_box_wrapper {
  padding-top: 170px;
}
.ficha_row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.ficha_row > div {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.ficha_col1 {
  margin-top: -237px;
}
.ficha_map_wrapper {
  padding-top: 220px;
}
.ficha_map h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray);
  font-family: "Nunito", sans-serif;
  padding-bottom: 45px;
  text-transform: uppercase;
}
.ficha_map p {
  max-width: 446px;
  padding-top: 35px;
}
.ficha_social_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 130px;
  border-bottom: 1px solid #000000;
  padding-bottom: 40px;
}
.ficha_social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 35px;
  margin-right: 35px;
  border-right: 2px solid var(--gray);
}
.ficha_social a {
  display: inline-block;
  margin-right: 10px;
}
.ficha_social a:last-child {
  margin-right: 0;
}
.ficha_social a img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.4s;
}
.ficha_social a:hover img {
  opacity: 0.7;
}
.ficha_calculate a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.12;
}
.ficha_calculate a:hover span {
  opacity: 0.7;
}
.ficha_calculate a span {
  max-width: 120px;
  margin-left: 20px;
  display: inline-block;
  transition: 0.4s;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.ficha_contact_wrapper {
  padding-bottom: 165px;
}
.ficha_contact_wrapper .ficha_contact_heading {
  padding-top: 175px;
}
.ficha_contact_heading p {
  font-size: 18px;
  color: var(--gray);
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  padding-top: 65px;
  display: inline-block;
  border-bottom: 1px solid #707070;
}
.ficha_contact_wrapper form.pro2_contact_form {
  padding-top: 30px;
}
.ficha_contact_wrapper form.pro2_contact_form button {
  background-color: var(--gray) !important;
  color: #fff;
}
.ficha_contact_wrapper form.pro2_contact_form button:hover {
  background-color: var(--red) !important;
}
.fi_sm1 {
  display: none;
}
.fi_sm2 {
  display: none;
}
.h_2 {
  display: none;
}
.ficha_contact_heading .p1 {
  display: none;
}
/*footer area*/
.f_logo a {
  display: inline-block;
}
.f_logo a img {
  max-width: 200px;
}
.footer_text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  font-family: "Open Sans", sans-serif;
  padding-top: 25px;
}
.footer_text p {
  color: #707070;
  max-width: 263px;
  font-size: 14px;
  padding: 30px 0 45px;
}
.f_img {
  padding: 38px 0;
  position: relative;
}
.f_img::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 285px;
  background-color: #707070;
  top: 0;
  left: 0;
}
.f_img::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 285px;
  background-color: #707070;
  bottom: 0;
  left: 0;
}
.f_ring p {
  font-size: 16px;
  padding-top: 45px;
  max-width: 246px;
  padding-bottom: 10px;
}
.footer_list {
  padding-top: 86px;
}
.footer_list1 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 21px;
  border-bottom: 1px solid #707070;
}
.footer_list ul li a {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.footer_list ul li a:hover {
  color: var(--red);
}
.footer_list2 {
  padding: 40px 0 !important;
}
.footer_list2 li {
  margin-right: 50px;
}
.footer_list2 li a {
  font-weight: 400 !important;
}
.footer_list .footer_list3 li a {
  font-weight: 700 !important;
}
.footer_address_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_address {
  padding-top: 50px;
}
.footer_address h4 {
  font-weight: 700;
  margin-bottom: 30px;
  min-height: 28px;
}
.f_add_list {
  padding-bottom: 25px;
}
.f_add_list li,
.f_con_list li a {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.33;
}
.f_con_list li a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.f_con_list li a:hover {
  color: var(--red);
}
.f_con_list li:first-child a {
  font-weight: 700;
}
.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}
.footer_social li {
  margin-right: 15px;
}
.footer_social li:last-child {
  margin-right: 0;
}
.footer_social li a img {
  transition: 0.4s;
}
.footer_social li a:hover img {
  opacity: 0.7;
}
.footer_wrapper2 {
  background-color: #eae8e8;
  padding: 65px 0;
  margin-top: 55px;
}
.quires_heading h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--gray);
  max-width: 555px;
  font-family: "PT Serif", serif;
}
.f_input_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 55px;
}
.f_input_box input {
  height: 70px;
  background-color: transparent;
  max-width: 395px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #3b3a3a;
  margin-right: 35px;
  padding: 25px 0;
  color: var(--gray);
}
.f_input_box input::-webkit-input-placeholder {
  color: var(--gray);
}
.f_input_box input::-moz-placeholder {
  color: var(--gray);
}
.f_input_box input:-ms-input-placeholder {
  color: var(--gray);
}
.f_input_box input::-ms-input-placeholder {
  color: var(--gray);
}
.f_input_box input::placeholder {
  color: var(--gray);
}
.f_input_box button {
  border: none;
}
.footer_wrapper3 {
  padding: 35px 0 115px;
}
.footer_wrapper3 .brd {
  border-top: 1px solid #707070;
  padding-top: 35px;
}
.footer_select {
  margin-right: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.lang_box .nice-select {
  max-width: 80px;
  font-size: 14px;
  text-transform: inherit;
}
.fcookies ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fcookies ul li {
  position: relative;
  padding: 0 8px;
}
.fcookies ul li::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  background-color: #504d4f;
  border-radius: 50%;
  right: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0.1rem;
}
.fcookies ul li:last-child {
  padding-right: 0;
}
.fcookies ul li:first-child {
  padding-left: 0;
}
.fcookies ul li:last-child::before {
  display: none;
}
.fcookies ul li,
.fcookies ul li a {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  font-family: "Open Sans", sans-serif;
}
.fcookies ul li a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.fcookies ul li a:hover {
  color: var(--red);
}
/*return-to-top START CSS*/

.back-to-top {
  display: none;
  position: fixed;
  bottom: 95px;
  right: 10px;
  z-index: 1000;
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
}
.back_top_sm {
  display: none;
}
.nove_img img {
  height: 400px;
  object-fit: cover;
}
.stats-propierty span {
  display: block;
  margin-right: 5px;
}
.stats-propierty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.nove_wrapper .owl-carousel.nove_slider .owl-item {
  height: 780px;
  display: block;
}
.nove_wrapper .owl-carousel.nove_slider .item,
.nove_wrapper .owl-carousel.nove_slider .item .nove_box {
  height: 100%;
}
#mapa-propiedad {
  height: 500px;
}
.w-100 {
  width: 100%;
}
.destacados_img img {
  height: 345px;
  object-fit: cover;
}
.cargar-mas {
  float: right;
  margin-top: 10px;
}
.noticia_left_content {
  font-weight: 300;
}
.noticia_left_content h2 {
  font-family: "PT Serif", serif;
  margin-top: 25px;
}
.noticia_left_content h3 {
  font-family: "PT Serif", serif;
  margin-top: 25px;
}
.noticia_left_content a {
  text-decoration: underline;
  color: unset;
}
.noticia_left_content a:hover {
  opacity: 0.6;
  color: var(--gray);
}
.actualidad-category a {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: var(--red);
}
.noticia_left_content img {
  max-width: 100%;
}
.noticia_left_content p {
  max-width: 1100px;
}
.vender_tu_p ul {
  list-style: disc;
  padding: 10px 30px;
}
.vender_tu_p ul li {
  padding: 5px 0px;
}
span.anchor {
  position: absolute;
  display: block;
  margin-top: -100px;
}
.search_menu_row .search_menu_warp_color {
  display: flex;
  width: 100%;
  padding: 100px 120px;
  background-color: white;
  flex-direction: column;
  position: relative;
}
.search_menu_row .search_menu_warp {
  /*transition: max-height 1.6s ease;*/
  z-index: 9999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.search_menu_row:not(.active) .search_menu_warp_color {
  max-height: 0vh;
  overflow: hidden;
  padding: 0;
}

.search_menu_row.active .search_menu_warp_color {
  max-height: 100vh;
  /*overflow: auto;*/
}

.search_menu_row {
  opacity: 0;
  visibility: hidden;
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.61);
  z-index: 9998;
  transition: visibility 0.4s, opacity 0.4s ease;
}
.search_menu_row.active {
  opacity: 1;
  visibility: visible;
}
.search_menu_warp_color h4 {
  font-family: "PT Serif", serif;
  font-size: 37px;
  color: black;
}
.button.bg {
  text-transform: unset;
  background-color: var(--gray) !important;
  color: #fff;
}
.button.bg:hover {
  background-color: var(--red) !important;
  color: #fff;
  border-color: var(--red);
}

.button.bg.inverted {
  background-color: #fff !important;
  color: #bebebe;
  border-color: #bebebe;
}
.button.bg.inverted:hover {
  color: var(--red);
  border-color: var(--red);
}
.search_menu_warp input,
.search_menu_warp textarea {
  height: 60px;
  border: none;
  border-bottom: 1px solid #707070;
  width: 100%;
  padding: 25px 0;
  color: var(--gray);
  width: fit-content;
}
.search_menu_warp .nice-select {
  height: 60px;
  margin-left: 10px;
  font-size: 18px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #707070;
  width: 100%;
  padding: 9px 47px 10px 16px;
  color: var(--gray);
  width: fit-content;
  font-family: "PT Sans", sans-serif;
  color: #707070;
  margin-right: 10px;
}

.select-mulitple-custom .select2.select2-container {
  height: 60px;
  font-family: "PT Sans", sans-serif;
  color: #707070 !important;
  padding: 15px 0 5px;
  border-bottom: 1px solid #707070;
  width: 330px !important;
}
.select-mulitple-custom.search .select2.select2-container {
  width: 370px !important;
}
.select-mulitple-custom .select2-selection__rendered {
  font-family: "PT Sans", sans-serif;
  color: #707070 !important;
}
.select2-container {
  z-index: 9999;
}
.select-mulitple-custom .select2-container--default .select2-selection {
  border: none !important;
}
.select-mulitple-custom .select2-dropdown {
  border-top: 1px solid #aaa !important;
  border-radius: 4px !important;
  width: 330px !important;
}
.select-mulitple-custom
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field {
  border: none !important;
  border-bottom: 1px solid #f5a000 !important;
  padding-left: 27px;
}
.select-mulitple-custom .select2-search.select2-search--dropdown::after {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 10px;
  margin-top: 4px;
  color: #f7ae26;
}
.select-mulitple-custom .select2-results__option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.select-mulitple-custom .select2-results__option :hover,
.select-mulitple-custom .select2-results__option .focus,
.select-mulitple-custom .select2-results__option .selected.focus,
.select-mulitple-custom
  .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f6f6f6 !important;
  color: var(--thmColor) !important;
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection
  .select2-selection__arrow
  b {
  border-style: unset;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
  width: 8px;
  height: 8px;
  border-color: var(--gray);
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 13px;
  right: 19px;
  width: 20px;
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}
.select-mulitple-custom
  .select2-container--default.select2-container--open
  .select2-selection
  .select2-selection__arrow
  b {
  border-color: unset;
  border-width: unset;
  transform: rotate(225deg);
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection
  .select2-selection__choice {
  background-color: unset;
  border: unset;
  border-radius: unset;
  font-family: "PT Sans", sans-serif;
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection
  .select2-selection__choice__remove {
  border-right: none;
  display: flex;
}
.select-mulitple-custom
  .select2-container--default
  .select2-selection
  .select2-selection__choice__remove
  span {
  color: #bfbfbf;
  font-size: 24px;
  position: relative;
  margin-top: -4px;
}
.select-mulitple-custom .select2.select2-container .selection {
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.select-mulitple-custom:not(.search)
  .select2-selection.select2-selection::before {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
  width: 8px;
  height: 8px;
  border-color: var(--gray);
}
.select-mulitple-custom:not(.search)
  .select2.select2-container.select2-container--open
  .select2-selection::before {
  transform: rotate(225deg);
}
.select-mulitple-custom.search .select2-selection.select2-selection::before {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 10px;
  margin-top: 4px;
  color: #444;
}
.select-mulitple-custom:not(.search) .select2-selection.select2-selection {
  padding-right: 35px;
}
.select-mulitple-custom.search .select2-selection.select2-selection {
  padding-left: 35px;
  padding-right: unset;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar,
.select-mulitple-custom
  .select2.select2-container:not(.select2-container--open)
  .selection::-webkit-scrollbar,
.search_menu_row.active .search_menu_warp_color::-webkit-scrollbar {
  width: 6px;
}
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track,
.select-mulitple-custom
  .select2.select2-container:not(.select2-container--open)
  .selection::-webkit-scrollbar-track,
.search_menu_row.active .search_menu_warp_color::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb,
.select-mulitple-custom
  .select2.select2-container:not(.select2-container--open)
  .selection::-webkit-scrollbar-thumb,
.search_menu_row.active .search_menu_warp_color::-webkit-scrollbar-thumb {
  background: #888;
}
.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover,
.select-mulitple-custom
  .select2.select2-container:not(.select2-container--open)
  .selection::-webkit-scrollbar-thumb:hover,
.search_menu_row.active .search_menu_warp_color::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.select-mulitple-custom textarea {
  font-family: "PT Sans", sans-serif !important;
}
.select-mulitple-custom
  .select2-container
  .select2-search--inline
  .select2-search__field {
  height: 28px;
}
.gap-30 {
  gap: 30px;
}
.search_menu_warp .close_advanced {
  position: absolute;
  right: 0;
  margin-left: auto;
  margin-right: 145px;
  font-size: 22px;
  cursor: pointer;
}
.search_menu_warp .close_advanced img {
  width: 18px;
}
.select-mulitple-custom.extra .select2.select2-container {
  width: 250px !important;
}
.search_menu_warp .nice-select.open .list {
  z-index: 99999;
}
.no-results {
  font-family: "PT Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 92px 0px;
}
.no-results i {
  color: var(--red);
  font-size: 86px;
}
.no-results h2 {
  margin-top: 32px;
  font-size: 23px;
  font-family: "Nunito", sans-serif;
}

.no-results.small {
  font-family: "PT Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 25px 0px;
}
.no-results i {
  color: var(--red);
  font-size: 45px;
}
.no-results h2 {
  margin-top: 32px;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
}

.select-mulitple-custom.reverse
  .select2.select2-container:not(.select2-container--open)
  .selection {
  height: 50px;
  overflow: hidden;
  overflow-y: auto;
}
#mapa-busqueda {
  width: 100%;
  height: 600px;
}
.search-engine:not(.active),
.map-engine:not(.active) {
  flex: 0;
  overflow: hidden;
  padding-right: 0px;
  padding-left: 0px;
}
.search-engine,
.map-engine {
  max-height: 0;
  opacity: 0;

  transition: max-height 1.2s ease, opacity 1s, visibility 2s;
  visibility: hidden;
}
.search-engine.active,
.map-engine.active {
  visibility: visible;
  max-height: 3000px;
  opacity: 1;
}
.gm-style-iw-d {
  padding: 5px !important;
  max-height: unset !important;
}
.gm-style-iw {
  max-height: unset !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 0 !important;
  width: 365px;
}

.infoWindow-contenido {
  background-color: #fff;
}
.infoWindow-contenido img {
  width: 100%;
  object-fit: cover;
  max-height: 260px;
}

.infoWindow-contenido .informacion {
  font-family: "PT Sans", sans-serif;
  padding: 10px;
}
.infoWindow-contenido .map-h2 {
  font-size: 23px;
  color: var(--balck);
  font-weight: 400;
  font-family: "PT Serif", serif;
  padding-top: 6px;
  padding-bottom: 4px;
  line-height: 1.33;
  max-width: 345px;
}
.infoWindow-contenido .map-more {
  font-size: 16px;
  color: var(--red);
  line-height: 1.33;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: 600;
  margin-right: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  font-family: "Nunito", sans-serif;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
.infoWindow-contenido .text-center.mb-0 {
  border-top: 1px solid black;
}
.map-label-group,
.map-label-property-icon {
  font-size: 16px !important;
  background-color: white;
  color: black !important;
  border-radius: 50%;
  padding: 4px;
  height: 30px;
  display: flex;
  width: 30px;
  font-family: "PT Sans", serif !important;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  margin-bottom: 19px;
}
.map-label-property-icon {
  width: 32px;
}
.map-label-group-icon::after {
  font-family: "Font Awesome 5 Pro" !important;
  color: white !important;
  content: "\f6f1";
  position: relative;
  top: -6px;
}
.map-label-property-icon::after {
  color: white !important;
  content: "";
  position: relative;
  top: 8px;
  background-image: url(/assets/img/markers/marker.png);
  width: 30px;
  height: 29px;
  background-size: 24px 12px;
  background-repeat: no-repeat;
}
.gm-style-iw-tc {
  display: none;
}
.propodie_ficha_box_wrapper .ficha_row {
  max-height: 1315px;
  overflow: hidden;
  position: relative;
  transition: max-height 3.8s ease;
}

.propodie_ficha_box_wrapper .ficha_row.all {
  max-height: 160000px;
}
.propodie_ficha_box_wrapper .ficha_row:not(.all)::after {
  content: "";
  background: rgb(2, 0, 36);
  background: linear-gradient(
    180deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 0) 0%,
    rgb(0 0 0 / 55%) 100%
  );
  position: absolute;
  width: 100%;
  height: 374px;
  bottom: 0;
}
.propied_row .col-lg-4.col-sm-6 {
  padding-bottom: 55px;
}
.select-mulitple-custom.extra .select2.select2-container .selection {
  bottom: 0;
}
.propied_serach .h_input_box input[type="search"] {
  background-color: #eae8e8;
  border-radius: 22px;
  border: none;
  padding: 10px 26px 13px 63px;
}
.select-mulitple-custom.search.small .select2.select2-container {
  width: 285px !important;
  height: 40px;
  font-family: "PT Sans", sans-serif;
  color: #707070 !important;
  padding: 4px 0px 5px;
  border-bottom: unset;
  width: 260px !important;
  margin-left: 16px;
  margin-right: 16px;
}
.select-mulitple-custom.search.small .select2.select2-container::after {
  content: "";
  border-right: 1px solid var(--gray) !important;
  border-right: 1px solid var(--gray) !important;
  position: absolute;
  right: -15px;
  height: 92%;
  top: 3px;
}
.select-mulitple-custom.search.small .select2.select2-container .selection {
  bottom: unset;
  position: static;
}
.select-mulitple-custom.search.small
  .select2-container
  .select2-search--inline
  .select2-search__field {
  font-size: 17px;
  height: 24px;
}

.select-mulitple-custom.search.small
  .select2-selection.select2-selection::before {
  margin-top: 9px;
  font-size: 14px;
}
.select-mulitple-custom.search.small .select2-selection.select2-selection {
  position: absolute;
  bottom: 0;
  padding-bottom: 8px;
  font-size: 16px;
}
.mapas-contacto {
  height: 500px;
}

.dots-loader {
  width: 50px;
  height: 12px;
  background: radial-gradient(circle closest-side, #e22d2b 90%, #0000) 0% 50%,
    radial-gradient(circle closest-side, #e22d2b 90%, #0000) 50% 50%,
    radial-gradient(circle closest-side, #e22d2b 90%, #0000) 100% 50%;
  background-size: calc(100% / 3) 100%;
  background-repeat: no-repeat;
  animation: d7 1s infinite linear;
  position: relative;
  margin: auto;
  margin-top: 12px;
}
@keyframes d7 {
  33% {
    background-size: calc(100% / 3) 0%, calc(100% / 3) 100%, calc(100% / 3) 100%;
  }
  50% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 0%, calc(100% / 3) 100%;
  }
  66% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%, calc(100% / 3) 0%;
  }
}
.button[disabled="disabled"] {
  border: 1px solid #bdbdbd;
  color: #bdbdbd;
}
.form-control {
  border-radius: 0px;
}
.pro2_contact_form .check_box.error-mark label::before {
  border: 1px solid #e22d2b;
}
.bd-color {
  border-color: #e22d2b !important;
}
.policy_msg,
.newsletter_policy_msg {
  color: #e22d2b;
}
.sf-prem-bubble {
  right: 10px !important;
  bottom: 15px !important;
}
.grecaptcha-badge {
  bottom: 172px !important;
}
.good_msg,
.newsletter_good {
  background-color: green;
  color: white;
  padding: 12px;
  margin-top: 20px;
}
.error_msg,
.newsletter_bad {
  background-color: #e22d2b;
  color: white;
  padding: 12px;
  margin-top: 20px;
}
.bottom-line {
  border-bottom: 1px solid;
  padding-bottom: 20px;
}
.f_con_list_direction {
  margin-bottom: 20px;
}
.footer_address1 {
  margin-top: 58px;
}
.txt--rojo {
  color: #e22d2b;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.legal_info p {
  margin-top: 0;
  margin-bottom: 1rem;
}
form .check_box a {
  color: unset;
}
#open-advaned-search {
  border: none;
  background: unset;
  color: #3b3a3a;
  font-size: 15px;
}
.file_box input[type="file"] {
  display: none;
}
.file_box .button {
  cursor: pointer;
  display: inline-block;
}
.file_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#file-chosen {
  position: absolute;
  bottom: -35px;
}
.hero_mb_input .select-mulitple-custom.search.small .select2.select2-container {
  width: 100%;
  margin: 0;
  height: 49px;
}
.hero_mb_input
  .select-mulitple-custom.search.small
  .select2-selection.select2-selection {
  width: 100%;
  border-radius: 0;
  min-height: 100%;
  padding-top: 8px;
}
.hero_mb_input
  .select2-container--default
  .select2-selection
  .select2-selection__choice__remove {
  left: -28px;
  top: -12px;
}
#formulario-subscripcion.pro2_contact_form .check_box {
  padding-top: 20px;
}
.ficha_product_img img {
  max-height: 21px;
}
.tags_search_area {
  background-color: #eae8e8;
  font-size: 13px;
  color: #000;
  font-family: "Nunito", sans-serif;
  padding: 3px 10px;
  border-radius: 18px;
  cursor: pointer;
  display: block;
  height: fit-content;
  display: flex;
  gap: 5px;
}
.tags_search_area i {
  border-right: 1px solid white;
  position: relative;
  top: 1px;
  padding-right: 6px;
}
.search_menu_row .nice-select.open .list {
  overflow: auto;
  height: 250px;
  position: absolute !important;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #707070 !important;
  color: white !important;
  font-weight: 500 !important;
}
.select2-container--default .select2-results__option--selected {
  background-color: white !important;
  font-weight: 800 !important;
}
.select-mulitple-custom.single .select2.select2-container {
  width: 200px !important;
}
.hipoteca_wrp .modal-content {
  border-radius: 0px;
}
.hipoteca_wrp .modal-footer {
  flex-wrap: nowrap;
}
.hipoteca_wrp .modal-footer .button {
  padding: 10px 10px;
}
#pdcc-modal-bg #pdcc-modal-container {
  border-radius: 0px;
}
.footer_address_wrap {
  gap: 20px;
}
.opinan_cont1 br {
  display: block;
  margin: 10px 0;
  content: " ";
  line-height: 22px;
}
.opinan_cont1 p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  max-height: 200px;
  transition: max-height 2s ease;
}
.opinan_cont1.active p {
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  max-height: 1000px;
}
.landing .propied_box1 {
  position: relative;
}
.landing .propied_box1 .sm_bn {
  position: absolute;
  top: 75px;
  right: 0;
}
.landing .pro2_img img {
  height: 328px;
  object-fit: cover;
  object-position: left;
}
.pro2_hero_wrapper a {
  color: #3b3a3a;
  font-weight: 600;
  text-decoration: underline;
}
.pro2_hero_wrapper img {
  padding: 28px 0px;
}
.pro2_slider_wrapper.landing .pro2_item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.pro2_slider_wrapper.landing .pro2_item_cont {
  top: unset;
  left: unset;
  margin-left: 20px;
  margin-bottom: 20px;
  width: 85%;
}
.pro2_slider_wrapper.landing .pro2_item_cont h3 {
  max-width: unset;
}
.especial_box img {
  /*height: 520px;*/
  object-fit: cover;
}
.especial_img {
  width: 100%;
}
.especial_box {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}
.footer_social {
  gap: 12px;
}

.h_serach .h_input_box button,
.propied_serach .h_input_box button {
  transition: color 0.4s, background-color 0.3s;
}
.h_serach .h_input_box:hover button,
.propied_serach .h_input_box:hover button {
  color: white;
  background-color: #c2bdbd;
}
[effect] {
  opacity: 0;
  position: relative;
}
[effect][finished] {
  opacity: 1 !important;
  position: relative;
  transform: translateX(0px) !important;
  transform: translateY(0px) !important;
  transition: transform 0.5s, opacity 0.8s;
}
.remove-filter {
  text-align: center;
  width: 100%;
  display: block;
  padding: 15px 11px;
  color: #989898;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "Nunito", sans-serif;
  max-width: 340px;
  font-size: 16px;
  position: absolute;
}
.remove-filter:hover {
  color: #e22d2b;
  text-decoration: underline;
}
#search-online,
#search-online-mb {
  padding-left: 20px;
  width: unset;
  border-right: unset !important;
}
.search_online_wrp::before {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 15px;
  margin-top: 6px;
  color: #444;
  font-size: 17px;
}
.search_online_wrp {
  position: relative;
}
.search_display_wrp {
  position: absolute;
  background-color: #fff;
  padding: 0px;
  width: 100%;
  bottom: 0;
  z-index: 1000000;
}
.item_search_wrp,
.item_search_wrp_no_results {
  width: 100%;
  padding: 6px 7px;
  position: relative;
  border: 1px solid #c6c6c6;
  border-top: 0px;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.33;
  display: block;
  cursor: pointer;
}
.item_search_wrp.selected {
  color: red;
}
.item_search_type {
  margin-top: 6px;
  font-size: 15px;
  color: #6f6f6f;
  opacity: 0.6;
}
.item_search_type img {
  width: 12px;
  margin-right: 2px;
  filter: grayscale(1);
}
.item_search_resultados {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #6f6f6f;
  font-size: 14px;
}
.searchtag {
  list-style: none;
}
.searchtag[active="1"] .item_search_wrp {
  background-color: #f4f4f4;
}
.searchtag.flex {
  display: flex;
  align-items: center;
  gap: 5px;
}
#open-advaned-search-map.item_search_wrp {
  font-size: 16px;
  color: var(--black);
  border: 1px solid #c6c6c6;
  border-top: 0px;
  cursor: pointer;
}
.item_search_wrp i {
  margin-right: 10px;
}
.propodie_ficha_box_wrapper .propodie_ficha_box img {
  /*width: 100%;
  height: 100%;*/
  transform: scale(1);
  transition: height 0.6s, width 0.6s, transform 0.6s;
}
.propodie_ficha_box_wrapper .propodie_ficha_box:hover img {
  /* width: 120%;
  height: 120%;*/
  transform: scale(1.2);
}
.propodie_ficha_box_wrapper .col-lg-6.pt_15.overflow-hidden {
  max-height: 485px;
}
.search_online_wrp.loading::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 12px;
  width: 29px;
  height: 7.4px;
  background: radial-gradient(circle closest-side, #e62833 90%, #0000) 0% 50%,
    radial-gradient(circle closest-side, #e62833 90%, #0000) 50% 50%,
    radial-gradient(circle closest-side, #e62833 90%, #0000) 100% 50%;
  background-size: calc(100% / 3) 100%;
  background-repeat: no-repeat;
  animation: dots-zcf63l 1s infinite linear;
  right: 6px;
}

@keyframes dots-zcf63l {
  33% {
    background-size: calc(100% / 3) 0%, calc(100% / 3) 100%, calc(100% / 3) 100%;
  }

  50% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 0%, calc(100% / 3) 100%;
  }

  66% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%, calc(100% / 3) 0%;
  }
}
.hero_input.search_online_wrp,
.hero_mb_input.search_online_wrp {
  display: flex;
  width: 340px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  border-right: 1px solid var(--gray) !important;
  background-color: white;
}
.selected_values_banners {
  display: flex;
  align-items: center;
  height: 100%;
  margin: auto;
  margin-left: 45px;
  min-width: 1px;
  min-height: 1px;
  margin-right: 0px;
  flex-wrap: wrap;
}

.selected_values_banners span {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 6px;
  cursor: pointer;
}
.selected_values_banners span i {
  color: #bfbfbf;
  font-size: 24px;
  position: relative;
  margin-top: 1px;
}
.search_display_wrp ul {
  position: absolute;
  background-color: #fff;
  width: 100%;
  max-height: 392px;
  overflow: hidden;
  overflow-y: auto;
}

.search_display_wrp ul::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.search_display_wrp ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.search_display_wrp ul::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.search_display_wrp ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.hero_mb_input.search_online_wrp::before {
  margin-top: 14px;
}
.button.inverted {
  background-color: #000;
}
.filtros_flex_wrp {
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}
.search_online_wrp.advanced {
  border-right: 0px !important;
  border-bottom: 1px solid #707070;
  height: max-content;
}
.search_online_wrp.advanced:before {
  margin-top: 21px;
}
.search_menu_warp .search_online_wrp.advanced input#search-online {
  border-bottom: 0px;
  padding-left: 52px;
}
.mobile_footer_link {
  display: none;
}
.landing.pro2_product_wrapper .nove_box {
  margin-top: 70px;
}
.iframe_contato {
  width: 100%;
  height: 100%;
}
.mobile_see_more{
    display: none;
}
.kit_digital_wrp{
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 28px;
}