:root {
    --brand-blue: #007eff;
    --brand-orange: #ff7f00;
    --brand-grey: #444444;
}

body {
    font-family: 'Cabin', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--brand-grey);
}

a {
  color: var(--brand-orange);
  text-decoration: none;
}

a:hover {
  color: var(--brand-blue);
  text-decoration: none;
}

.text-primary {
  color: var(--brand-blue) !important;
}

.btn-primary {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-primary:hover{
  background-color: var(--brand-grey);
  border-color: var(--brand-grey);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

label, a, .btn{
  cursor: pointer;
}

.color-primary {
  color: var(--brand-blue);
}

.btn-warning {
    color: #fff;
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.btn-warning:hover{
    color: #fff;
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.text-bold {
  font-weight: 600;
}

.btn {
  font-weight: 500;
  text-transform: uppercase;
}

.bg-grey{
  background: #f5f5f5;
}

.form-group {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# form filters
--------------------------------------------------------------*/
#form-filters {
  top: 120px;
  transition: all 0.5s;
  border-bottom: 1px solid #D2D2D2;
  background: #fff;
  box-shadow: inset 0 15px 20px rgb(0 0 0 / 10%);
  z-index: 990;
}

#form-filters.filterbar-scrolled{
  top: 80px;
}

@media (max-width: 992px){
  #form-filters {
    top: 125px;
  }
  #form-filters.filterbar-scrolled{
    top: 65px;
  }
}

@media (max-width: 767px){
  #form-filters {
    top: 118px;
  }
  #form-filters.filterbar-scrolled{
    top: 57px;
  }
}

#form-filters .form-label {
  font-size: 11px;
  margin-bottom: 0;
  position: relative;
  top: 25px;
  left: 12px;
  z-index: 50;
  pointer-events: none;
  font-weight: 600;
}

#form-filters .form-control {
  background: #F0F0F0;
  border: none;
  border-radius: 0;
  color: #29292980;
  /*height: 65px;*/
  box-shadow: none;
  padding-top: 25px!important;
  padding-bottom: 6px!important;
  font-weight: 500;
  font-size: 14px;
}

#form-filters select.form-control::before {
  position: absolute;
  top: 50%;
  right: 12px;
  /*content: '\f107';*/
  content: "\f005";
  display: inline-block;
  font-family: FontAwesome;
  /*font-family: "Font Awesome 5 Free";*/
  font-size: 17px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  top: calc(50% + 5px);
}

.showMapLabel{
  font-size: 13px;
  font-weight: 600;
}

.filterButtons{
  padding: 5px 10px;
  position: relative;
  top: 4px;
}

.filter-show-map,
.map-wrapper{
  display: block;
}

@media (min-width: 1200px){
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px){
  .hidden-md {
    display: none!important;
  }
}

@media (max-width: 991px){
  .form-filters {
    display: none;
  }
  .filter-location{
    flex-basis: 100%;
  }

  .filter-arrival{
    flex-basis: 50%;
  }

  .filter-departure{
    flex-basis: 50%;
  }

  .filter-bedrooms{
    flex-basis: 50%;
  }

  .filter-guests{
    flex-basis: 50%;
  }

  .filter-property-type{
    flex-basis: 50%;
  }

  .filter-additional{
    flex-basis: 50%;
  }
  .filter-additional a{
    width: 100%;
  }

  .filter-show-map{
    flex-basis: 25%;
  }

  .filter-submit{
    flex-basis: 50%;
  }
  .filter-submit button{
    width: 100%;
  }
}

.toggleBackDrop{
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: 989; 
  width: 100vw; 
  height: 100vh; 
  background-color: rgba(0,0,0,0.7);
  display: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--brand-orange);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--brand-orange);
  width: 40px;
  height: 40px;
  /*border-radius: 4px;*/
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #5ec6ca;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--brand-blue);
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar i {
  padding-right: 6px;
  line-height: 0;
}
#topbar .nav-social a {
  padding-left: 3px;
  padding-right: 3px;
}
#topbar .nav-social a i{
  border: 1px solid transparent;
  color: #fff;
  padding: 2px 5px;
  transition: all 0.3s;
}
#topbar .nav-social a i:hover{
  /*background: #fff;
  color: var(--brand-blue);*/
  border: 1px solid #fff;
}

@media (max-width: 992px) {
  #topbar{
    height: 60px;
  }
  .topbar{
    flex-direction: column;
    font-size: 14px;
  }
  .nav-social{
    margin-top: 2px;
  }
  #topbar .nav-social a i{
    padding: 1px 4px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#mainheader {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 7px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  #mainheader {
    padding: 15px 0;
    top: 60px;
  }
}
#mainheader.header-scrolled {
  top: 0;
}
#mainheader .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#mainheader .logo a {
  color: #555555;
}
    #mainheader .logo img {
        max-height: 80px;
        margin-top: -10px;
    }
@media (max-width: 992px) {
  #mainheader .logo img {
      max-height: 20px;
  }
}
.home-search-widget{
  max-width: 400px;
  z-index: 99; 
  position: relative;
  top: 75px;
}
@media (max-width: 992px) {
  .home-search-widget{
    max-width: 400px;
    top: 50px;
  }
}
.home-search-widget .card{
  background: rgba(255, 255, 255, 0.65);
  padding: 30px;
}
.form-control,
.form-control, select, input[type=color], 
input[type=date], input[type=email], 
input[type=number], input[type=password], 
input[type=text], select, textarea{
  color: #6C757D;
}
/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 25px;
  background: var(--brand-orange);
  color: #fff;
  /*border-radius: 4px;*/
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}
.appointment-btn:hover {
  background: var(--brand-blue);
  color: #fff;
}
@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 13px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--brand-orange);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  /*border-radius: 4px;*/
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--brand-orange);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding-left: 15px;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  /*border-radius: 8px;*/
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--brand-orange);
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--brand-orange);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 5%;
  padding-right: 5%;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#hero .container {
  text-align: center;
  /*background: rgba(255, 255, 255, 0.9);*/
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  /*border-top: 4px solid var(--brand-orange);*/
}
@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}
#hero h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 31px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
}
#hero p {
  margin: 0 auto 30px auto;
  color: #555555;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: var(--brand-blue);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: var(--brand-orange);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--brand-orange);
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  /*border-radius: 4px;*/
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: var(--brand-orange);
}
#hero .btn-get-started:hover {
  background: var(--brand-blue);
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .container {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Featured homes Section
--------------------------------------------------------------*/
.title-underline:after {
    content: '';
    margin: 25px auto 0;
    max-width: 520px;
    height: 2px;
    display: block;
    /*margin: auto;*/
    background: linear-gradient(to right, #fff 0%, var(--brand-blue) 50%, #fff 100%);
}

.featured-homes .featured-home-slider {
  overflow: hidden;
}
.featured-homes .featured-home-item {
  display: block;
  cursor: pointer;
  box-sizing: content-box;
  min-height: 320px;
  /*padding-bottom: 30px;*/
  /*border-radius: 15px;*/
  box-shadow: 0px 0px 1px rgb(0 0 0 / 30%);
  border: 1px solid rgb(0 0 0 / 10%);
  transition: all 0.3s;
}
.featured-homes .featured-home-item:hover{
    box-shadow: 5px 6px 10px rgb(0 0 0 / 30%);
}
.featured-homes .featured-home-item .featured-img {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  /*border-radius: 15px 15px 0px 0px;*/
  min-height: 260px;
}
@media screen and (max-width: 1451px){
  .featured-homes .featured-home-item .featured-img {
      min-height: 210px;
  }
}
.featured-homes .featured-home-item .featured-img .btn-property-detail{
  position: absolute;
  top: auto;
  bottom: 8%;
  top: auto;
  bottom: 8%;
  left: 0;
  transform: none;
  right: 0;
  margin: auto;
  max-width: 300px;
}
.featured-homes .featured-home-item:hover .btn-property-detail,
.btn-property-detail:hover{
  /*background: var(--brand-grey);
  border-color: var(--brand-grey);*/
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}
.featured-homes .featured-home-item .featured-content{
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.featured-homes .featured-home-item .featured-content h3 {
  color: var(--brand-grey);
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 300;
  margin-top: 15px;
}
.featured-homes .featured-home-item .featured-content div {
  color: #5d5d5d;
  font-size: 15px;
  padding: 6px 15px 10px 15px;
  font-weight: 300;
}

.featured-homes .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.featured-homes .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--brand-orange);
}
.featured-homes .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--brand-orange);
}
.btn-view-more{
  padding-left: 35px;
  padding-right: 35px;
}


/*--------------------------------------------------------------
# Introduction
--------------------------------------------------------------*/
#introduction .imagePart {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  min-height: 425px;
}

.parallax{
  position: absolute;
  height: 150%;
  left: 0;
  width: 100%;
}

#introduction .imagePart .imaged img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#introduction .contentPart{
  position: relative;
  /*display: flex;*/
  height: 100%;
  background: #fff;
  box-shadow: 0px 10px 50px #0000001f;
  flex-direction: column;
  padding: 50px;
  justify-content: center;
  border-radius: 3px;
  min-height: 350px;
  left: -25px;
}

#introduction .contentPart::after {
  content: '';
  position: absolute;
  top: calc(50% - 7px);
}

#introduction .contentPart::after {
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid #fff;
  right: 100%;
}

@media screen and (max-width: 768px){
  #introduction .imagePart {
    min-height: 350px;
  }
  #introduction .contentPart {
    left: 0;
    top: -25px;
    min-height: auto;
    padding: 30px;
    width: 90%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Destination
--------------------------------------------------------------*/
.destination-item {
  flex-grow: 1;
  flex-basis: 0;
}
@media screen and (max-width: 768px){
  .destination-item {
    flex-basis: auto;
    margin-bottom: 20px;
  }
}

.destination-item a{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 22;
}

.destination-item .destination-img{
  position: relative;
  height: 100%;
}

.destination-item .destination-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.destination-item:hover .destination-img img {
    transform: scale(1.1);
}

.destination-item .destination-title {
  left: unset;
  top: 0px;
  transform: none;
  bottom: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}

.destination-item .destination-title h3 {
  text-transform: capitalize;
  position: absolute;
  width: 100%;
  margin-top: 25px;
  color: #fff;
  z-index: 99;
  padding: 0 10px;
  text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
  font-weight: 400;
  font-size: 24px;
}

@media screen and (max-width: 768px){
  .destination-item .destination-title h3{
    margin-top: 20px;
    font-size: 20px;
  }
}

.destination-item .destination-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent linear-gradient(180deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.5;
  z-index: 0;
}


/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
#reviews .review-item {
  height: 100%;
}

#reviews .review-item a {
  background-color: #fff;
  box-shadow: 0 0 7px rgb(141 25 56);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
}
#reviews .review-item a:hover{
  box-shadow: 0 0 10px rgb(7 56 142 / 95%);
}
@media screen and (max-width: 768px){
  #reviews .review-item a{
    height: 95%;
  }
}
.align-v {
  display: flex;
  align-items: center;
}
#reviews .review-item a .review-sup ul{
  margin-left: 0;
  padding-left: 0;
}
#reviews .review-item a .review-sup ul.rating li {
  margin: 0;
  list-style:none;
}
#reviews .review-item a .review-sup ul.rating li i {
  color: #FFA41B;
  font-size: 16px;
}
#reviews .review-item a .review-sup .source {
  margin: 0 0 0 auto;
}
#reviews .review-item a .review-sup .source i{
  background: #FF5A5E;
  color: #fff;
  padding: 7px;
  font-size: 22px;
  border-radius: 3px;
}
#reviews .review-item a .review-description {
  margin: 15px 0 20px;
}
#reviews .review-item a .review-description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--brand-grey);
}
#reviews .review-item a .review-author {
  margin: auto 0 0 0;
}
#reviews .review-item a .review-author figure img {
  max-height: 50px;
  margin: 0 10px 0 0;
}
figcaption{
  display: block;
}
#reviews .review-item a .review-author figure figcaption strong {
  margin: 0 0 7px;
  color: var(--brand-grey);
}
#reviews .review-item a .review-author figure figcaption span {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: var(--brand-grey);
}


/*--------------------------------------------------------------
# Popular Property Types
--------------------------------------------------------------*/

.popular-properties-item{
  display: block;
  padding: 19px;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 12%);
  transition: all 0.3s;
  margin-bottom: 20px;
}

.popular-properties-item:hover{
  box-shadow: 0px 3px 12px rgb(0 0 0 / 25%);
}

.popular-properties-item h3{
  margin-top: 19px;
  color: var(--brand-grey);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer .footer-menu{
  font-weight: 600;
}
#footer .footer-menu a{
  color: var(--brand-grey);
  text-transform: uppercase;
  font-weight: 400;
}
#footer .footer-logo{
  max-width: 250px;
  margin-top: 20px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #F4F4F4;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 120px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Search Properties
--------------------------------------------------------------*/
#search-properties{
  overflow: hidden;
  height: calc(100vh - 240px);
  margin-top: 240px;
  padding: 0;
}
@media (max-width: 768px) {
  #search-properties{
    overflow: visible;
    height: auto;
    margin-top: 187px;
  }
}

#search-peroperty-main {
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  #search-peroperty-main{
    overflow: visible;
  }
}

.units-area {
  overflow-y: auto;
  padding: 15px;
  background-color: #F6F6F6;
  padding-left: 30px;
}

#map{
  /*height: 100%;*/
}

.search-property-item{
  box-shadow: 0 3px 10px rgb(0 0 0 / 12%);
  transition: all 0.3s;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .search-property-item{
    margin-bottom: 25px;
  }
}

.search-property-item .property-info{
  padding: 15px;
}
@media (max-width: 768px) {
  .search-property-item .property-info {
    padding: 12px;
  }
}

.search-property-item h3{
  font-size: 23px;
  color: var(--brand-grey);
  font-weight: 500;
}
@media (max-width: 768px) {
  .search-property-item h3{
    font-size: 20px;
  }
}

.property-ammeneties{
  color: var(--brand-grey);
  opacity: 0.75;
  justify-content: space-between;
  max-width: 300px;
  margin-bottom: 3px;
}

.search-property-item h4{
  font-size: 16px;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-item{
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
  padding: 40px;
}

.justify-content-space-between{
  justify-content:space-between;
}

/*--------------------------------------------------------------
# Local area
--------------------------------------------------------------*/
.local-area-item{
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
  padding: 40px;
}

.local-area-item h3{
  display: block;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.local-area-content figure,
.local-area-content div{
  width: 50%;
}

.local-area-content div{
  padding: 20px 0 20px 20px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--brand-orange);
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  /*border-radius: 25px;*/
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: var(--brand-orange);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#contact .social-links a:hover {
  background: var(--brand-blue);
  text-decoration: none;
}
#contact .details-list {
  margin: 30px 0;
}
#contact .details-list ul {
  margin: 0;
  padding: 0;
}
#contact .details-list ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  position: relative;
}
#contact .details-list .icon {
  background-color: var(--brand-blue);
  color: #ffffff;
  display: block;
  font-size: 25px;
  line-height: 60px;
  height: 60px;
  text-align: center;
  width: 60px;
}
#contact .details-list .icon i {
  line-height: 60px;
}
#contact .details-list .details-content {
  width: -moz-calc(100% - 60px);
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  padding-left: 20px;
}
#contact .details-list .details-content h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--brand-grey)
}


.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: var(--brand-orange);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  /*border-radius: 4px;*/
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--brand-orange);
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: var(--brand-orange);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  /*border-radius: 4px;*/
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--brand-blue);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/**Contact US Custom**/
#contact-form .pdroundedcorners {
  background-color: transparent;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

#contact-form {
  padding: 0px 30px 0 30px !important;
}

#contact-form td table td {
  width: 100% !important;
}

#contact-form td.dxeCalendarHeader_Office2003Olive table td {
  width: auto !important;
}

#contact-form #content_contact1_dteArrive_B-100,
#contact-form #content_contact1_dteDepart_B-100 {
  display: none !important;
}

#contact-form .dxeButtonEditButton_Office2003Olive {
  padding: 0px 6px !important;
}

#contact-form img[class^="dx"] {
  margin-top: 0 !important;
}


#contact-form td.dxeCalendarHeader_Office2003Olive td {
  text-align: center;
  color: #fff;
}

p#PleaseFillInTheForm {
  display: none;
}

.contacts-map {
  padding-top: 0px !important;
}

table#content_contact1_txtComments,
table#content_contact1_cmbLocation,
table#content_contact1_cmbPartySize,
table#content_contact1_dteDepart,
table#content_contact1_dteArrive,
table#content_contact1_txtTelephone,
table#content_contact1_txtEmail_ET,
table#content_contact1_txtName_ET,
table#content_contact1_txtName,
table#content_contact1_txtEmail {
  width: 100% !important;
  height: 36px !important;
  border-radius: 0;
  margin-bottom: 6px;
}

td#nameText,
td#emailText,
td#telephoneText,
td#arrivalText,
td#departureText,
td#partySizeText,
td#countryText,
td#commentsText {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
  color: #636363;
  font-weight: 400 !important;
  text-align: left;
}

input#content_contact1_cmbPartySize_I,
input#content_contact1_cmbLocation_I {
  font-weight: 400;
  text-transform: uppercase;
  color: #636363;
}

.dxbButton_Office2003Olive {
  background: none !important;
  border: none !important;
}

div#content_contact1_btnSubmit_CD {
  background-color: var(--brand-blue) !important;
  color: white !important;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 50px !important;
  border: 1px solid var(--brand-blue) !important;
}

div#content_contact1_btnSubmit_CD:hover {
  background-color: #fff !important;
  color: var(--brand-blue) !important;
}

div#content_contact1_btnSubmit {
  float: right !important;
  border: none !important;
}

.dxeButtonEditButton_Office2003Olive {
  background: var(--brand-blue) !important;
  border: 1px Solid var(--brand-blue);
}

.dxeCalendarHeader_Office2003Olive {
  background: var(--brand-blue);
  border-bottom: 1px solid var(--brand-blue);
}

#contactform td[align="right"] {
  width: 40% !important;
}

#contact-form td table td.dxeCalendarButton_Office2003Olive {
  width: 130px !important;
}

#contact-form td table td.dxeCalendarFooter_Office2003Olive {
  padding-left: 65px;
  padding-right: 65px;
  background-color: #E9E9E9;
  border-top: 1px solid #CCCCCC;
}

.contact-info .tel,
.contact-info .tel p {
  padding: 20px 10px;
  font-size: 18px;
  line-height: 40px;
  font-weight: 700;
  height: auto;
  color: #fff;
}

.contact-info .tel [class^='icon-'],
.contact-info .tel [class*=' icon-'] {
  margin-right: 5px;
  display: inline-block;
}

.contact-info .tel p {
  padding: 0;
  margin-bottom: 0;
  display: inline-block;
}

.dxeButtonEditButtonHover_Office2003Olive .dxEditors_edtClear_Office2003Olive,
.dxEditors_caRefresh_Office2003Olive,
.dxEditors_edtBinaryImageDelete_Office2003Olive,
.dxEditors_edtBinaryImageOpenDialog_Office2003Olive,
.dxEditors_edtCalendarFNNextYear_Office2003Olive,
.dxEditors_edtCalendarFNPrevYear_Office2003Olive,
.dxEditors_edtCalendarNextMonth_Office2003Olive,
.dxEditors_edtCalendarNextMonthDisabled_Office2003Olive,
.dxEditors_edtCalendarNextYear_Office2003Olive,
.dxEditors_edtCalendarNextYearDisabled_Office2003Olive,
.dxEditors_edtCalendarPrevMonth_Office2003Olive,
.dxEditors_edtCalendarPrevMonthDisabled_Office2003Olive,
.dxEditors_edtCalendarPrevYear_Office2003Olive,
.dxEditors_edtCalendarPrevYearDisabled_Office2003Olive,
.dxEditors_edtClear_Office2003Olive,
.dxEditors_edtDETSClockFace_Office2003Olive,
.dxEditors_edtDETSHourHand_Office2003Olive,
.dxEditors_edtDETSMinuteHand_Office2003Olive,
.dxEditors_edtDETSSecondHand_Office2003Olive,
.dxEditors_edtDropDown_Office2003Olive,
.dxEditors_edtDropDownDisabled_Office2003Olive,
.dxEditors_edtEllipsis_Office2003Olive,
.dxEditors_edtEllipsisDisabled_Office2003Olive,
.dxEditors_edtError_Office2003Olive,
.dxEditors_edtRadioButtonChecked_Office2003Olive,
.dxEditors_edtRadioButtonCheckedDisabled_Office2003Olive,
.dxEditors_edtRadioButtonUnchecked_Office2003Olive,
.dxEditors_edtRadioButtonUncheckedDisabled_Office2003Olive,
.dxEditors_edtSpinEditDecrementImage_Office2003Olive,
.dxEditors_edtSpinEditDecrementImageDisabled_Office2003Olive,
.dxEditors_edtSpinEditIncrementImage_Office2003Olive,
.dxEditors_edtSpinEditIncrementImageDisabled_Office2003Olive,
.dxEditors_edtSpinEditLargeDecImage_Office2003Olive,
.dxEditors_edtSpinEditLargeDecImageDisabled_Office2003Olive,
.dxEditors_edtSpinEditLargeIncImage_Office2003Olive,
.dxEditors_edtSpinEditLargeIncImageDisabled_Office2003Olive,
.dxEditors_edtTBDecBtn_Office2003Olive,
.dxEditors_edtTBDecBtnDisabled_Office2003Olive,
.dxEditors_edtTBDecBtnHover_Office2003Olive,
.dxEditors_edtTBDecBtnPressed_Office2003Olive,
.dxEditors_edtTBIncBtn_Office2003Olive,
.dxEditors_edtTBIncBtnDisabled_Office2003Olive,
.dxEditors_edtTBIncBtnHover_Office2003Olive,
.dxEditors_edtTBIncBtnPressed_Office2003Olive,
.dxEditors_edtTokenBoxTokenRemoveButton_Office2003Olive,
.dxEditors_edtTokenBoxTokenRemoveButtonDisabled_Office2003Olive,
.dxEditors_fcadd_Office2003Olive,
.dxEditors_fcaddhot_Office2003Olive,
.dxEditors_fcgroupaddcondition_Office2003Olive,
.dxEditors_fcgroupaddgroup_Office2003Olive,
.dxEditors_fcgroupand_Office2003Olive,
.dxEditors_fcgroupnotand_Office2003Olive,
.dxEditors_fcgroupnotor_Office2003Olive,
.dxEditors_fcgroupor_Office2003Olive,
.dxEditors_fcgroupremove_Office2003Olive,
.dxEditors_fcopany_Office2003Olive,
.dxEditors_fcopavg_Office2003Olive,
.dxEditors_fcopbegin_Office2003Olive,
.dxEditors_fcopbetween_Office2003Olive,
.dxEditors_fcopblank_Office2003Olive,
.dxEditors_fcopcontain_Office2003Olive,
.dxEditors_fcopcount_Office2003Olive,
.dxEditors_fcopend_Office2003Olive,
.dxEditors_fcopequal_Office2003Olive,
.dxEditors_fcopexists_Office2003Olive,
.dxEditors_fcopgreater_Office2003Olive,
.dxEditors_fcopgreaterorequal_Office2003Olive,
.dxEditors_fcopless_Office2003Olive,
.dxEditors_fcoplessorequal_Office2003Olive,
.dxEditors_fcoplike_Office2003Olive,
.dxEditors_fcopmax_Office2003Olive,
.dxEditors_fcopmin_Office2003Olive,
.dxEditors_fcopnotany_Office2003Olive,
.dxEditors_fcopnotbetween_Office2003Olive,
.dxEditors_fcopnotblank_Office2003Olive,
.dxEditors_fcopnotcontain_Office2003Olive,
.dxEditors_fcopnotequal_Office2003Olive,
.dxEditors_fcopnotlike_Office2003Olive,
.dxEditors_fcopsingle_Office2003Olive,
.dxEditors_fcopsum_Office2003Olive,
.dxEditors_fcoptypefield_Office2003Olive,
.dxEditors_fcoptypefieldhot_Office2003Olive,
.dxEditors_fcoptypevalue_Office2003Olive,
.dxEditors_fcoptypevaluehot_Office2003Olive,
.dxEditors_fcremove_Office2003Olive,
.dxEditors_fcremovehot_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedMDHSys .dxEditors_edtTBMainDH_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedMDHSys .dxEditors_edtTBMainDHHover_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedMDHSys .dxEditors_edtTBMainDHPressed_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDH_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDHHover_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBHSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDHPressed_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedMDHSys .dxEditors_edtTBMainDH_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedMDHSys .dxEditors_edtTBMainDHHover_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedMDHSys .dxEditors_edtTBMainDHPressed_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDH_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDHHover_Office2003Olive,
.dxeFocused_Office2003Olive .dxeTBVSys .dxeFocusedSDHSys .dxEditors_edtTBSecondaryDHPressed_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBMainDH_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBMainDHDisabled_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBMainDHHover_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBMainDHPressed_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBSecondaryDH_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBSecondaryDHDisabled_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBSecondaryDHHover_Office2003Olive,
.dxeTBHSys .dxEditors_edtTBSecondaryDHPressed_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBMainDH_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBMainDHDisabled_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBMainDHHover_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBMainDHPressed_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBSecondaryDH_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBSecondaryDHDisabled_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBSecondaryDHHover_Office2003Olive,
.dxeTBVSys .dxEditors_edtTBSecondaryDHPressed_Office2003Olive {
  background-image: url(../img/DXR2.png?&notemplatecache=1) !important;
}

.dxEditors_edtDropDown_Office2003Olive, .dxEditors_edtDropDown_Office2003Olive {
  background-position: -144px -168px;
  width: 9px;
  height: 6px;
}

.dxEditors_edtCalendarPrevYear_PlasticBlue, .dxEditors_edtCalendarPrevYear_Office2003Olive {
  background-position: -126px -143px;
  width: 13px;
  height: 7px;
}

.dxEditors_edtCalendarPrevMonth_PlasticBlue, .dxEditors_edtCalendarPrevMonth_Office2003Olive {
  background-position: -58px -143px;
  width: 9px;
  height: 7px;
}

.dxEditors_edtCalendarNextMonth_PlasticBlue, .dxEditors_edtCalendarNextMonth_Office2003Olive {
  background-position: -78px -143px;
  width: 9px;
  height: 7px;
}
.dxEditors_edtCalendarNextYear_PlasticBlue, .dxEditors_edtCalendarNextYear_Office2003Olive {
  background-position: -98px -143px;
  width: 13px;
  height: 7px;
}

.dxeTextBox_Office2003Olive,
.dxeButtonEdit_Office2003Olive,
.multiTxtInput {
  border: 1px solid #eceaea;
}

.dxeFocused_Office2003Olive {
  border: 1px solid #38b6ff;
}

.dxeCalendar_Office2003Olive {
  border: none;
}

.dxeCalendarButton_Office2003Olive,
.dxeColorEditButton_Office2003Olive {
  border: 1px Solid #CCCCCC;
  background: transparent;
}

.dxeCalendarButtonPressed_PlasticBlue,
.dxeColorEditButton_PlasticBlue:active,
.dxeCalendarButtonHover_Office2003Olive,
.dxeColorEditButton_Office2003Olive:hover {
  background: #dcdcdc !important;
}

.dxeButtonEditButtonHover_Office2003Olive {
  opacity: 0.9;
}


.dxeButtonEditButton_PlasticBlue {
  background: var(--brand-blue) !important;
  border: 1px Solid var(--brand-blue);
}

.dxeCalendarHeader_PlasticBlue {
  background: var(--brand-blue);
  border-bottom: 1px solid var(--brand-blue);
}
.dxpcDropDown_Office2003Olive, .dxeDropDownWindow_Office2003Olive{
  top: 36px !important;
  left: 0 !important;
}

#contact-form td table td.dxeCalendarHeader_PlasticBlue table td {
  width: auto !important;
}

#contact-form td table td.dxeCalendarFooter_PlasticBlue.dx-ac table td {
  width: auto !important;
  text-align: center;
}

#contact-form #content_contact1_dteArrive_B-100,
#contact-form #content_contact1_dteDepart_B-100 {
  display: none !important;
}

#contact-form .dxeButtonEditButton_PlasticBlue {
  padding: 0px 6px !important;
}

#contact-form img[class^="dx"] {
  margin-top: 0 !important;
}

#contact-form td.dxeCalendarHeader_PlasticBlue img[class^="dx"] {
  margin-top: 6px !important;
}

#contact-form td.dxeCalendarHeader_PlasticBlue td {
  text-align: center;
}

.dxeCalendarFooter_PlasticBlue.dx-ac {
  padding: 10px !important;
}

input[type="text"].dxeEditArea_PlasticBlue, input[type="password"].dxeEditArea_PlasticBlue, .dxeMemoEditArea_PlasticBlue{
  padding: 6px 5px;
  width: 100%;
  color: #636363;
  display: inline-block;
}

table.bodyTextsize2 tr td[align="left"]{position: relative !important;}

@media screen and (max-width: 991px) {
  #contact-form {
    padding: 0px !important;
  }
}

@media screen and (max-width: 800px) {

  #contact-form table {
    border-collapse: separate;
  }

  #contact-form td {
    text-align: left;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px !important;
  }

  #contact-form td.spacer {
    margin: 0 !important;
    height: 0;
  }

  #contact-form td:first-child {
    margin-top: 5px;
    width: 100% !important;
  }

  #contact-form td table td {
    display: table-cell;
    border-collapse: collapse !important;
  }

  #contact-form td table td[ontouchstart="return ASPx.DDDropDown('content_contact1_cmbPartySize', event)"],
  #contact-form td table td[ontouchstart="return ASPx.DDDropDown('content_contact1_cmbLocation', event)"] {
    width: 95% !important;
  }
}


/** End Of Contact US**/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}
#footer .footer-top {
  background: #f6f6f6;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--brand-orange);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--brand-orange);
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  /*border-radius: 4px;*/
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--brand-orange);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--brand-blue);
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

/*** HEAD CSS 04-04-2022 ***/
body {
  background: none !important;
}

table {
  width: 100% !important;
}

table#table3,
table#FooterTable {
  display: none !important;
}

#header.header-scrolled,
#header.header-scrolled #header {
  top: 0;
}

body.home-page #footer {
  margin-top: -40px;
}

.hydrationcontainer {
  width: 50%;
  float: left;
  padding: 0 15px;
}

.search-property-item .imgwrap {
  max-height: 400px;
  overflow: hidden;
}

.search-property-item .imgwrap img {
  width: 100%;
  min-height: 440px;
}

#SearchGridContainer,
.bodyText br {
  display: none;
}

.dxpLite_Office2003Olive .dxp-current {
  background-color: transparent !important;
}

.dxgvPagerBottomPanel_Office2003Olive {
  background: none !important;
}

.searchBTN-wrapper div {
  margin: 0 5px;
}

.searchBTN-wrapper div:first-child {
  margin-left: 0;
}

.searchBTN-wrapper div:last-child {
  margin-right: 0;
}

.sticky-kit-02.sticky,
.sticky-kit-02.abs {
  position: fixed;
  top: 130px;
  max-width: 386px;
}

#footer {
  position: relative;
  z-index: 99999;
}

.bodyTextSm {
  position: relative;
  z-index: 999999;
  background: #fff;
}

div#map-canvas {
  height: 100% !important;
}

@media screen and (max-width: 1450.9px) {
  #units-area.show_map .search-property-item .imgwrap {
    max-height: 330px;
  }

  #units-area.show_map .search-property-item .imgwrap img {
    min-height: 330px;
  }
}


@media screen and (max-width: 1399px) {

  .sticky-kit-02.sticky,
  .sticky-kit-02.abs {
    max-width: 326px;
  }
}

@media screen and (max-width: 1280.9px) {
  #units-area.show_map .search-property-item .imgwrap {
    max-height: 260px;
  }

  #units-area.show_map .search-property-item .imgwrap img {
    min-height: 260px;
  }
}

@media screen and (max-width: 1199px) {

  .sticky-kit-02.sticky,
  .sticky-kit-02.abs {
    max-width: 265px;
  }

  body.search-page .col.filter-location {
    flex: 1 0 40%;
  }

  body.search-page .col.filter-arrival,
  body.search-page .col.filter-departure {
    flex: 1 0 25%;
  }

  body.search-page .col.filter-bedrooms,
  body.search-page .col.filter-guests {
    flex: 1 0 13%;
  }

  body.search-page .col.filter-property-type {
    flex: 1 0 15%;
  }

  #search-properties {
    margin-top: 287px;
  }

  #units-area.show_map .search-property-item .imgwrap {
    max-height: 240px;
  }

  #units-area.show_map .search-property-item .imgwrap img {
    min-height: 240px;
  }
}

@media screen and (max-width:1024.9px) {
  #units-area.show_map .search-property-item .imgwrap {
    max-height: 200px;
  }

  #units-area.show_map .search-property-item .imgwrap img {
    min-height: 200px;
  }

  #units-area .search-property-item .imgwrap {
    max-height: 314px;
  }

  #units-area .search-property-item .imgwrap img {
    min-height: 314px;
  }
}

@media screen and (max-width: 1023px) {
  .home-search-widget {
    right: 7%;
  }

}


@media screen and (max-width: 991.9px) {

  .sticky-kit-02.sticky,
  .sticky-kit-02.abs {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  #form-filters {
    top: 118px;
  }

  #form-filters.filterbar-scrolled {
    top: 58px;
  }

  body.search-page .col.filter-bedrooms,
  body.search-page .col.filter-guests,
  body.search-page .col.filter-property-type {
    flex: 1 0 30%;
  }

  body.search-page .col.filter-additional,
  body.search-page .col.filter-show-map,
  body.search-page .col.filter-submit {
    flex-basis: 30%;
  }

  #search-properties {
    margin-top: 188px;
    height: 100% !important;
  }

  .map-wrapper.show_map #map {
    display: block;
  }

  .map-wrapper #map {
    display: none;
  }

  #units-area.show_map .search-property-item .imgwrap {
    max-height: 303px;
  }

  #units-area.show_map .search-property-item .imgwrap img {
    min-height: 303px;
  }

  .local-area-item .local-area-content {
    display: block !important;
  }

  .local-area-item .local-area-content figure,
  .local-area-item .local-area-content div {
    width: 100%;
  }

  .local-area-item .local-area-content div {
    padding: 10px 0 20px 0;
  }
}

@media screen and (max-width: 800.9px) {

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 246px;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 246px;
  }
}

@media screen and (max-width: 768.9px) {

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 230px;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 230px;
  }
}

@media screen and (max-width: 767.9px) {
  .col-xs-12 {
    width: 100% !important;
  }

  .home-search-widget {
    right: 22%;
  }

  #introduction {
    padding-left: 15px;
    padding-right: 15px;
  }

  #introduction .contentPart::after {
    display: none;
  }

  #search-properties {
    overflow: hidden;
  }

  #search-properties .units-area {
    padding-left: 15px;
  }

  #search-properties #results-stuff {
    padding-left: 25px;
  }
}

@media screen and (max-width: 668.9px) {

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 210px;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 210px;
  }
}

@media screen and (max-width: 600.9px) {
  .home-search-widget {
    right: 19%;
  }

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 185px;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 185px;
  }

  #units-area.show_map .search-property-item h3,
  #units-area .search-property-item h3 {
    min-height: 50px;
  }
}

@media screen and (max-width: 575.9px) {
  .featured-home-slider {
    max-width: 521px;
    overflow: hidden;
  }

  .home-search-widget {
    right: 17%;
  }
}

@media screen and (max-width: 569px) {
  .featured-home-slider {
    max-width: 515px;
  }
}

@media screen and (max-width: 533.9px) {
  .featured-home-slider {
    max-width: 479px;
  }

  .home-search-widget {
    right: 15%;
  }

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 160px;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 160px;
  }
}

@media screen and (max-width: 481px) {
  .featured-home-slider {
    max-width: 426px;
  }

  .home-search-widget {
    max-width: 300px;
  }

  .hydrationcontainer {
    width: 100%;
    float: none;
  }

  #units-area.show_map .search-property-item .imgwrap,
  #units-area .search-property-item .imgwrap {
    max-height: 100%;
  }

  #units-area.show_map .search-property-item .imgwrap img,
  #units-area .search-property-item .imgwrap img {
    min-height: 100%;
  }

  #units-area.show_map .search-property-item h3,
  #units-area .search-property-item h3 {
    min-height: 100%;
  }

  body.search-page .col.filter-location {
    flex: 1 0 100%;
  }

  body.search-page .col.filter-arrival,
  body.search-page .col.filter-departure {
    flex: 1 0 50%;
  }

  body.search-page .col.filter-bedrooms,
  body.search-page .col.filter-guests,
  body.search-page .col.filter-property-type {
    flex: 1 0 50%;
  }

  body.search-page .col.filter-additional,
  body.search-page .col.filter-show-map,
  body.search-page .col.filter-submit {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 415px) {
  .featured-home-slider {
    max-width: 360px;
  }

  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;

  }

  #hero h2 {
    font-size: 22px;
  }

  .home-search-widget .card {
    padding: 20px;
  }

  .home-search-widget {
    right: 14%;
    max-width: 300px;
  }
}

@media screen and (max-width: 401px) {
  .featured-home-slider {
    max-width: 346px;
  }
}

@media screen and (max-width: 384px) {
  .featured-home-slider {
    max-width: 330px;
  }

  .home-search-widget {
    right: 11%;
    max-width: 270px;
  }
}

@media screen and (max-width: 376px) {
  .featured-home-slider {
    max-width: 322px;
  }

  .home-search-widget {
    max-width: 264px;
  }
}

@media screen and (max-width: 361px) {
  .featured-home-slider {
    max-width: 306px;
  }

  .home-search-widget {
    max-width: 250px;
  }
}

@media screen and (max-width: 321px) {
  .featured-home-slider {
    max-width: 266px;
  }

  .home-search-widget .card {
    padding: 15px;
  }

  .home-search-widget {
    max-width: 223px;
  }
}

/*** END HEAD CSS 04-04-2022 ***/


/*** START HEAD CSS 05-26-2022 ***/
#topbar {
  z-index: 9999;
}

#topbar .nav-social a.signinBTN {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
}

#topbar .nav-social a.signinBTN i {
  position: relative;
  top: 2px;
  padding-right: 0;
  font-size: 18px;
}

div#signin .modal-body {
  padding: 50px 0;
}

div#signin .login {
  text-align: center;
}

div#signin .login .form-row {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
}

div#signin .login a {
  width: 50%;
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
  color: #fff;
}

div#signin .login a:hover {
  background: transparent;
  color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
}

ul.top-language,
ul.top-language ul {
  padding: 0;
  margin: 0;
}

ul.top-language {
  list-style: none;
  position: relative;
  top: 0;
  z-index: 999;
  margin-left: 10px;
}

ul.top-language ul {
  display: none;
  margin: 0;
  background-color: #ffffff;
  padding: 0px 8px 2px;
  left: -7px;
  position: absolute;
  list-style: none;
}

ul.top-language:hover ul {
  display: block;
}

li.translate-wrap li {
  line-height: 18px;
}

.testimonialSlider .slick-slide {
  float: left;
  margin: 10px;
}

.testimonialSlider .slick-prev:before,
.testimonialSlider .slick-next:before {
  color: var(--brand-orange);
}

.testimonialSlider .slick-prev {
  left: 15px;
  z-index: 9999;
}

.testimonialSlider .slick-next {
  right: 15px;
  z-index: 99;
}

.navbar-mobile .mobile-nav-toggle {
  top: 55px;
  color: #000;
}


/**Google Translate**/
.translate-wrap .dropdown-menu {
  min-width: 70px;
  text-align: center;
  left: -11px !important;
}

.translate-wrap .dropdown-menu ul {
  padding: 8px 10px
}

.translate-wrap .dropdown-menu>ul>li>a {
  padding: 0
}

.translate-wrap a.gflag {
  vertical-align: middle;
  font-size: 16px;
  padding: 1px 0;
  background-repeat: no-repeat;
  background-image: url(//gtranslate.net/flags/16.png) !important;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0
}

.translate-wrap a.gflag img {
  border: 0
}

.translate-wrap a.gflag:hover {
  background-image: url(//gtranslate.net/flags/16a.png) !important
}

#goog-gt-tt {
  display: none !important
}

.goog-te-banner-frame {
  display: none !important
}

.goog-te-menu-value:hover {
  text-decoration: none !important
}

#google_translate_element2 {
  display: none !important
}
/**END OF Google Translate**/

@media screen and (max-width: 992px) {
  .topbar {
    flex-direction: inherit;
  }

  #topbar {
    height: 34px;
  }

  #topbar a {
    font-size: 12px;
  }

  #mainheader {
    padding: 20px 0;
    top: 34px;
  }

  #mainheader .logo img {
    max-height: 74px;
    position: absolute;
    top: 11px;
  }

  #topbar .nav-social a.signinBTN {
    font-size: 12px;
  }

  #topbar .nav-social a.signinBTN i {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  #mainheader {
    padding: 26px 0;
  }
}

@media screen and (max-width: 767px) {
  .topbar {
    flex-direction: column;
  }

  #topbar {
    height: 50px;
  }

  #mainheader {
    top: 50px;
  }
}

@media screen and (max-width: 575px) {
  .testimonialSlider {
    max-width: 540px;
  }
}

@media screen and (max-width: 534px) {
  .testimonialSlider {
    max-width: 509px;
  }
}

@media screen and (max-width: 482px) {
  .testimonialSlider {
    max-width: 456px;
  }
}

@media screen and (max-width: 415px) {
  .testimonialSlider {
    max-width: 390px;
  }
}

@media screen and (max-width: 401px) {
  .testimonialSlider {
    max-width: 376px;
  }
}

@media screen and (max-width: 385px) {
  .testimonialSlider {
    max-width: 360px;
  }
}

@media screen and (max-width: 376px) {
  .testimonialSlider {
    max-width: 352px;
  }
}

@media screen and (max-width: 361px) {
  .testimonialSlider {
    max-width: 336px;
  }
}

@media screen and (max-width: 321px) {
  .testimonialSlider {
    max-width: 296px;
  }
}
/*** END HEAD CSS 05-26-2022 ***/