/********** Template CSS **********/
* {
	padding: 0;
	margin: 0;
	box-sizing:border-box;
}

.title-nuevo{
  line-height : 0;
  padding-bottom: 0.7em;
}

@media (max-width:500px){
  .title-nuevo {
    font-size: 25px;
  }
}
@media (max-width:380px){
  .title-nuevo {
    font-size: 20px;
  }
  .title-nuevo img{
    height: 90%;
  }
}

@media (max-width:350px){
  .title-nuevo {
    font-size: 18px;
  }
  .title-nuevo img{
    height: 50px;
  }
}



.sl-slider-wrapper {
  width: 800px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sl-slider {
  position: absolute;
  top: 0;
  left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sl-slide {
  z-index: 1;
}

/* The duplicate parts/slices */

.sl-content-slice {
  overflow: hidden;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
  width: 50%;
  height: 100%;
  top: -200px;
  -webkit-transform: translateX(0%) scale(1);
  -moz-transform: translateX(0%) scale(1);
  -o-transform: translateX(0%) scale(1);
  -ms-transform: translateX(0%) scale(1);
  transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
  left: -200px;
  padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
  left: 50%;
  padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
  position: absolute;
}

.sl-content {
  width: 100%;
  height: 100%;
  background: #fff;
}

/* Default styles for background colors */
.sl-slide-horizontal .sl-slide-inner {
  background: #000;
}

.sl-slide-vertical .sl-slide-inner {
  background: #000;
}

:root {
  --primary: #060c5c;
  --light: #F8F8F8;
  --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
  font-weight: 400 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #FFFFFF;
  background: var(--primary);
  border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 30px 0;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 500px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: rgba(0, 0, 0, .5);
}

.img-header {
  height: 500px;
  width: 100%;
}


@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


@media (max-width: 768px) {
  .condominios-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .condominios-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .condominios-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.condominios-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.condominios-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.condominios-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.condominios-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.condominios-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


@media (max-width: 768px) {
  .condominios-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .condominios-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .condominios-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.condominios-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.condominios-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.condominios-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.condominios-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.condominios-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}


/*** Section Title ***/
.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 120px;
  transition: .5s;
}

.fact-item:hover .fact-icon {
  background: var(--dark);
}

.fact-item .fact-icon i {
  color: var(--primary);
  transition: .5;
}

.fact-item:hover .fact-icon i {
  color: #ffffff;
}


/*** About & Feature ***/
.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 60%;
  height: 80%;
  object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
  margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  z-index: -1;
}


/*** Service ***/
.service-card{
height: 320px;
width: 350px;
}

.service-item .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.service-item .service-text {
  background: var(--light);
  transition: .5s;
}

.img-icon{
  height: 25%;
  width: 25%;
}

.service-item:hover .service-text {
  background: rgba(0, 0, 0, .7);
}

.service-item * {
  transition: .5;
}

.service-item:hover * {
  color: #FFFFFF;
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

.service-item:hover .btn {
  width: 140px;
  color: #ffffff;
  background: #ff8f10;
}



@media (max-width:770px)
{
  .service-item .service-text {
    height: 100%;
    width: 100%;
  }

  .service-item:hover .service-text {
    height: 100%;
    width: 100%;
  }
}

@media (max-width:500px){
  .service-item .service-text {
    height: 100%;
    width: 100%;
  }

  .service-item:hover .service-text {
    height: 100%;
    width: 100%;
  }
}


/*** Project ***/
.project .nav .nav-link {
  background: var(--light);
  transition: .5s;
}

.project .nav .nav-link.active {
  background: var(--primary);
}

.project .nav .nav-link.active h3 {
  color: #FFFFFF !important;
}

.cards-inmuebles {
  padding: .75rem;
  height: 400px;
  width: 300px;
}


/*** Team ***/
.team-items {
  margin: -.75rem;
}

.team-item {
  padding: .75rem;
  height: 400px;
  width: 250px;
}

.team-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #FFFFFF;
  transition: .5s;
  z-index: -1;
}

.team-item:hover::after {
  height: 100%;
  background: var(--primary);
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
}

.team-item .team-social .btn {
  display: inline-flex;
  margin: 0 2px;
  color: var(--primary);
  background: var(--light);
}

.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
  display: flex !important;
  flex-direction: column-reverse;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  background: #FFFFFF;
  border-radius: 40px;
  transition: .5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  opacity: .4;
  transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #1b007a;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: #0a0a0a;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.img-circle {
  border-radius: 50%;
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon:empty {
  width: 1em;
}

.glyphicon-asterisk:before {
  content: "\2a";
}

.glyphicon-plus:before {
  content: "\2b";
}

.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}


.sl-slider-wrapper {
  width: 800px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sl-slider {
  position: absolute;
  top: 0;
  left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sl-slide {
  z-index: 1;
}

/* The duplicate parts/slices */

.sl-content-slice {
  overflow: hidden;
  position: absolute;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
  width: 50%;
  height: 100%;
  top: -200px;
  -webkit-transform: translateX(0%) scale(1);
  -moz-transform: translateX(0%) scale(1);
  -o-transform: translateX(0%) scale(1);
  -ms-transform: translateX(0%) scale(1);
  transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
  left: -200px;
  padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
  left: 50%;
  padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
  position: absolute;
}

.sl-content {
  width: 100%;
  height: 100%;
  background: #fff;
}

/* Default styles for background colors */
.sl-slide-horizontal .sl-slide-inner {
  background: #000;
}

.sl-slide-vertical .sl-slide-inner {
  background: #000;
}

/*------------------------------------------------------------------
/* -- DE LA PAG INMUEBLES --- */

.bg-container-in {
  background: #d6d6d66e;
}

.color-icon {
  color: #ff8f10;
}

.bg-icon {
  background: #f79e38;
}

.btn-colour {
  color: #fff;
  background-color: #ff8f10;
  border-color: #ff8f10;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 0;
}

.btn-colour:hover,
.btn-colour:active,
.btn-colour:focus,
.btn-colour.active {
  /* let's darken #004E64 a bit for hover effect */
  background: #c97210;
  color: #ffffff;
  border-color: #c97210;
}

.select-border {
  border: none;
  outline: none;
}

.title-orange {
  color: #ff8f10;
  font-weight: 600;
  font-size:xx-large;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.blog-card {
  max-width: 300px;
  width:100%;
  height: 300px;
  color:#fff;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.644);
  text-align: center;
  transition:all 0.4s;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.blog-card a{ 
color:#fff;
  text-decoration:none;
  transition:all 0.2s
}
.blog-card .color-overlay {
  width: 550px;
  height: 500px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}
.blog-card .gradient-overlay {  
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 21%);
  width: 550px;
  height: 500px;
  position: absolute;
  top: 350px;
  left: 0;
  z-index: 15;
}
.blog-card:hover{
    box-shadow: 0px 18px 20px -9px rgba(0, 10, 30, 0.75);
}
.blog-card:hover .card-info {
  opacity: 1;
  bottom: 50px;
}
.blog-card:hover .color-overlay {
  background: rgba(64, 64, 70,0.8);
}
.blog-card:hover .title-content{
  display: none;
}
.title-content {
  text-align: center;
  margin: 170px 0 0 0;
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
  transition:all 0.6s;
}

.blog-card:hover h3:after{
  animation: changeLetter 0.3s 1 linear;
  width:80%
}

.blog-card h3,h1 {
  font-size: 1.9em;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Abril Fatface', serif;
  margin-bottom: 0;
  display:inline-block;
}
.blog-card h3 a{  
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);  
  transition:all 0.2s
}
.blog-card h3 a:hover{
  text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.95);
}
.blog-card h3:after {
  content: " ";
  display: block; 
  width: 10%;
  height: 2px;
  margin: 20px auto;
  border: 0;
  background: #BDA26B;
  transition:all 0.2s
}

@keyframes changeLetter {
  0% {
    width: 10%;
  }
  100% {
    width: 80%;
  }
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 100px 50px;
  font-style: 10px;
  line-height: 0.9rem;
  z-index: 20;
  opacity: 0;
  transition: bottom 0.64s, opacity 0.63s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.card-info button{
  display:block;
  width:100px;
  margin:15px auto;
  background: #ff8f10;;
  color:#fff;
  padding:3px 10px;
  border: none;
  font-size:0.7em
}
.card-info button:hover{
  background: #ff8f10;;
  color:#fff;
  
}
.card-info button:hover span{
   filter: brightness(10);
   opacity:1
}

.card-info a{
  display:block;
  width:100px;
  margin:15px auto;
  background: #ff8f10;;
  color:#fff;
  padding:3px 10px;
  border: none;
  font-size:0.7em
}
.card-info a:hover{
  background: #ff8f10;;
  color:#fff;
  
}
.card-info button:hover span{
   filter: brightness(10);
   opacity:1
}


.utility-info {
  position: absolute;
  bottom: 0px;
  display:flex;
  left: 0;
  z-index: 20;
  width:100%;
  text-align:left
}
.utility-list {
  list-style-type: none;
  margin: 0 0 10px 20px;
  padding: 0;
  width: 100%;
}
.utility-list li {
  margin: 0 5px 0 0;
  padding: 3px 0 15px 0px;
  display: inline-block;
  
  font-size:0.8em
}

@media (max-width:750px)
{
  .utility-info {
    text-align:center;
  }
  .utility-info ul{
    width:100%;
    margin:0;
    box-sizing:border-box
  }
  .utility-info li{
    width:49%;
    display:inline-block;
    box-sizing:border-box;
    margin:0
  }


}

@media (max-width:500px){
  .utility-info li:last-of-type{
    width:100%
  }
  .blog-card:hover .title-content,.title-content{
  margin-top:40px
}
.blog-card{
  height:300px
}
.blog-card h3{
  font-size:1.3em
}
.intro{
  font-size:0.8em
}
}
.tag {
  background-color: rgba(252, 84, 6, 0.616);
  position: absolute;
  display:flex;
  top: 0;
  left: 0;
  z-index: 20;
  width:40%;
  text-align:center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.tag span {
  margin: 0 5px 0 0;
  padding: 3px 0 5px 0px;
  font-size:1em;
  display: flex;
  flex: 1;
  justify-content: center;
} 

/*//////////////////////////////////////////////////////////////////
[ Modal1 ]*/
.modalContainer {
  display: none; 
  position: fixed; 
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modalContainer .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid lightgray;
  border-top: 10px solid #ff8f10;
  width: 60%;
}

.modalContainer .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modalContainer .close:hover,
.modalContainer .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/**/

/*[ LOADDING ]*/
.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader05 {
  width: 56px;
  height: 56px;
  border: 4px solid #717fe0;
  border-radius: 50%;
  position: relative;
  animation: loader-scale 1s ease-out infinite;
  top: 50%;
  margin: -28px auto 0 auto; 
}

@keyframes loader-scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } 
}

/*//////////////////////////////////////////////////////////////////
[ BUTTON BACK TO TOP ]*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 38px;
  bottom: 0px;
  right: 40px;
  background-color: #717fe0;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 25px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  background-color: #717fe0;
}

@media (max-width: 575px) {
  .btn-back-to-top {
    bottom: 0px;
    right: 15px;
  }
}


.card-detail {
  display: flex;
  flex-direction: column;
}
.card-in-info {
  bottom: 0px;
  display:flex;
  left: 0;
  z-index: 20;
  width:100%;
  text-align:left;
  flex-direction: column;
  padding-bottom: 2em;
}
.card-in-list {
  list-style-type: none;
  margin: 0 0 10px 20px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card-in-list li {
  margin: 5px;
  padding: 3px;
  display: inline-block;
  font-size:1.1em
}

.title-in {
  text-align: start;
}

.container-img img {
width: 100%;
}

.title-filters {
  color: #ff8f10;
  font-weight: 500;
  font-size:medium;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.direction{
  display: flex;
  flex-direction: row;
  padding: 0.1rem;
  justify-content: center;
}
.margin-in {
  margin: 1rem;
}

/*---------------------------------------------*/

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.btn-review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 1rem;
}

.btn-review button {
  font-size: 20px;
}

.sidebar-filter {
  display: block;
}

/* pop up comentarios */
.overlay {
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
  z-index: 100;
  visibility: hidden;
}

.overlay.active {
	visibility: visible;
}

.popup {
	background: #F8F8F8;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	transition: .3s ease all;
	color: #BBBBBB;
}

.popup .btn-cerrar-popup:hover {
	color: #000;
}

.popup form .contenedor-inputs {
	opacity: 0;
}

.popup form .contenedor-inputs input {
	width: 100%;
	margin-bottom: 20px;
	height: 70px;
	font-size: 20px;
	line-height: 40px;
	border: 1px solid #BBBBBB;
}

.popup form .contenedor-inputs textarea {
	width: 100%;
	margin-bottom: 20px;
	height: 70px;
	font-size: 20px;
	line-height: 40px;
	border: 1px solid #BBBBBB;
}

.popup form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #fff;
	background: #5E7DE3;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup form .btn-submit:hover {
	background: rgba(94,125,227, .9);
}

/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup.active .contenedor-inputs { animation: entradaInputs 1s linear 1s forwards; }

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}
/* SIDEBAR */


/* PLANTILLA CORREDOR */

.img-container {
  position: relative;
}

.image-asesor{
  position: absolute;
  top: -30px;
  right: -20px;
}
.image-asesor img{
  height: 150px;
  width: 150px;
  border-radius: 10px;
}
.info-name-corredor {
  padding-left: 4rem;
  padding-top: 1.8rem;
}

.logo {
  width: 90px;
  height: 90px;
  top: 0;
  left: 0;
}

.modalCorredores{
  display: none; 
  position: fixed; 
  z-index: 1000;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modalCorredores .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid lightgray;
  border-top: 10px solid #ff8f10;
  width: 700px;
}

.modalCorredores .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modalCorredores .close:hover,
.modalCorredores .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 770.98px) {
  .modalCorredores .modal-content {
    width: 650px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 690.98px) {
  .modalCorredores .modal-content {
    width: 590px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 90px;
    height: 90px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 630.98px) {
  .modalCorredores .modal-content {
    width: 530px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 85px;
    height: 85px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 570.98px) {
  .modalCorredores .modal-content {
    width: 470px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 83px;
    height: 83px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 470.98px) {
  .modalCorredores .modal-content {
    width: 420px;
    margin-top: 20px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
  }
}
@media (max-width: 400.98px) {
  .modalCorredores .modal-content {
    width: 400px;
  }
  .info-name-corredor {
    text-align: center;
  }
  .logo {
    width: 78px;
    height: 78px;
    top: 0;
    left: 0;
  }
}

.description{
  padding-top: 2.5rem;
  font-size: 20px;
}

.redes{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.redes a {
  font-size: 25px;
  margin: 0.5rem;
}
.titulo-inmuebles-slider h3{
  padding-top: 0.5rem;
  color: #ff8f10;
}

/* slider inmuebles  */
.flex-corredores{
  display: flex;
  flex-direction: row;
}

.flex-item-corredor{
  padding: 1rem;
}

.blog-card-slider {
  max-width: 300px;
  width: 178px;
  height: 165px;
  color:#fff;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0px 10px 20px -9px rgba(0, 0, 0, 0.644);
  text-align: center;
  transition:all 0.4s;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.blog-card-slider a{ 
color:#fff;
  text-decoration:none;
  transition:all 0.2s
}
.blog-card-slider .color-overlay {
  width: 550px;
  height: 500px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}
.blog-card-slider .gradient-overlay {  
  background-image: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 21%);
  width: 550px;
  height: 500px;
  position: absolute;
  top: 350px;
  left: 0;
  z-index: 15;
}
.blog-card-slider:hover{
    box-shadow: 0px 18px 20px -9px rgba(0, 10, 30, 0.75);
}
.blog-card-slider:hover .card-info {
  opacity: 1;
  bottom: 100px;
}
.blog-card-slider:hover .color-overlay {
  background: rgba(64, 64, 70,0.8);
}
.blog-card-slider:hover .title-content{
  display: none;
}
.title-content {
  text-align: center;
  margin: 170px 0 0 0;
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
  transition:all 0.6s;
}

.blog-card-slider:hover h3:after{
  animation: changeLetter 0.3s 1 linear;
  width:80%
}

.blog-card-slider h3,h1 {
  font-size: 1.9em;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Abril Fatface', serif;
  margin-bottom: 0;
  display:inline-block;
}
.blog-card-slider h3 a{  
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);  
  transition:all 0.2s
}
.blog-card-slider h3 a:hover{
  text-shadow: 0px 8px 20px rgba(0, 0, 0, 0.95);
}
.blog-card-slider h3:after {
  content: " ";
  display: block; 
  width: 10%;
  height: 2px;
  margin: 20px auto;
  border: 0;
  background: #BDA26B;
  transition:all 0.2s
}
/**/

/* MAPA DETALLE INMUEBLE */

@media (max-width:770px)
{
  .map {
    height: 300px;
  }
}
@media (max-width:595px)
{
  .modalContainer{
    width: 570px;
  }
  .modalContainer .modal-content {
    margin:20px;
  }

}

@media (max-width:420px)
{
  .modalContainer{
    width: 575px;
  }
}


@media (max-width: 768px) {
  .inmuebles-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .inmuebles-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .inmuebles-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.img-carousel-inmuebles {
  height: 240px;
  width: 100%;
}

.inmuebles-carousel .owl-dots {
  width: 400px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
}

.inmuebles-carousel .owl-dots .owl-dot {
  width: 100px;
  height: 100px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.inmuebles-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.inmuebles-carousel .owl-dots .owl-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.inmuebles-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

/* WHATSAPP */
img.btn-whatsapp {
  display: block !important;
  position: fixed;
  z-index: 9999999;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  border-radius:100px !important;
  }
  img.btn-whatsapp:hover{
  border-radius:100px !important;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(7,94,84,1); 
  -moz-box-shadow: 0px 0px 15px 0px rgba(7,94,84,1);
  box-shadow: 0px 0px 15px 0px rgba(7,94,84,1);
  transition-duration: 1s;
  } 

/* SECTION SERVICE */
.services-1 {
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
}

.services-1-container{
  width: 65%;
}

.service-img-holder {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-img-holder > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.service-img {
height: 400px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform .90s; 
}

.section-wrap{
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}
.services-1-description{
  width: 45%;
  position: absolute;
  z-index: 1;
  background-color: #ee7300e1;
  padding: 0px 0px;
  right: 0;
  top: 60px;
}
.services-1-description-con{
  width: 45%;
  position: absolute;
  z-index: 1;
  background-color: #4a3d9ee1;
  padding: 0px 0px;
  right: 0;
  top: 60px;
}

.service-heading{
  padding: 1rem;
  text-align: center;
}

.service-1-description {
  padding: 0px 20px 20px 20px;
}

.service-1-description ul li{
  list-style:circle;
  color: #000;
}


@media (max-width:1200px){
  .services-1-container{
    width: 50%;
  }
  .services-1-description{
    width: 50%;
    position: relative;
    padding: 30px 50px;
    right: 0;
    top:0;
  }
}
@media (max-width:990px){
  .section-wrap {
    padding: 80px 0;
  }
  .services-1 {
    display: block;
    margin-bottom: 48px;
  }
  .services-1-container{
    width: 100%;
  }
  .service-heading, .services-1-description {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
}

.section-wrap {
  padding: 50px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
/* service 2 */


.service-img:hover {
  transform: scale(1.5); 
}

.services-2 {
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
  justify-content: flex-end;
}

.services-2-container{
  width: 65%;
}

.service-img-holder {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.section-wrap{
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}
.services-2-description{
  width: 45%;
  position: absolute;
  z-index: 1;
  background-color: #ee7300e1;
  padding: 0px 0px;
  left: 0;
  top: 60px;
}

.services-2-description-con{
  width: 45%;
  position: absolute;
  z-index: 1;
  background-color: #4a3d9ee1;
  padding: 0px 0px;
  left: 0;
  top: 60px;
}

.service-2-description {
  padding: 0px 20px 20px 20px;
}

.service-2-description ul li{
  list-style:circle;
  color: #000;
}
@media (max-width:1200px){
  .services-2-container{
    width: 50%;
  }
  .services-2-description{
    width: 50%;
    position: relative;
    padding: 30px 50px;
    right: 0;
    top:0;
  }
}

@media (max-width:990px){
  .section-wrap {
    padding: 80px 0;
  }
  .services-2 {
    display: block;
    margin-bottom: 48px;
  }
  .services-2-container{
    width: 100%;
  }
  .service-heading, .services-2-description {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
}
/* //// */

.btn-busqueda{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

.text-orange {
  color: #ee7300;
}

.price {
  font-size: 45px;
  color: #ee7300;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.btnModalCorredores{
  margin-bottom: 1em;
  font-weight: 600;
  font-size: 20px;
  
}

/* CARTA DE PRESENTACION */
.cardCorredor {
  position: relative;
  width: 100%;
  height: 900px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: .5s;
}

.cardCorredor:hover {
  box-shadow: 0 5px 15px rgba(92, 61, 3, 0.5);
  transform: translateY(-15px);
}

.cardCorredor .head {
  height: 125px;
  width: 100%;
  position: relative;
}

.cardCorredor .head .circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #ee7300;
  bottom: 0;
}

.cardCorredor .head .img {
  width: 160px;
  height: 160px;
  position: absolute;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  bottom: -30%;
  left: 50%;
  transform: translate(-50%);
}

.cardCorredor .head .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.cardCorredor .logo-div{
  width: 150px;
  height: 150px;
  position: absolute;
  background: #fff;
  padding: 5px;
  bottom: -30%;
  left: 90%;
  transform: translate(-50%);
}


.cardCorredor .description {
  height: 250px;
  padding: 40px 20px 20px 20px;
  border-bottom: solid 1px rgba(6, 74, 76, .18);
  text-align: center;
}

.cardCorredor .description h3 {
  color: #3a2705;
}

.cardCorredor .description h4 {
  color: #ee7300;
}

.cardCorredor .description p {
  margin-top: 20px;
  font-size: 20px;
}


.cardCorredor .contact {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardCorredor .contact a {
  text-decoration: none;
  color: #fff;
  background: #153d79;
  padding: 5px 20px;
  border-radius: 5px;
  transition: .3s;
}

.cardCorredor .contact a:hover {
  
  background: #ee7300;
 
}


/*//////////////////////////////////////////////////////////////////
[ Modal1 ]*/
.modalContainerCorredores {
  display: none; 
  position: fixed; 
  z-index: 1000;
  padding-top: 100px;
  padding-bottom: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modalContainerCorredores .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid lightgray;
  border-top: 10px solid #ff8f10;
  width: 60%;
}

.modalContainerCorredores .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modalContainerCorredores .close:hover,
.modalContainerCorredores .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}


/**/

.img-cd {
width: 600px;
height: 400px;
}

.condominio-2-description {
  padding: 30px 20px 20px 20px;
}

.condominio-2-description ul li{
  list-style:circle;
  color: #000;
}

.condominio-1-description {
  padding: 30px 20px 20px 20px;
}

.condominio-1-description ul li{
  list-style:circle;
  color: #000;
}


.img-border{
  border: 5px solid #ee7300e1;
}


/*prueba*/

.condominio-1-description {
  padding: 30px 20px 20px 20px;
}

.condominio-1-description ul li{
  list-style:circle;
  color: #000;
}


@media (max-width:1200px){
  .services-1-container{
    width: 50%;
  }
  .condominio-1-description{
    width: 50%;
    position: relative;
    padding: 30px 50px;
    right: 0;
    top:0;
  }
}
@media (max-width:990px){
  .section-wrap {
    padding: 80px 0;
  }
  .services-1 {
    display: block;
    margin-bottom: 48px;
  }
  .services-1-container{
    width: 100%;
  }
  .service-heading, .condominio-1-description {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
}


.condominio-2-description {
  padding: 30px 20px 20px 20px;
}

.condominio-2-description ul li{
  list-style:circle;
  color: #000;
}


@media (max-width:1200px){
  .services-1-container{
    width: 50%;
  }
  .condominio-2-description{
    width: 50%;
    position: relative;
    padding: 30px 50px;
    right: 0;
    top:0;
  }
}
@media (max-width:990px){
  .section-wrap {
    padding: 80px 0;
  }
  .services-1 {
    display: block;
    margin-bottom: 48px;
  }
  .services-1-container{
    width: 100%;
  }
  .service-heading, .condominio-1-description {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
}

@media (max-width:750px)
{
  .media {
   flex-direction: column;
  }
}

.img-logo{
  width: 53px;
  height: 64px;
  object-fit: cover;
}

@media (max-width:1100px)
{
  .logo-div{
    display: none;
  }
}

@media (max-width:600px)
{
  .modalContainerCorredores .modal-content{
    width: 100%;
  }
}

.modalNotificaciones{
  display: none; 
  position: fixed; 
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modalNotificaciones .modalNotificacionesContent {
  background: none;
  margin: auto;
  padding: 10px;
  width: 100%;
  max-width: 1100px;
  min-width: 300px;
}

.img-notificacion {
  height: 590px;
}

@media (max-width:420px)
{
  .img-notificacion {
    width: 100%;
    height: 300px;
    margin-top: 50%;
    margin-bottom: 50%;
  }
}

