/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/*!
 * Bootstrap-select v1.14.0-beta3 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2022 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select .dropdown-toggle .bs-select-clear-selected{position:relative;display:block;margin-right:5px;text-align:center}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected{padding-right:inherit}.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{position:relative;top:-webkit-calc(((-1em / 1.5) + 1ex)/ 2);top:calc(((-1em / 1.5) + 1ex)/ 2);pointer-events:none}.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span{top:auto}.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected{display:none}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group{display:block}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group{display:block}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}


.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

.animated.animated-delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;


}
.animated.animated-delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);

}
.animated.animated-delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);

}
.animated.animated-delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);

}
.animated.animated-delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);

}
.animated.animatedfaster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
}

@charset "UTF-8";.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.slides>.slide>.slide-content>img{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-ms-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear;backface-visibility:hidden;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.slides>.slide>.slide-content>img{margin:auto;width:auto;height:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:999999;overflow:hidden;background:#000;opacity:0;display:none;direction:ltr;-ms-touch-action:pinch-zoom;touch-action:pinch-zoom}.blueimp-gallery-carousel{position:relative;z-index:auto;margin:1em auto;padding-bottom:56.25%;box-shadow:0 0 4px rgba(0,0,0,.1);-ms-touch-action:pan-y pinch-zoom;touch-action:pan-y pinch-zoom;display:block}.blueimp-gallery-display{display:block;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery-carousel>.slides{position:absolute}.blueimp-gallery>.slides>.slide{visibility:hidden;position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-moz-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-ms-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-o-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);transition-timing-function:cubic-bezier(0.645,0.045,0.355,1)}.blueimp-gallery>.slides>.slide-active,.blueimp-gallery>.slides>.slide-next,.blueimp-gallery>.slides>.slide-prev{visibility:visible}.blueimp-gallery>.slides>.slide-loading{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery-smil>.slides>.slide-loading{background-image:url(../img/loading.svg)}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../img/error.png) center no-repeat}.blueimp-gallery-svgasimg>.slides>.slide-error{background-image:url(../img/error.svg)}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery-display>.next,.blueimp-gallery-display>.prev{position:absolute;top:50%;left:15px;width:8px;height:20px;padding:10px 14px 10px 18px;margin-top:-23px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;background:#222 url(../img/prev.png) center no-repeat;background-color:rgba(0,0,0,.5);border:3px solid #fff;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery-display>.next{right:15px;left:auto;background-image:url(../img/next.png)}.blueimp-gallery-svgasimg>.prev{background-image:url(../img/prev.svg)}.blueimp-gallery-svgasimg>.next{background-image:url(../img/next.svg)}.blueimp-gallery-display>.close{position:absolute;top:15px;right:15px;width:30px;height:30px;background:url(../img/close.png) center no-repeat;opacity:.8;cursor:pointer;display:none}.blueimp-gallery-svgasimg>.close{background-image:url(../img/close.svg)}.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 60px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery-display>.play-pause{position:absolute;right:15px;bottom:15px;width:30px;height:30px;background:url(../img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-svgasimg>.play-pause{background-image:url(../img/play-pause.svg)}.blueimp-gallery-playing>.play-pause{background-position:-30px 0}.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.play-pause,.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.title{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-left>.prev,.blueimp-gallery-right>.next,.blueimp-gallery-single>.next,.blueimp-gallery-single>.play-pause,.blueimp-gallery-single>.prev{display:none}.blueimp-gallery>.close,.blueimp-gallery>.next,.blueimp-gallery>.play-pause,.blueimp-gallery>.prev,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blueimp-gallery>.close:hover,.blueimp-gallery>.next:hover,.blueimp-gallery>.play-pause:hover,.blueimp-gallery>.prev:hover,.blueimp-gallery>.title:hover{color:#fff;opacity:1}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}*+html .blueimp-gallery>.slides>.slide>.slide-content>img{position:relative}@supports (object-fit:contain){.blueimp-gallery-contain>.slides>.slide>.slide-content,.blueimp-gallery-contain>.slides>.slide>.slide-content>img{width:100%;height:100%;object-fit:contain}}@media (prefers-color-scheme:light){.blueimp-gallery-carousel{background:#fff}}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blueimp-gallery>.indicator>li{display:inline-block;position:relative;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.indicator>.active,.blueimp-gallery>.indicator>li:hover{background-color:#fff;border-color:#fff;opacity:1}.blueimp-gallery>.indicator>li:after{opacity:0;display:block;position:absolute;content:'';top:-5em;left:4px;width:75px;height:75px;transition:transform .6s ease-out,opacity .4s ease-out;transform:translateX(-50%) translateY(0) translateZ(0);pointer-events:none}.blueimp-gallery>.indicator>li:hover:after{opacity:1;border-radius:50%;background:inherit;transform:translateX(-50%) translateY(-5px) translateZ(0)}.blueimp-gallery>.indicator>.active:after{display:none}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.slides>.slide>.video-content>.video-cover,.blueimp-gallery>.slides>.slide>.video-content>iframe,.blueimp-gallery>.slides>.slide>.video-content>video{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.blueimp-gallery>.slides>.slide>.video-content>.video-cover{background:center no-repeat;background-size:contain}.blueimp-gallery>.slides>.slide>.video-iframe>.video-cover{background-color:#000;background-color:rgba(0,0,0,.7)}.blueimp-gallery>.slides>.slide>.video-content>.video-play{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery-svgasimg>.slides>.slide>.video-content>.video-play{background-image:url(../img/video-play.svg)}.blueimp-gallery>.slides>.slide>.video-playing>.video-cover,.blueimp-gallery>.slides>.slide>.video-playing>.video-play{display:none}.blueimp-gallery>.slides>.slide>.video-loading>.video-play{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery-smil>.slides>.slide>.video-loading>.video-play{background-image:url(../img/loading.svg)}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>.video-play{left:50%;margin-left:-64px}.blueimp-gallery>.slides>.slide>.video-content>.video-play:hover{opacity:1} .blueimp-gallery-display a{ color: #fff; text-decoration: none;}
/*# sourceMappingURL=blueimp-gallery.min.css.map */
#gdpr-section {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    display:none;
}

#gdpr-section .gdpr-modal-dialog{
    background: #fff;
    box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.1);
}

#gdpr-section .gdpr-modal-content{
    padding: 15px;
    line-height: 120%;
}

#gdpr-section .gdpr-modal-footer {
    background-color: #f7f7f7;
    padding: 10px;
    border-top: 1px solid #e9ecef;
    padding: 15px;
}
#gdpr-section a{
    margin-right: 20px;
}

#gdpr-section button{
    float:right;
}

label.has-error{
    color:red;
}
/*
* Common
*/
.btn-primary {
  --bs-btn-bg: #3fa9f5;
  --bs-btn-border-color: #3fa9f5;
  --bs-btn-hover-border-color: darkern(#3fa9f5, 5%);
  --bs-btn-hover-bg: #0f93f2;
  --bs-btn-active-bg: #0f93f2;
}
.btn-primary svg {
  fill: #fff;
}
.btn-filtering {
  --bs-btn-bg: #3fa9f5;
  --bs-btn-border-color: #3fa9f5;
  --bs-btn-hover-border-color: darkern(#3fa9f5, 5%);
  --bs-btn-hover-bg: #0f93f2;
  --bs-btn-active-bg: #0f93f2;
}
.search-form .btn-check:active + .btn,
.search-form .btn-check:checked + .btn,
.search-form .btn.active,
.search-form .btn.show,
.search-form .btn:active {
  background: #3fa9f5;
  color: #fff;
}
.text-short-show-more {
  display: none;
  color: #fff;
  background: #3fa9f5;
  padding: 5px 10px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px auto;
}
.newsletter-module .btn {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.homepage-splash .half-splash {
  min-height: 600px;
  padding: 250px 0;
}
.half-splash {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 40px 0;
}
.half-splash .half-splash-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center center;
}
.half-splash .half-splash-overlay {
  opacity: .8;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.half-splash .half-splash-overlay.half-splash-mode-right {
  left: 50%;
}
.half-splash .half-splash-overlay.half-splash-mode-full {
  width: 100%;
}
.half-splash .half-splash-overlay.half-splash-color-white {
  background: #fff;
  opacity: .6;
}
.half-splash .half-splash-overlay.half-splash-color-blue {
  background: #09275B;
  opacity: .4;
}
.half-splash .half-splash-overlay.half-splash-color-green {
  background: #49cf47;
}
.half-splash .half-splash-overlay.half-splash-color-orange {
  background: #FF8000;
}
.half-splash .half-splash-overlay.half-splash-color-black {
  background: #000;
  opacity: .2;
}
.half-splash .half-splash-overlay.half-splash-color-black2 {
  background: #000;
  opacity: .4;
}
.half-splash .half-splash-overlay.half-splash-color-grey {
  background: #757584;
  opacity: .6;
}
.half-splash .slider-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
}
.half-splash .half-splash-content {
  display: block;
  position: relative;
}
.half-splash .half-splash-content p,
.half-splash .half-splash-content h1,
.half-splash .half-splash-content h2,
.half-splash .half-splash-content h3,
.half-splash .half-splash-content h4 {
  color: #fff;
}
.half-splash label {
  color: #fff;
}
@media (max-width: 992px) {
  .homepage-splash .half-splash {
    padding: 100px 0;
    min-height: 450px;
  }
}
.search-form-transaction-wrapper {
  text-align: center;
}
.modal-search {
  --bs-modal-bg: #fff;
  --bs-modal-header-border-color: none;
  --bs-modal-footer-border-color: none;
}
.modal-search h3 {
  color: #3fa9f5;
}
.modal-search .search-form-wrapper {
  padding: 0;
}
.modal-search .search-item {
  margin-top: 25px;
}
.modal-search .form-group-picker {
  width: 100%;
}
.modal-search .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.modal-search .search-inner .form-group-picker .btn,
.modal-search .search-inner .form-control {
  background: rgba(0, 0, 0, 0.01);
  color: #444;
}
.modal-search .search-inner .form-control {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.modal-search .search-inner .btn-search-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.search-form label {
  color: #111111;
}
.search-form .search-item {
  margin-top: 10px;
}
.search-form-wrapper {
  position: relative;
}
.search-form-wrapper .icon svg {
  fill: #3fa9f5;
  width: 20px;
  height: 20px;
}
.shortsearchform .btn-check-transaction {
  border-radius: 15px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border: 0;
  padding: 20px 40px;
}
.shortsearchform .btn-check-transaction {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.shortsearchform .btn-check:active + .btn,
.shortsearchform .btn-check:checked + .btn,
.shortsearchform .btn.active,
.shortsearchform .btn.show,
.shortsearchform .btn:active {
  background: #fff;
  color: #3fa9f5;
}
.shortsearchform .dropdown-toggle::after {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  filter: invert(1) grayscale(100%) brightness(200%);
}
.search-inner {
  background: -webkit-linear-gradient(left, #FFFFFF 0.1%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(90deg, #FFFFFF 0.1%, rgba(255, 255, 255, 0.8) 100%);
  padding: 20px;
  border-radius: 15px;
  display: -webkit-box;
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.search-inner .form-group-picker {
  position: relative;
}
.search-inner .form-group-picker .icon {
  position: absolute;
  top: 5px;
  left: 10px;
}
.search-inner .dropdown-menu {
  --bs-dropdown-bg: #3fa9f5;
  --bs-dropdown-color: #fff;
  --bs-dropdown-link-color: #fff;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-dropdown-link-hover-color: #fff;
}
.search-inner .form-group-picker .btn {
  padding-left: 40px;
  padding-right: 10px;
  border: none;
  background: none;
  color: #3fa9f5;
  outline: none !important;
  box-shadow: none;
}
.search-inner .form-group-picker .btn.show {
  background: rgba(255, 255, 255, 0.1);
}
.search-inner .form-control {
  background: none;
}
.search-inner .btn-search {
  background: #3fa9f5;
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 10px 30px;
}
.search-inner .btn-search:hover {
  border: 1px solid #085993;
  color: #fff;
  background: #3fa9f5;
  border: none;
}
.search-inner .btn-search svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-right: 5px;
}
.short-search-line {
  height: 50px;
  width: 1px;
  display: block;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 10px;
}
@media (max-width: 992px) {
  .short-search-line {
    display: none;
  }
  .btn-search {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .search-form .btn-search {
    width: 100%;
    margin-top: 20px;
  }
  .search-form .form-group-picker {
    width: 100%;
    margin-top: 20px;
  }
  .search-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
  }
}
#property-main-gallery-pager {
  display: none;
}
.property-main-gallery-item,
.complex-main-gallery-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.property-main-gallery-item img,
.complex-main-gallery-item img {
  width: auto !important;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
}
.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.owl-nav .owl-next {
  position: absolute;
  right: 10px;
}
.owl-nav .owl-prev {
  position: absolute;
  left: 10px;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  border-radius: 999px !important;
  border: 2px solid #fff !important;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 3px;
}
.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
  background: rgba(63, 169, 245, 0.5) !important;
}
.owl-nav .owl-next span,
.owl-nav .owl-prev span {
  font-size: 40px;
  line-height: 30px;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .property-main-gallery-item img,
  .complex-main-gallery-item img {
    max-height: 350px;
  }
}
.contact-box-icon {
  display: inline-block;
  width: 20px;
}
.header-band {
  padding: 150px 0 30px 0;
  margin: 0;
  background: #000;
}
.header-band.header-with-image {
  position: relative;
  display: block;
}
.header-band.header-with-image h1,
.header-band.header-with-image h2,
.header-band.header-with-image h3 {
  color: #fff;
}
.header-band.header-with-image .container {
  position: relative;
}
.header-band.header-with-image .header-band-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .4;
  background-size: cover;
  background-position: center center;
}
/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small div {
  background-color: #6ecc39;
}
.leaflet-oldie .marker-cluster-medium div {
  background-color: #f0c20c;
}
.leaflet-oldie .marker-cluster-large div {
  background-color: #f18017;
}
.marker-cluster {
  background-clip: padding-box;
  border-radius: 999px;
}
.marker-cluster div {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 999px;
  font-size: 15px;
  background-color: rgba(241, 128, 23, 0.9);
  color: #fff;
}
.marker-cluster span {
  line-height: 50px;
}
.osm-marker-icon {
  border-radius: 999px;
  height: 30px !important;
  width: 30px !important;
  background-color: #EE284B;
}
.swiper {
  background: #3fa9f5;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  background: #3fa9f5;
  /* Center slide text vertically */
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.swiper-slide img {
  opacity: .2;
}
.swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.text-icon {
  background: #fff;
  border-radius: 0.375rem;
  text-align: center;
  padding: 1.875rem;
  box-shadow: 0 3px 20px 0 rgba(8, 15, 52, 0.06);
  margin: 1.875rem auto;
  color: #000;
  -webkit-box-flex: 1;
  flex-grow: 1;
}
.text-icon h1,
.text-icon h2,
.text-icon h3,
.text-icon h4 {
  color: #000 !important;
}
.text-icon a {
  font-size: 1rem;
  font-weight: bold;
  color: #3fa9f5;
  text-decoration: none;
}
.text-icon .text-icon-icon {
  background: #f5f8fa;
  display: -webkit-inline-box;
  display: inline-flex;
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  -webkit-box-pack: center;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px;
}
.text-icon .text-icon-body {
  min-height: 120px;
}
.text-icon svg {
  width: 40px;
  height: 40px;
  -ms-grid-row-align: center;
  align-self: center;
}
.social-media-wrapper {
  display: -webkit-box;
  display: flex;
  gap: 5px;
  padding-bottom: 20px;
}
.social-media-wrapper .contact-social-item svg {
  width: 25px;
  height: 25px;
}
.properties-slideshow-item {
  height: 350px;
  position: relative;
}
.properties-slideshow-item:hover .properties-slideshow-item-body {
  bottom: 0.5rem;
  opacity: .9;
}
.properties-slideshow-item-body {
  padding: 1.5rem;
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  width: 300px;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(63, 169, 245, 0.9);
  border-radius: 15px;
}
.properties-slideshow-item-body .price {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.properties-slideshow-item-body .price span {
  font-size: 50%;
}
.properties-slideshow-item-body .location {
  margin-bottom: 5px;
  font-size: 13px;
  color: #fff;
}
.properties-slideshow-item-body svg {
  fill: #fff;
}
.properties-slideshow-item-body .propertygrid-meta-wrapper {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
}
.properties-slideshow-item-body .property-title {
  margin-top: 13px;
  display: block;
  color: #fff;
  font-size: 14px;
  height: 50px;
  overflow: hidden;
  font-weight: 600;
  line-height: 120%;
}
.properties-slideshow-item-body .propertygrid-meta {
  margin-right: 15px;
  position: relative;
  padding-right: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.properties-slideshow-item-body .propertygrid-meta:last-child {
  padding-right: 0;
  margin-right: 0;
}
.properties-slideshow-item-body .propertygrid-meta:last-child:before {
  display: none;
}
.properties-slideshow .properties-slideshow-item {
  border-radius: 15px;
}
@media (max-width: 480px) {
  .properties-slideshow-item-body .price {
    font-size: 16px;
  }
}
.testimonial-slider-item {
  max-width: 900px;
  margin: 0 auto;
  background: #FAFAFA;
  text-align: center;
  padding: 50px 30px 0 30px;
  border-radius: 15px;
  position: relative;
}
.testimonial-slider-item-content {
  font-style: italic;
}
.testimonial-slider-item-author {
  margin: 20px auto -30px;
  text-align: center;
  display: inline-block;
  background: #fff;
  border-radius: 9999px;
  padding: 15px 25px;
  font-weight: 500;
}
.testimonial-slider-item-author img {
  display: inline-block !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 9999px;
  margin: -15px 15px -15px -25px;
}
.testimonial-slider-item-quote1 {
  position: absolute;
  top: 10px;
  left: 10px;
}
.testimonial-slider-item-quote1 svg {
  fill: #3fa9f5;
  width: 60px;
  height: 60px;
}
.testimonial-slider-item-quote2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.testimonial-slider-item-quote2 svg {
  fill: #3fa9f5;
  width: 60px;
  height: 60px;
}
body {
  -webkit-font-smoothing: antialiased;
  font-size: 0.9rem;
  font-family: "Poppins", Aria, sans-serif;
  background-color: #fff;
  line-height: 160%;
  min-height: 100%;
  color: #444;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
a:hover {
  color: #3fa9f5;
}
h1,
h2,
h3 {
  font-family: "Poppins", Aria, sans-serif;
  color: #303030;
}
h1 {
  margin: 30px 0;
}
h2 {
  margin: 20px 0;
}
h1.container-title,
h2.container-title {
  position: relative;
}
h1.container-title span,
h2.container-title span {
  color: #3fa9f5;
}
.center-title h1:after,
.center-title h2:after {
  content: " ";
  display: none;
}
.border-8 {
  padding: 8px !important;
}
a:focus {
  outline: none;
}
.svg-defs {
  display: none;
}
.background-cover {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.background-cover-center {
  background-position: center center;
}
.pull-right {
  float: right;
}
.hidden {
  display: none !important;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.center-title h1,
.center-title h2,
.center-title h3 {
  text-align: center;
}
.wow {
  visibility: hidden;
}
.linewrap button {
  white-space: normal !important;
}
.form-group {
  margin-bottom: 10px;
}
.text-short-wrapper .text-short-show-more {
  display: inline-block;
}
.text-short-wrapper .text-short {
  overflow: hidden;
  max-height: 110px;
  position: relative;
}
.text-short-wrapper .text-short::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  box-shadow: inset 0px -20px 17px -10px #FFFFFF;
}
.loader-wrapper {
  position: absolute;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.label-wrapper {
  position: absolute;
  left: 10px;
  top: 10px;
  display: block;
  z-index: 1;
}
.label-wrapper .label {
  padding: 3px 10px;
  font-size: 11px;
  color: #fff;
  background: #3fa9f5;
  border-radius: 20px;
  font-weight: bold;
}
::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 500;
}
::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 500;
}
:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 500;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 500;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-weight: 500;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  font-weight: 500;
}
.form-label,
label {
  font-weight: 700;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: #fbfbfb;
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
  font-weight: 500;
}
.input-group-text {
  background-color: #f6f6f6;
  border: 2px solid transparent;
}
.has-error input {
  border: solid 2px red !important;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.form-control:focus,
.uneditable-input:focus {
  border-color: #3fa9f5;
  box-shadow: none;
  outline: 0 none;
}
textarea.form-control {
  height: auto;
}
.btn {
  padding: 10px 24px;
  border-style: solid;
  border-radius: 4px;
  -webkit-transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
  transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.6px;
  text-decoration: none;
}
.btn-form {
  background-color: #3fa9f5;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
}
.btn-form-right {
  margin-left: auto !important;
}
.top-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 100;
  padding: 5px 0;
}
.top-info .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.top-info .social-box,
.top-info .info-box {
  display: -webkit-box;
  display: flex;
}
.top-info .info-box-item {
  opacity: .8;
  margin-left: 10px;
}
.top-info .info-box-item svg {
  width: 18px;
  fill: #fff;
  height: 18px;
}
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
header {
  background: none;
  z-index: 20;
}
.logo {
  margin-top: 10px;
  max-height: 130px;
}
@media (max-width: 992px) {
  header {
    height: 80px;
  }
  .logo {
    max-height: 80px;
  }
}
footer {
  background: #242931;
  color: rgba(255, 255, 255, 0.9);
  fill: rgba(255, 255, 255, 0.9);
  padding-top: 50px;
  padding-bottom: 30px;
}
footer .contact-box-item {
  margin-bottom: 0px;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
footer svg {
  fill: #fff;
}
footer .contact-box-icon svg {
  fill: #fff;
}
footer h1,
footer h2,
footer h3,
footer h4 {
  color: #fff;
  font-size: 22px;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
footer ul {
  padding-left: 0;
}
footer ul li {
  list-style: none;
}
.footer-partner svg {
  width: 25px;
  height: 25px;
}
.footer-bottom {
  margin-top: 20px;
  font-size: 13px;
}
.footer-bottom::after {
  content: "";
  clear: both;
  display: table;
}
.divider-simple {
  padding-top: 50px;
  padding-bottom: 50px;
}
.divider-grey {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #3fa9f5;
  color: #fff;
}
.divider-grey h1,
.divider-grey h2,
.divider-grey h3 {
  color: #fff;
}
.divider-center .container-title {
  text-align: center;
}
.divider-center .container-title:after {
  display: none;
}
.divider-lightgrey {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FAFAFA;
}
.divider-fullscreen-margin {
  margin: 0 15px;
}
.divider-fullscreen-padding {
  padding-left: 15px;
  padding-right: 15px;
}
.divider-fullscreen-title-margin h1,
.divider-fullscreen-title-margin h2 {
  margin-left: 15px;
}
.dark-container {
  background: #2F2F40;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
}
.dark-container label {
  color: #fff;
}
.light-container {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
}
.site-main-nav.navbar-collapse.show,
.site-main-nav.navbar-collapse.collapsing {
  background: #3fa9f5;
}
.navbar-nav {
  --bs-nav-link-hover-color: #3fa9f5;
}
.dropdown-toggle::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTInIGhlaWdodD0nOCcgICB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnPjxwYXRoIGQ9J00xMC42NjcgMS42NjdMNiA2LjMzMyAxLjMzMyAxLjY2NycgZmlsbD0ibm9uZSIgc3Ryb2tlPScjZmZmJyBzdHJva2Utd2lkdGg9JzEuNScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJz48L3BhdGg+PC9zdmc+");
  border: none;
  width: 14px;
  height: 8px;
  fill: #fff;
  stroke: #fff;
  margin: 0 0 0 8px;
  background-repeat: no-repeat;
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
}
.dropdown-toggle.show::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pagination {
  --bs-pagination-color: #3fa9f5;
  --bs-pagination-active-bg: #3fa9f5;
  --bs-pagination-active-border-color: #3fa9f5;
}
.pagination .page-item {
  margin: 0 5px;
}
.pagination .page-item .page-link {
  border-radius: 999px;
}
.site-main-nav {
  margin-top: 45px;
  margin-left: 30px;
}
.site-main-nav .dropdown-item.active,
.site-main-nav .dropdown-item:active {
  background: #3fa9f5;
}
.site-main-nav .dropdown-menu {
  background: #3fa9f5;
}
.site-main-nav .dropdown-menu .dropdown-item {
  color: #fff;
}
.site-main-nav .dropdown-menu .dropdown-item:hover {
  color: rgba(255, 255, 255, 0.7);
  background: none;
}
.navbar {
  --bs-navbar-nav-link-padding-x: 15px;
  --bs-navbar-color: #fff;
  --bs-navbar-active-color: #fff;
}
.nav-pills {
  --bs-nav-pills-link-active-bg: rgba(255, 255, 255, 0.1);
}
.nav-link {
  --bs-nav-link-font-size: 16px;
  --bs-nav-link-font-weight: 600;
}
@media (max-width: 992px) {
  .site-main-nav {
    margin-top: 0;
    padding: 20px;
  }
}
.home-about {
  background: #FAFAFA;
  padding: 1.5rem;
  margin-top: -50px;
  margin-bottom: -50px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-left: 70px;
}
.home-about p {
  max-width: 800px;
}
@media (max-width: 992px) {
  .home-about {
    padding-left: 20px;
  }
}
.agent-info-box {
  position: relative;
}
.agent-info-box .agent-info-box-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: -webkit-linear-gradient(top, rgba(63, 169, 245, 0) 0%, rgba(63, 169, 245, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(63, 169, 245, 0) 0%, rgba(63, 169, 245, 0.8) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003fa9f5', endColorstr='#cc3fa9f5', GradientType=0);
}
.agent-info-box .agent-info-box-content .agent-info-box-content-inner {
  position: absolute;
  bottom: 20px;
  padding: 0 15px;
}
.agent-info-box .agent-info-box-content .agent-info-box-content-inner .agent-info-box-title {
  font-size: 18px;
  font-weight: 600;
}
.agent-info-box .agent-info-box-content .agent-info-box-content-inner ul {
  display: none;
}
.agent-show-box {
  background: #3fa9f5;
  padding: 1rem;
  margin-top: 4rem;
  border-radius: 0.375rem;
}
.agent-show-box-subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.agent-info-box {
  box-shadow: 0 5px 20px 0 rgba(40, 46, 56, 0.1);
  overflow: hidden;
  border-radius: 0.375rem;
}
.agent-info-box-phone {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
  color: #3fa9f5;
  text-decoration: none;
  display: inline-block;
}
.agent-show-box-content {
  margin-left: 40px;
  color: #fff;
}
.agent-show-box-content .agent-show-contact-box {
  display: -webkit-box;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  align-items: center;
  font-weight: 600;
}
.agent-show-box-content h1,
.agent-show-box-content h2,
.agent-show-box-content h3,
.agent-show-box-content h4,
.agent-show-box-content h5,
.agent-show-box-content p {
  color: #fff;
}
.agent-show-box-content a {
  color: #3fa9f5;
  text-decoration: none;
}
.agent-show-box-content .agent-show-box-description {
  margin-top: 3rem;
}
.agent-show-box-image {
  box-shadow: 0 5px 20px 0 rgba(40, 46, 56, 0.1);
  position: relative;
}
.agent-show-box-image img {
  border-radius: 10px;
}
.agent-show-box-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 46, 56, 0)), color-stop(51%, rgba(40, 46, 56, 0)), color-stop(72%, rgba(40, 46, 56, 0.5)));
  background-image: -webkit-linear-gradient(top, rgba(40, 46, 56, 0), rgba(40, 46, 56, 0) 51%, rgba(40, 46, 56, 0.5) 72%);
  background-image: linear-gradient(180deg, rgba(40, 46, 56, 0), rgba(40, 46, 56, 0) 51%, rgba(40, 46, 56, 0.5) 72%);
}
@media (max-width: 992px) {
  .agent-show-box-content {
    margin-left: 0;
  }
}
.sticky-top-supershort-agent {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 1020;
}
.agent-info-box-super-super-short {
  display: -webkit-box;
  display: flex;
}
.agent-info-box-super-super-short .agent-info-box-super-short-image {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
}
.agent-info-box-super-super-short .agent-info-box-super-short-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.agent-info-box-super-super-short .agent-info-box-super-short-content-inner {
  display: -webkit-box;
  display: flex;
}
.agent-info-box-super-short-title {
  margin-left: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}
.agent-info-super-short-phone {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3fa9f5;
  text-decoration: none;
  margin-left: 20px;
}
.agent-info-box-short {
  position: relative;
  height: 390px;
  box-shadow: 0 5px 20px 0 rgba(40, 46, 56, 0.1);
  overflow: hidden;
  border-radius: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  max-width: 260px;
  margin-bottom: 20px;
}
.agent-info-box-short .agent-info-box-short-image img {
  max-height: 400px;
}
.agent-info-box-short .agent-info-box-short-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 46, 56, 0)), color-stop(51%, rgba(40, 46, 56, 0)), color-stop(72%, rgba(40, 46, 56, 0.5)));
  background-image: -webkit-linear-gradient(top, rgba(40, 46, 56, 0), rgba(40, 46, 56, 0) 51%, rgba(40, 46, 56, 0.5) 72%);
  background-image: linear-gradient(180deg, rgba(40, 46, 56, 0), rgba(40, 46, 56, 0) 51%, rgba(40, 46, 56, 0.5) 72%);
}
.agent-info-box-short .agent-info-box-short-content-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  padding-right: 24px;
  padding-left: 24px;
  color: #fff;
}
.agent-info-box-short .agent-info-box-short-title {
  font-size: 1.2rem;
  font-weight: bold;
}
.agent-info-box-short .agent-info-phone {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 768px) {
  .agentinfo-col {
    -webkit-box-pack: center;
    justify-content: center;
  }
  .agent-info-box-short {
    height: 250px;
    max-width: 250px;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .property-show-contact-short-title {
    font-size: 1.2rem !important;
  }
  .contact-form .btn {
    width: 100%;
  }
}
.properties-carousel .property-card {
  margin-bottom: 0;
}
.prop-highlight .card-body-adition {
  background: #3fa9f5;
}
.property-card {
  border: none;
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  margin-bottom: 20px;
  background: none;
}
.property-card a {
  text-decoration: none;
}
.property-card a.image-link {
  position: relative;
}
.property-card .image-overlay {
  -webkit-transition: all .6s ease 0s;
  transition: all .6s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(top, rgba(63, 169, 245, 0.1) 50%, #3fa9f5 100%);
  background: linear-gradient(to bottom, rgba(63, 169, 245, 0.1) 50%, #3fa9f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a3fa9f5', endColorstr='#ff3fa9f5', GradientType=0);
  opacity: 50%;
}
.property-card .propertygrid-meta {
  position: relative;
  color: #444;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}
.property-card .propertygrid-meta:last-child {
  padding-right: 0;
  margin-right: 0;
}
.property-card .propertygrid-meta:last-child:before {
  display: none;
}
.property-card .card-body {
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  opacity: 1;
}
.property-card .card-body .price {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #444;
}
.property-card .card-body .price span {
  font-size: 50%;
}
.property-card .card-body .location {
  margin-bottom: 5px;
  font-size: 13px;
  margin-top: 10px;
  color: #000;
}
.property-card .card-body .location svg {
  fill: #3fa9f5;
}
.property-card .card-body svg {
  fill: #3fa9f5;
}
.property-card .card-img,
.property-card .card-img-top {
  border-radius: 15px;
}
.property-card .propertygrid-meta-wrapper {
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
}
.property-card .property-title {
  margin-top: 13px;
  display: block;
  color: #111111;
  font-size: 14px;
  height: 50px;
  overflow: hidden;
  font-weight: 600;
  line-height: 120%;
}
.card-body {
  background: #fff;
  border-radius: 15px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: -25px 0 15px 0;
  position: relative;
}
.container-with-map {
  padding: 0;
  display: -webkit-inline-box;
  display: inline-flex;
  height: calc( 100vh - 100px);
  width: 100%;
}
.map-container {
  width: calc(100% - 750px);
  height: 100%;
  position: relative;
}
.results-container {
  width: 750px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
}
.with-map #footer {
  display: none;
}
.leaflet-control-attribution {
  display: none;
}
@media (max-width: 767px) {
  .property-card .card-body .price {
    font-size: 16px;
    margin-top: 10px;
  }
}
.properties-sort {
  display: -webkit-box;
  display: flex;
  background: #3fa9f5;
  padding: 10px;
  position: relative;
  margin-bottom: 15px;
  margin-top: -25px;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
}
.bootstrap-select.select-ordering {
  width: auto !important;
}
.sort-form-inner {
  display: -webkit-box;
  display: flex;
  gap: 10px;
}
.container-with-map .properties-sort {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
}
#property-main-gallery {
  padding-top: 50px;
}
.property-wrapper {
  background: rgba(250, 250, 250, 0.3);
}
.property-show-title {
  font-size: 1.6rem;
  margin: 15px 0;
}
.property-show-price {
  padding: 15px 30px;
  margin: 15px 0;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  background: #3fa9f5;
  border-radius: 0.375rem;
}
.property-show-price span {
  font-size: 50%;
}
.property-show-zone {
  font-size: 1rem;
  font-weight: bold;
}
.property-wrapper h2 {
  font-size: 1.4rem;
}
.property-wrapper h5 {
  font-size: 1rem;
  font-weight: bold;
}
.property-show-caracteristics-group .list-group-item {
  border-left: none;
  border-right: none;
  border-top: none;
}
.property-show-caracteristics-group .list-group-item span {
  font-weight: bold;
  margin-left: 10px;
  float: right;
}
.property-box-delimiter {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
}
.spec-item {
  line-height: 180%;
  color: #212529;
  padding-bottom: 10px;
}
.spec-item span {
  background: none;
  color: #111111;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 0.375rem;
}
.spec-item span svg {
  fill: #3fa9f5;
  opacity: .8;
}
#window-map {
  height: 300px;
}
.warning-box {
  background: #E53B75;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin: 30px 0;
  padding: 30px 0;
  font-weight: bold;
  border-radius: 15px;
}
.warning-box span {
  display: block;
}
.warning-box .warning-line2 {
  font-size: 1.2rem;
}
.property-short-caracteristics-wrapper {
  background: #3fa9f5;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.property-show-short-features {
  display: -webkit-box;
  display: flex;
}
.property-show-short-feature-block {
  padding-right: 8px;
  padding-left: 8px;
}
.property-show-short-feature-block-title {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
}
.property-show-short-feature-block-values {
  display: -webkit-box;
  display: flex;
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-box-align: center;
  align-items: center;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.property-show-short-feature-block-value {
  font-size: calc(0.8rem + 0.7vw);
  line-height: 30px;
  font-weight: 800;
}
.property-show-short-feature-block:last-of-type .property-show-short-feature-block-values {
  border-right: none;
}
.property-show-short-feature-block-icon svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #fff;
  opacity: .5;
}
.property-modal-image-wrapper {
  background: #3fa9f5;
}
.property-modal-image-wrapper img {
  max-height: 400px;
}
.mobile-contact-wrapper {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
  -webkit-animation: slide 0.5s forwards;
  animation: slide 0.5s forwards;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: auto;
  will-change: transform;
  z-index: 1000;
  padding: 5px 10px 10px 10px;
  display: none;
}
.mobile-contact {
  border-radius: 999px;
  width: 100%;
  padding: 5px 10px;
  background: #3fa9f5;
  color: #fff;
  margin-top: 5px;
}
.mobile-contact svg {
  fill: #fff;
}
.mobile-contact-phone {
  background: #3fa9f5;
}
.mobile-contact-message {
  background: #21CD5B;
}
@media (max-width: 480px) {
  .mobile-contact-wrapper {
    display: block;
  }
}
.share-wrapper {
  display: -webkit-box;
  display: flex;
  gap: 5px;
  padding-bottom: 20px;
}
.share-wrapper .btn {
  border: none;
  background: rgba(63, 169, 245, 0.8);
}
.share-wrapper .btn svg {
  width: 25px;
  height: 25px;
  fill: #fff !important;
}
.share-wrapper .social-whatsapp svg {
  fill: #25D366;
}
.share-wrapper .social-facebook svg {
  fill: #4267B2;
}
.share-wrapper .social-twitter svg {
  fill: #1DA1F2;
}
.share-wrapper .social-linkedin svg {
  fill: #0077b5;
}
.news-box-wrapper {
  padding-top: 30px;
}
.news-box {
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(250, 250, 250, 0.3);
}
.news-box:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.news-box-image {
  position: relative;
}
.news-box-item-date {
  position: absolute;
  bottom: -10px;
  left: 20px;
  display: block;
  color: #fff;
  background-color: #3fa9f5;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 24px;
}
.news-box-item-date span {
  display: block;
  font-size: 16px;
}
.news-box-short-info {
  padding: 1.3rem;
}
.news-box-short-info h3 {
  font-size: 22px;
  color: #3fa9f5;
}
.news-box-short-info h3 a {
  color: #3fa9f5;
  text-decoration: none;
}
.article-wrapper {
  margin: 50px auto 50px;
}
.article-date {
  display: block;
  color: #fff;
  background-color: #3fa9f5;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  position: absolute;
  bottom: -20px;
  right: 15px;
}
.article-date svg {
  fill: #fff;
  width: 20px;
  opacity: .7;
  height: 20px;
  margin-right: 5px;
}
.article-content {
  margin-top: 20px;
}
.article-image {
  position: relative;
}
.module-latestnews {
  margin-top: 40px;
}
.news-box-shortlist-item {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(250, 250, 250, 0.3);
  display: block;
  margin-top: 10px;
}
.news-box-shortlist-item-title {
  padding: 10px;
  font-size: 16px;
  display: block;
  color: #3fa9f5;
  text-decoration: none;
}
.blog-article-image {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.property-show-contact-short {
  width: 100%;
}
.property-show-contact-short {
  max-width: 600px;
}
.property-show-contact-short-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
  font-family: "Poppins", Aria, sans-serif;
  color: #fff;
}
.contact-box-item {
  display: -webkit-box;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-align: center;
  align-items: center;
  font-weight: 600;
}
.contact-box-item a {
  color: #444;
  text-decoration: none;
}
.contact-box-icon {
  background-color: rgba(63, 169, 245, 0.1);
  min-width: 40px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 10px;
}
.contact-box-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: #3fa9f5;
}
.footer .contact-box-item a {
  color: #fff;
}
.complexes-wrapper {
  padding-top: 30px;
}
.complex-list-box {
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  display: -webkit-box;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  background: rgba(250, 250, 250, 0.3);
  position: relative;
}
.complex-list-box .complex-list-box-image img {
  width: 250px;
}
.complex-list-box:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.complex-list-box .property-row-content {
  padding: 15px;
}
.complex-list-box .complex-list-box-title {
  font-size: 22px;
  color: #3fa9f5;
  margin-bottom: 10px;
  margin-top: 5px;
}
.complex-list-box .complex-list-box-title a {
  color: #3fa9f5;
  text-decoration: none;
}
.complex-list-box .complex-list-box-location {
  font-size: 14px;
}
.complex-list-box-body {
  width: 100%;
  display: -webkit-box;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.complex-list-box-body .complex-list-box-meta {
  background: #3fa9f5;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
}
.complex-list-box-body .complex-list-box-meta svg {
  fill: #fff;
}
@media (max-width: 480px) {
  .complex-list-box .complex-list-box-image img {
    width: 100%;
  }
  .complex-list-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
#complex-main-gallery {
  padding-top: 150px;
}
.complex-wrapper h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.complex-show-title {
  margin: 15px 0;
  text-align: center;
}
.complex-show-zone {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
.complex-show-description {
  margin-top: 30px;
  max-width: 1000px;
  text-align: center;
}
.complex-box-delimiter {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
}
.complex-properties {
  margin-top: 30px;
}
.complex-properties h2 {
  text-align: center;
}
.complex-short-caracteristics-wrapper {
  background: #3fa9f5;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.complex-show-short-features {
  display: -webkit-box;
  display: flex;
}
.complex-show-short-feature-block {
  padding-right: 8px;
  padding-left: 8px;
}
.complex-show-short-feature-block-title {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
}
.complex-show-short-feature-block-values {
  display: -webkit-box;
  display: flex;
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-box-align: center;
  align-items: center;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.complex-show-short-feature-block-value {
  font-size: calc(0.8rem + 0.7vw);
  line-height: 30px;
  font-weight: 800;
}
.complex-show-short-feature-block:last-of-type .complex-show-short-feature-block-values {
  border-right: none;
}
.complex-show-short-feature-block-icon svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #fff;
  opacity: .5;
}
.mapping-wrap {
  position: relative;
}
.mapping-wrap .hover-path {
  opacity: 1;
  fill: rgba(99, 145, 170, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mapping-wrap .hover-path:hover {
  opacity: 1;
  fill: rgba(47, 51, 56, 0.6);
}
.mapping-prev {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 50px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: #fff;
  -webkit-transition: all .6s ease 0s;
  transition: all .6s ease 0s;
  opacity: .5;
}
.mapping-prev:hover {
  opacity: 1;
  width: auto;
  color: #fff;
}
.mapping-prev:hover span {
  display: inline-block;
}
.mapping-prev svg {
  fill: #fff;
  stroke: #fff;
  height: 40px;
  width: 30px;
}
.mapping-prev span {
  display: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
}

/*# sourceMappingURL=site.css.map */

/*# sourceMappingURL=all.css.map */
