/* imports */

@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

/* vars */
:root {
  --section-gray-background: #f2f2f2;
  --hero-height: 100vh;
  --hero-subpage-height: 300px;
  --primary-color: #234dd4;
  --topbar-background: #ffffff;
  --footer-background: #234dd4;
  --header-background: #b9b9b9;
  --supbage-header-background: #b9b9b9;
  --call-to-action-background: #b9b9b9;
  --call-to-action-overlay-color: #000000;
  --call-to-action-opacity: 1;
  --footer-font-family: "Poppins", sans-serif;
  --footer-color: #fff;
  --footer-font-size: 16px;
  --footer-menu-font-family: "Poppins", sans-serif;
  --footer-menu-color: #fff;
  --footer-menu-font-size: 16px;
  --backdrop-color: rgb(0, 0, 0);
  --backdrop-opacity: 0.7;
  --nav-link-color: #303441;
  --nav-link-font: "Lato", "Helvetica", sans-serif;
  --nav-link-font-size: 12px;
  --nav-link-hover-color: #fff;
  --nav-link-hover-background: #234dd4;
  --nav-link-active-color: #fff;
  --nav-link-active-background: #234dd4;
  --btn-primary-background: #234dd4;
  --btn-primary-color: #fff;
  --btn-form-background: #234dd4;
  --btn-form-color: #fff;
  --btn-form-font-family: "Poppins", sans-serif;
  --btn-form-font-size: 18px;
  --btn-form-font-weight: normal;
  --btn-form-line-height: 1.2;
  --h1-font-family: "Poppins", sans-serif;
  --h1-font-size: 50px;
  --h1-font-weight: 600;
  --h1-color: #212529;
  --h1-line-height: 1.2;
  --h2-font-family: "Poppins", sans-serif;
  --h2-font-size: 40px;
  --h2-font-weight: 600;
  --h2-color: #212529;
  --h2-line-height: 1.2;
  --h3-font-family: "Poppins", sans-serif;
  --h3-font-size: 25px;
  --h3-font-weight: 600;
  --h3-color: #212529;
  --h3-line-height: 1.2;
  --h4-font-family: "Poppins", sans-serif;
  --h4-font-size: 20px;
  --h4-font-weight: 600;
  --h4-color: #212529;
  --h4-line-height: 1.2;
  --h5-font-family: "Poppins", sans-serif;
  --h5-font-size: 18px;
  --h5-font-weight: 600;
  --h5-color: #212529;
  --h5-line-height: 1.2;
  --h6-font-family: "Poppins", sans-serif;
  --h6-font-size: 16px;
  --h6-font-weight: 600;
  --h6-color: #212529;
  --h6-line-height: 1.2;
  --content-font-family: "Lato", "Helvetica", sans-serif;
  --content-font-size: 16px;
  --content-line-height: 1.7em;
  --content-color: #212529;
  --content-font-weight: normal;
  --content-link-font-family: "Lato", "Helvetica", sans-serif;
  /* --content-link-font-size: 16px; */
  --content-link-line-height: 1.7em;
  --content-link-color: #234dd4;
  --content-link-font-weight: normal;
  --logo-font-family: "Lato";
  --logo-font-size: 28px;
  --logo-font-weight: bold;
  --logo-color: #3590ea;
  --hero-headline-font-family: "Poppins", sans-serif;
  --hero-headline-font-size: 70px;
  --hero-headline-font-weight: 600;
  --hero-headline-color: #fff;
  --hero-headline-line-height: 1.2;
  --hero-subheadline-font-family: "Poppins", sans-serif;
  --hero-subheadline-font-size: 40px;
  --hero-subheadline-font-weight: 600;
  --hero-subheadline-color: #fff;
  --hero-subheadline-line-height: 1.2;
  --call-to-action-font-family: "Poppins", sans-serif;
  --call-to-action-font-size: 40px;
  --call-to-action-font-weight: 600;
  --call-to-action-color: #fff;
  --call-to-action-line-height: 1.2;
  --call-to-action-button-font-family: "Poppins", sans-serif;
  --call-to-action-button-font-size: 20px;
  --call-to-action-button-font-weight: normal;
  --call-to-action-button-color: #fff;
  --call-to-action-button-line-height: 1.2;
  --swiper-pagination-color: #234dd4;
  --default-font: "Poppins", sans-serif;
  --default-font-size: 16px;
  --default-font-weight: normal;
  --default-color: #333333;
  --default-line-height: 1.2;
  --service-bullet-color: #234dd4;
  --service-bullet-size: 28px;
  --aboutus-background: #b9b9b9;
}

/* defaults */
.btn {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-right: 15px;
}

.btn.btn-lg {
  font-size: 20px;
  padding: 1rem 2rem;
}

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

.btn-primary:not(:disabled):not(.disabled):active:focus {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  filter: brightness(120%);
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  filter: brightness(120%);
}

.btn-primary.focus,
.btn-primary:focus {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  filter: brightness(120%);
  box-shadow: none;
}

.btn.btn-primary:hover {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  filter: brightness(120%);
}

.btn.btn-outline-primary {
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
}

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

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  box-shadow: none;
}

.btn-outline-primary:not(:disabled):not(.disabled):active {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
  background-color: var(--btn-primary-background);
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
  box-shadow: none;
}

.btn:hover {
  transition: .2s !important;
}

.btn.btn-outline-primary.btn-view-all {
  border-color: var(--btn-primary-background);
  color: var(--btn-primary-background);
}

  .btn.btn-outline-primary.btn-view-all:hover {
    background-color: var(--btn-primary-background);
    border-color: var(--btn-primary-color);
    color: var(--btn-primary-color);
  }

  .btn-outline-primary.btn-view-all.focus,
  .btn-outline-primary.btn-view-all:focus {
    background-color: var(--btn-primary-background);
    border-color: var(--btn-primary-color);
    color: var(--btn-primary-color);
    box-shadow: none;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-family: var(--h1-font-family);
  font-weight: var(--h1-font-weight);
  font-size: var(--h1-font-size);
  color: var(--h1-color);
  line-height: var(--h1-line-height);
}

h2 {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  font-size: var(--h2-font-size);
  color: var(--h2-color);
  line-height: var(--h2-line-height);
}

h3 {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  color: var(--h3-color);
  line-height: var(--h3-line-height);
}

h4 {
  font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  font-size: var(--h4-font-size);
  color: var(--h4-color);
  line-height: var(--h4-line-height);
}

h5 {
  font-family: var(--h5-font-family);
  font-weight: var(--h5-font-weight);
  font-size: var(--h5-font-size);
  color: var(--h5-color);
  line-height: var(--h5-line-height);
}

h6 {
  font-family: var(--h6-font-family);
  font-weight: var(--h6-font-weight);
  font-size: var(--h6-font-size);
  color: var(--h6-color);
  line-height: var(--h6-line-height);
}

.subheadline {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 40px;
}

/* used for creating a 16:9 ratio div to display an image in */
.img-fluid {
  height: 0;
  padding-bottom: 56.25%;
  background-position: center;
  background-size: cover;
}

.thumb-img-fluid {
  width: 100px;
  height: 0;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

/* used for creating a 16:9 ratio div to display an iframe in */
.iframe-fluid {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.iframe-fluid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0 !important;
  z-index: 1;
}

.iframe-fluid .touch-prevention {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.pos-relative {
  position: relative;
}

.backdrop {
  position: relative;
}

.backdrop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--backdrop-color);
  opacity: var(--backdrop-opacity);
  z-index: 1;
}

.backdrop > * {
  position: relative;
  z-index: 2;
}

.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-left: 15px;
}

.social-icons li:first-child {
  margin-left: 0;
}

.social-icons li a {
  display: block;
  color: #333333;
  font-size: 22px;
  line-height: 28px;
  text-decoration: none;
}

.social-icons li a:hover {
  text-decoration: none;
}

.main-sections-container > .rw-section {
  background-color: #fff;
}

.main-sections-container > .rw-section:nth-child(odd) {
  background-color: var(--section-gray-background);
}

.rw-section > .container-fluid > .container > h2 {
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  font-size: var(--h2-font-size);
  color: var(--h2-color);
  line-height: var(--h2-line-height);
  transform: translateY(100%);
  opacity: 0;
}

.rw-section > .container-fluid > .container > h3 {
  transform: translateY(100%);
  opacity: 0;
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  color: var(--h3-color);
  line-height: var(--h3-line-height);
}

.rw-section > .container-fluid > .container > .btn {
  transform: translateY(100%);
  opacity: 0;
}

.card-body h3 {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  color: var(--h3-color);
  line-height: var(--h3-line-height);
}

.card-body p {
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.header-form-container p {
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.rw-form .btn {
  padding: 1rem 1rem;
  font-size: 18px;
  background-color: var(--btn-form-background);
  font-family: var(--btn-form-font-family);
  font-size: var(--btn-form-font-size);
  line-height: var(--btn-form-line-height);
  color: var(--btn-form-color);
  font-weight: var(--btn-form-font-weight);
}

.rw-form .btn.btn-primary {
  background-color: var(--btn-form-background);
  border-color: var(--btn-form-color);
  color: var(--btn-form-color);
}

/* .rw-form .btn-primary:not(:disabled):not(.disabled):active:focus {
  background-color: var(--btn-form-background);
  border-color: var(--btn-form-color);
  color: var(--btn-form-color);
  filter: brightness(120%);
  box-shadow: none;
}

.rw-form .btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--btn-form-background);
  border-color: var(--btn-form-color);
  color: var(--btn-form-color);
  filter: brightness(120%);
} */

.rw-form .btn-primary.focus,
.rw-form .btn-primary:focus {
  background-color: var(--btn-form-background);
  border-color: var(--btn-form-color);
  color: var(--btn-form-color);
  filter: brightness(120%);
  box-shadow: none;
}

.rw-form .btn.btn-primary:hover {
  background-color: var(--btn-form-background);
  border-color: var(--btn-form-color);
  color: var(--btn-form-color);
  filter: brightness(120%);
}

/* structure */
html,
body {
  min-height: 100%;
}

body,
#customize-preview body {
  font-family: var(--default-font);
  font-weight: var(--default-font-weight);
  font-size: var(--default-font-size);
  color: var(--default-color);
  line-height: var(--default-line-height);
}

.navbar {
  padding: 1rem 0;
}

.navbar > .container {
  overflow: visible;
}

.navbar-nav li.nav-item {
  margin-left: 10px;
}

.navbar-nav li.nav-item:first-child {
  margin-left: 0;
}

.navbar-nav li.nav-item a.nav-link {
  padding: 8px 20px;
  font-family: var(--nav-link-font);
  color: var(--nav-link-color);
  font-size: var(--nav-link-font-size);
  text-transform: uppercase;
  transition: all 0.2s ease-out;
}

.navbar-nav li.nav-item a.nav-link:hover {
  color: var(--nav-link-hover-color);
  background: var(--nav-link-hover-background);
}

.navbar-nav li.nav-item.active > a.nav-link {
	color: var(--nav-link-active-color);
  background: var(--nav-link-active-background);
}

li.nav-item {
	position: relative;
}

li.nav-item ul.sub-menu {
	position: static;
	visibility: hidden;
	width: 300px;
  background-color: var(--topbar-background);
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
  right: 0;
	bottom: 0;
	transition: all .3s ease-out;
	transform: translateY(130%);
	opacity: 0;
	filter: alpha(opacity=0);
	overflow: hidden;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
  box-shadow: 0 15px 35px 0 rgb(60 66 87 / 8%), 0 15px 15px 0 rgb(0 0 0 / 12%);
	z-index: 1;
}

li.nav-item ul.sub-menu li.nav-item {
	margin: 0;
}

li.nav-item ul.sub-menu li.nav-item a.nav-link {
	display: block;
}

li.nav-item:hover > ul.sub-menu {
	visibility: visible;
	transition-delay: .2s;
	transform: translateY(100%);
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 5;
}

.navbar-brand {
  font-family: var(--logo-font-family);
  font-weight: var(--logo-font-weight);
  font-size: var(--logo-font-size);
  color: var(--logo-color) !important;
  transform: translateY(-100%);
  opacity: 0;
}

.navbar-brand img {
  /* max-width: 80%; */
  max-height: 80px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.container-pagination {
  
}

/* map */
.map-home-page {
  height: 100%;
}

.container-map {
  height: 500px;
}

/* section hero */
.section-hero {
  text-align: center;
  background-position: bottom center;
  background-size: cover;
  background-color: var(--header-background);
  background-attachment: fixed;
  min-height: 720px;
  min-height: var(--hero-height);
}

.section-hero .row {
  min-height: 720px;
  min-height: var(--hero-height);
}

.section-hero h1 {
  font-family: var(--hero-headline-font-family);
  font-size: var(--hero-headline-font-size);
  color: var(--hero-headline-color);
  line-height: var(--hero-headline-line-height);
  font-weight: var(--hero-headline-font-weight);
  transform: translateY(20%);
  opacity: 0;
}

.section-hero .subheadline {
  font-family: var(--hero-subheadline-font-family);
  font-size: var(--hero-subheadline-font-size);
  color: var(--hero-subheadline-color);
  line-height: var(--hero-subheadline-line-height);
  font-weight: var(--hero-subheadline-font-weight);
  transform: translateY(20%);
  opacity: 0;
}

.section-hero .header-video {
  transform: translateX(-20%);
  opacity: 0;
}

  .section-hero .header-video iframe {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
    border: 1px solid #6f6f6f !important;
  }

.section-hero .hero-buttons {
  padding-top: 10%;
  transform: translateY(20%);
  opacity: 0;
}

.section-hero .hero-buttons .btn-primary {
  border-color: #FFF;
  font-family: var(--call-to-action-button-font-family);
  font-size: var(--call-to-action-button-font-size);
  color: var(--call-to-action-button-color);
  line-height: var(--call-to-action-button-line-height);
  font-weight: var(--call-to-action-button-font-weight);
}

.section-hero .hero-buttons .btn-outline-primary {
  font-family: var(--call-to-action-button-font-family);
  font-size: var(--call-to-action-button-font-size);
  line-height: var(--call-to-action-button-line-height);
  font-weight: var(--call-to-action-button-font-weight);
}

.section-hero .header-form-container {
  padding: 20px;
  background-color: #ffffffcc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
  transform: translateX(20%);
  opacity: 0;
}

.section-hero .header-form-container input,
.section-hero .header-form-container textarea,
.section-hero .header-form-container select {
  border: 1px solid #333333;
}

/* subpage hero */
.section-subpage-hero {
  text-align: center;
  background-position: bottom center;
  background-size: cover;
  background-color: var(--supbage-header-background);
  background-attachment: fixed;
  min-height: 300px;
  height: var(--hero-subpage-height);
  color: #fff;
}

.section-subpage-hero .row {
  min-height: 300px;
  height: var(--hero-subpage-height);
}

.section-subpage-hero h1 {
  font-family: var(--hero-headline-font-family);
  font-size: var(--hero-headline-font-size);
  font-weight: var(--hero-headline-font-weight);
  color: var(--hero-headline-color);
  line-height: var(--hero-headline-line-height);
  transform: translateY(20%);
  opacity: 0;
}

.section-subpage-hero-post {
  text-align: center;
  background-position: bottom center;
  background-size: cover;
  background-color: var(--supbage-header-background);
  background-attachment: fixed;
  min-height: 600px;
  height: 600px;
  color: #fff;
}

.section-subpage-hero-post .row {
  min-height: 600px;
  height: 600px;
}

.section-subpage-hero-post h1 {
  font-family: var(--hero-headline-font-family);
  font-size: var(--hero-headline-font-size);
  font-weight: var(--hero-headline-font-weight);
  color: var(--hero-headline-color);
  line-height: var(--hero-headline-line-height);
  transform: translateY(20%);
  opacity: 0;
}

/* subpage content */
.page-content .content-container {
  padding: 20px;
  /* border: 1px solid #ddd; */
}

.page-content .content-container h1,
.page-content .content-container h2,
.page-content .content-container h3,
.page-content .content-container h4,
.page-content .content-container h5,
.page-content .content-container h6 {
  color: var(--content-color);
}

.page-content .content-container h3 {
  font-weight: bold;
}

.page-content .content-container p {
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.page-content .content-container ul li {
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  /* line-height: var(--content-line-height); */
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.page-content .content-container p a,
.page-content .content-container a {
  font-family: var(--content-link-font-family);
  font-size: var(--content-link-font-size);
  line-height: var(--content-link-line-height);
  color: var(--content-link-color);
  font-weight: var(--content-link-font-weight);
}

/* sidebar */
.page-sidebar {
  /* border: 1px solid #ddd; */
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.page-sidebar a {
  color: var(--content-link-color);
}

.page-sidebar form {
  margin-bottom: 20px;
}

/* cards */
.custom-cards-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

/* properties */
.container-properties {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* recently sold */
.container-recently-sold {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.property-listing {
  display: block;
  color: #303441;
  text-decoration: none;
  transition: all 0.2s ease-out;
  transform: translateX(-30%);
  opacity: 0;
}

.property-listing:hover {
  color: #303441;
  text-decoration: none;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.property-listing .card {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  transition: all 0.2s ease-out;
}

.property-listing:hover .card {
  border-color: var(--primary-color);
}

.property-listing .card-img {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.property-listing .card-img .property-listing-status {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 10px;
  font-family: "Lato", "Helvetica", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.property-listing .card-img .property-listing-status.sold {
  background-color: #ff1c4a;
  color: #fff;
}

.property-listing .property-listing-attribute {
  color: #888888;
  padding-top: 5px;
  padding-bottom: 5px;
}

.property-listing .property-listing-attribute i {
  margin-right: 10px;
}

.property-listing .card-body h3 {
  margin-bottom: 0;
}

.property-listing .card-body h3.card-title {
  margin-bottom: 15px;
}

/* our services */
.container-services {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.service {
  display: block;
  color: #303441;
  text-decoration: none;
  transition: all 0.2s ease-out;
  transform: translateY(30%);
  opacity: 0;
}

.service:hover {
  color: #303441;
  text-decoration: none;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.service .card {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  transition: all 0.2s ease-out;
}

.service:hover .card {
  border-color: var(--primary-color);
}

.service .card-img {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service .card-body h3 {
  margin-bottom: 0;
}

.service .card-body h3.card-title {
  margin-bottom: 15px;
}

.service p {
  line-height: 1.5em;
}

/* service bullets */
ul.rw-bullets {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(50% - 10px));
  row-gap: 20px;
  column-gap: 10px;
}

ul.rw-bullets li {
  position: relative;
  list-style-type: none;
  display: flex;
  /* align-items: center; */
}

  ul.rw-bullets li .rw-bullet-body {
    display: inline-block;
    margin-left: 10px;
    width: calc(100% - 20px - var(--service-bullet-size));
    vertical-align: top;
  }

  ul.rw-bullets li .rw-bullet-title {
    display: inline-block;
    width: 100%;
  }

  ul.rw-bullets li .rw-bullet-description {
    width: 100%;
    margin-bottom: 0;
  }

  ul.rw-bullets li i {
    color: var(--service-bullet-color);
    font-size: var(--service-bullet-size);
    vertical-align: top;
    margin-top: 2px;
  }

/* blog posts */
.container-posts {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.blog-post {
  display: block;
  color: #303441;
  text-decoration: none;
  transition: all 0.2s ease-out;
  transform: translateY(30%);
  opacity: 0;
}

.blog-post:hover {
  color: #303441;
  text-decoration: none;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.blog-post .card {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  transition: all 0.2s ease-out;
}

.blog-post:hover .card {
  border-color: var(--primary-color);
}

.blog-post .card-img {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.blog-post .card-body h3 {
  margin-bottom: 0;
}

.blog-post .card-body h3.card-title {
  margin-bottom: 15px;
}

.blog-post p {
  /* line-height: 1.5em; */
}

/* testimonials */
.container-testimonials {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.container-testimonials .row {
  overflow: hidden;
}

.testimonial-slider-container {
  margin-top: 70px;
  overflow: hidden;
  white-space: nowrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  padding-bottom: 40px;
}

.testimonial-slider-container::after {
  content: "";
  display: block;
  clear: both;
}

.testimonial-slider-container .testimonial-item {
  /* width: 33.333333%; */
  padding: 0 15px;
  display: inline-block;
  white-space: normal;
}

.img-testimonial {
  margin: 0 auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.testimonial-name {
  padding-top: 15px;
  margin-bottom: 0;
}

.testimonial-position {
  color: var(--primary-color);
  text-transform: uppercase;
}

.testimonial-text {
  padding-top: 15px;
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

/* featured property */
.container-featured-property {
  perspective: 1000px;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.container-featured-property .card-featured-property {
  position: absolute;
  padding: 40px;
  padding-bottom: 80px;
  height: 90%;
  top: 5%;
  width: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.container-featured-property .property-card {
  /*backface-visibility: hidden;*/
  transform-style: preserve-3d;
}

.container-featured-property .card-featured-property .col-sm-4 {
  padding: 0;
}

.container-featured-property .card-featured-property .featured-property-price {
  position: absolute;
  left: 40px;
  bottom: 35px;
  transition: all 0.3s ease-out;
}

.container-featured-property .card-featured-property .btn-primary {
  position: absolute;
  right: 40px;
  bottom: 35px;
  margin-right: 0;
}

.container-featured-property .img-fluid {
  transition: all 0.3s ease-out;
}

.container-featured-property .card-featured-property h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease-out;
}

.container-featured-property .card-featured-property > span.text-muted {
  transition: all 0.3s ease-out;
}

.container-featured-property .card-featured-property span {
  font-family: "Lato", "Helvetica", sans-serif;
}

.featured-property-attribute::after {
  content: "";
  display: block;
  clear: both;
}

.featured-property-attribute .attribute-icon {
  float: left;
  margin-right: 10px;
  padding: 12px;
  background-color: #f2f2f2;
  min-width: 55px;
  text-align: center;
}

.featured-property-attribute .attribute-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

/* call to action */
.container-get-in-touch {
  background-position: bottom center;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--call-to-action-background);
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.rw-section .container-get-in-touch .container h2 {
  font-family: var(--call-to-action-font-family);
  font-size: var(--call-to-action-font-size);
  font-weight: var(--call-to-action-font-weight);
  color: var(--call-to-action-color);
  line-height: var(--call-to-action-line-height);
}

.container-get-in-touch .btn.btn-lg {
  border-color: #FFF;
}

.rw-section .btn-primary.cta-button {
  font-family: var(--call-to-action-button-font-family);
  font-size: var(--call-to-action-button-font-size);
  font-weight: var(--call-to-action-button-font-weight);
  color: var(--call-to-action-button-color);
  line-height: var(--call-to-action-button-line-height);
}

.get-in-touch-backdrop {
  position: relative;
}

.get-in-touch-backdrop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--call-to-action-overlay-color);
  opacity: var(--call-to-action-opacity);
  z-index: 1;
}

.get-in-touch-backdrop > * {
  position: relative;
  z-index: 2;
}

/* gallery */
.container-gallery {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.gallery-image {
  display: block;
  color: #303441;
  text-decoration: none;
  transition: all 0.2s ease-out;
  transform: translateY(30%);
  opacity: 0;
}

.gallery-image:hover {
  color: #303441;
  text-decoration: none;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.gallery-image .card {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  transition: all 0.2s ease-out;
}

.gallery .card:hover {
  border-color: var(--primary-color);
}

.gallery-image .card-img {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gallery-image .card-body h3 {
  margin-bottom: 0;
}

.gallery-image .card-body h3.card-title {
  margin-bottom: 15px;
}

.gallery-image p {
  line-height: 1.5em;
}

.rw-gallery-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .88);
	z-index: 999998;
}

.rw-gallery-modal .rw-gallery-image {
	margin: auto;
	position: relative;
}

.rw-gallery-modal .rw-gallery-image img {
	display: block;
	max-width: 100vw;
	max-height: 100vh;
	object-fit: contain;
}

.rw-gallery-modal .rw-gallery-close, .rw-gallery-modal .rw-gallery-next, .rw-gallery-modal .rw-gallery-previous {
	position: fixed;
	top: 30px;
	right: 30px;
	color: white;
	text-decoration: none;
	font-size: 26px;
	cursor: pointer;
}

.rw-gallery-modal .rw-gallery-close:hover, .rw-gallery-modal .rw-gallery-next:hover, .rw-gallery-modal .rw-gallery-previous:hover {
	color: white;
}

.rw-gallery-modal .rw-gallery-next {
	top: 50%;
	transform: translateY(-50%);
}

.rw-gallery-modal .rw-gallery-previous {
	top: 50%;
	right: initial;
	left: 30px;
	transform: translateY(-50%);
}

/* contact us */
.container-contact-us {
  padding-left: 0;
  padding-right: 0;
}

.container-contact-us > .row > .col-sm-12:first-child {
  z-index: 2;
}

.container-contact-us .contact-details {
  max-width: 570px;
  padding: 0 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.container-contact-us .contact-details h5.text-muted {
  font-size: 16px;
  line-height: 1.7em;
  font-style: italic;
}

.container-contact-us .contact-details .contact-label {
  color: #888;
  margin-bottom: 10px;
}

.container-contact-us .contact-details span.address {
  font-size: 16px;
  color: var(--primary-color);
}

.container-contact-us .map-container {
  z-index: 1;
  transform: translateX(-100%);
  opacity: 0;
}

/* about us */
.container-about-us {
    padding-left: 0;
    padding-right: 0;
}

.container-about-us .about-us-background {
  text-align: center;
  background-position: center;
  background-size: cover;
  background-color: var(--aboutus-background);
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateX(100%);
  opacity: 0;
}

.container-about-us .about-us-text p {
  font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

.rw-section.active .container-about-us .about-us-background {
  transition: .5s .5s;
  transform: translateX(0%);
  opacity: 1;
}

/* our team */
.container-our-team {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.our-team-item {
  display: block;
  color: #303441;
  text-decoration: none;
  transition: all 0.2s ease-out;
  transform: translateY(30%);
  opacity: 0;
}

.our-team-item:hover {
  color: #303441;
  text-decoration: none;
  transform: scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.our-team-item .card {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  transition: all 0.2s ease-out;
}

.our-team-item:hover .card {
  border-color: var(--primary-color);
}

.our-team-item .card-img {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.our-team-item .card-body h3 {
  margin-bottom: 0;
}

.our-team-item .card-body h3.card-title {
  margin-bottom: 15px;
}

.our-team-item p {
  line-height: 1.5em;
}

/* top bar */
.container-topbar {
  background-color: var(--topbar-background);
}

.container-code-snippet {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* footer */
.container-footer {
  background-color: var(--footer-background);
  color: var(--footer-color);
  font-family: var(--footer-font-family);
  font-size: var(--footer-font-size);
}

.container-footer h2 {
  color: var(--footer-color) !important;
}

.container-footer h3,
.container-footer h4 {
  font-weight: lighter;
  color: var(--footer-color) !important;
}

.container-footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin-left: -15px;
  margin-right: -15px;
}

.container-footer .footer-nav .navbar-nav {
  flex-direction: row;
  justify-content: center;
}

.container-footer .footer-nav .navbar-nav li.nav-item {
  clear: both;
}

.container-footer .footer-nav .navbar-nav li.nav-item::after {
  content: "|";
  margin-left: 10px;
  position: relative;
  top: 6px;
}

.container-footer .footer-nav .navbar-nav li.nav-item:last-child::after {
  content: "";
}

.container-footer .footer-nav .navbar-nav li.nav-item a.nav-link {
  float: left;
  color: var(--footer-menu-color);
  font-size: var(--footer-menu-font-size);
  font-family: var(--footer-menu-font-family);
  text-transform: none;
}

.container-footer .footer-nav .navbar-nav li.nav-item a.nav-link:hover {
  text-decoration: underline;
}

.container-footer .footer-nav .navbar-nav li.nav-item.active a.nav-link {
  background: none;
  color: var(--footer-menu-color);
  font-weight: bold;
}

.container-footer .footer-social-icons {
  position: absolute;
  right: 0;
  top: 0;
}

.container-footer .footer-social-icons .social-icons li a {
  color: var(--footer-color);
}

.container-footer .copy a {
  color: var(--footer-color);
}

.container-footer .footer-widget-container {
  display: grid;
  gap: 30px;
}

  .container-footer .footer-widget-container.columns-1 {
    grid-template-columns: 1fr;
  }

  .container-footer .footer-widget-container.columns-2 {
    grid-template-columns: 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-7 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-8 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-9 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .container-footer .footer-widget-container.columns-10 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

    .container-footer .footer-widget-container .footer-widget-column {
      /* border-right: 1px solid; */
      /* border-right-color: var(--footer-menu-color); */
      padding: 10px;
    }

      .container-footer .footer-widget-container .footer-widget-column .footer-widget-item ul {
        list-style-type: none;
        padding: 0;
      }

        .container-footer .footer-widget-container .footer-widget-column .footer-widget-item ul li {
          display: block;
          padding: 3px 0;
        }

  .container-footer .footer-widget-container a {
    color: var(--footer-menu-color);
  }

.container-footer .rw-company-name,
.container-footer .footer-company-address {
  zoom: 0.8;
}

/* property listing page */
.section-property-details {
  font-family: "Lato", "Helvetica", sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
}

.section-property-details .property-status {
  display: inline-block;
  float: left;
  margin-top: 2px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 20px;
}

.section-property-details .property-status.sold {
  background-color: #ff1c4a;
  color: #fff;
}

.section-property-details .property-views {
  display: inline-block;
  padding: 5px 10px 5px 0px;
  color: #888;
}

.section-property-details .property-views i {
  margin-right: 10px;
  font-size: 22px;
  float: left;
}

.section-property-details .property-details-action-link {
  display: inline-block;
  padding: 5px 10px;
  margin-left: 10px;
  color: #888;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
}

.section-property-details .property-details-action-link:hover {
  text-decoration: none;
}

.section-property-details .property-details-action-link:hover i {
  color: var(--primary-color);
}

.section-property-details .property-details-action-link i {
  margin-right: 10px;
  font-size: 22px;
  float: left;
}

.section-property-address .property-listing-attribute {
  display: inline-block;
  margin-right: 10px;
}

.section-property-address .property-listing-attribute span {
  font-size: 18px;
  color: #888;
}

.section-property-address .property-listing-attribute i {
  color: var(--primary-color);
  font-size: 25px;
  margin-right: 10px;
  float: left;
}

.section-property-address .property-price span {
  color: var(--primary-color);
}

.property-listing-slider-container {
  overflow: hidden;
  position: relative;
}

.property-listings-thumbs-container {
  overflow: hidden;
}

.property-listings-thumbs-container .thumb-img-fluid {
  transition: all 0.2s ease-out;
}

.property-listings-thumbs-container .swiper-slide-thumb-active {
  padding-bottom: 70px;
  border: 5px solid var(--primary-color);
}

/* our team */
.our-team-container .team-member-container {
	margin-bottom: 30px;
}

.our-team-container .team-member-container:last-child {
	margin-bottom: 0;
}

.team-member-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}

.team-member-container .team-member-image {
	flex: .2;
	flex-shrink: 0;
	padding-right: 30px;
}

.team-member-container .team-member-image img {
	display: block;
	max-width: 100%;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.team-member-container .team-member-image .team-member-name {
	margin-top: 20px;
	text-align: center;
	font-family: var(--h4-font-family);
  font-weight: var(--h4-font-weight);
  font-size: var(--h4-font-size);
  color: var(--h4-color);
  line-height: var(--h4-line-height);
}

.team-member-container .team-member-image .team-member-position {
	text-align: center;
}

.team-member-container .team-member-bio {
	flex: 1;
	padding: 30px;
	border-radius: 4px;
	background-color: var(--section-gray-background);
	text-align: left;
	overflow: hidden;
	font-family: var(--content-font-family);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  color: var(--content-color);
  font-weight: var(--content-font-weight);
}

/* wordpress elements styling */
.widget {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.widget_recent_entries ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_recent_entries ul li a {
  display: block;
  padding: 5px 10px;
  padding-left: 0;
}

/* rw-section animations */
.rw-section.active .section-hero h1,
.rw-section.active .section-subpage-hero h1,
.rw-section.active .section-subpage-hero-post h1 {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .section-hero .subheadline {
  transition: .5s .7s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .section-hero .header-video {
  transition: .5s 1.2s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .section-hero .hero-buttons {
  transition: .5s 1s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .section-hero .header-form-container {
  transition: .5s 1.2s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active > .container-fluid > .container > h2 {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active > .container-fluid > .container > h3 {
  transition: .5s .7s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active > .container-fluid > .container > .btn {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .property-listing:nth-child(n+4) {
  transition: .5s .3s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .property-listing:nth-child(1) {
  transition: .5s .3s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .property-listing:nth-child(2) {
  transition: .5s .4s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .property-listing:nth-child(3) {
  transition: .5s .5s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .property-listing:hover {
  transition: .2s ease-out;
  transform: translateY(0%) scale(0.98);
  opacity: 1;
}

.rw-section.active .service:nth-child(n+4) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .service:nth-child(1) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .service:nth-child(2) {
  transition: .5s .4s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .service:nth-child(3) {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .service:hover {
  transition: .2s ease-out;
  transform: translateY(0%) scale(0.98);
  opacity: 1;
}

.rw-section.active .blog-post:nth-child(n+4) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .blog-post:nth-child(1) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .blog-post:nth-child(2) {
  transition: .5s .4s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .blog-post:nth-child(3) {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .blog-post:hover {
  transition: .2s ease-out;
  transform: translateY(0%) scale(0.98);
  opacity: 1;
}

.rw-section.active .gallery-image:nth-child(n+4) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .gallery-image:nth-child(1) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .gallery-image:nth-child(2) {
  transition: .5s .4s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .gallery-image:nth-child(3) {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .gallery-image:hover {
  transition: .2s ease-out;
  transform: translateY(0%) scale(0.98);
  opacity: 1;
}

.rw-section.active .our-team-item:nth-child(n+4) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .our-team-item:nth-child(1) {
  transition: .5s .3s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .our-team-item:nth-child(2) {
  transition: .5s .4s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .our-team-item:nth-child(3) {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}

.rw-section.active .our-team-item:hover {
  transition: .2s ease-out;
  transform: translateY(0%) scale(0.98);
  opacity: 1;
}


.rw-section.active .container-contact-us .map-container {
  transition: .5s .5s;
  transform: translateX(0%);
  opacity: 1;
}

.rw-section.active .navbar-brand {
  transition: .5s .5s;
  transform: translateY(0%);
  opacity: 1;
}


/* float call button */
.container-float-call-button {
  background-color: #4a4a4a;
  border: 0;
  position: fixed;
  height: auto;
  bottom: 0px;
  z-index: 2;
  display: none;
}

  .container-float-call-button .float-call-button {
    font-family: var(--call-to-action-button-font-family);
    font-size: var(--call-to-action-button-font-size);
    font-weight: var(--call-to-action-button-font-weight);
    color: var(--call-to-action-button-color);
    line-height: var(--call-to-action-button-line-height);
  }

/* modal dialog */
.modal-dlg-bkg {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 99;
}

.modal-dlg {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
  padding: 0;
  background: #FFF;
  width: 100%;  
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(236,243,249,1);
  -moz-box-shadow: 0px 0px 20px 5px rgba(236,243,249,1);
  box-shadow: 0px 0px 20px 5px rgba(236,243,249,1);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.4);
  z-index: 100;
}

.modal-dlg .modal-dlg-close {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 101;
}

  .modal-dlg .modal-dlg-close a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    z-index: 101;
  }

    .modal-dlg .modal-dlg-close a i {
      -webkit-text-stroke: 1px black;
    }

.modal-dlg p {
    font: var(--main-font);
    font-size: 20px;
}

.modal-dlg .buttons-container .btn {
    min-width: 260px;
}

.property-optin-dialog {
  max-width: 1000px;
}

  .property-optin-dialog img {
    width: 100%;
  }


/* media */
@media screen and (max-width: 767px) {
	li.nav-item ul.sub-menu {
		position: static;
		visibility: visible;
		transform: none !important;
		width: 100%;
		padding-left: 30px;
		opacity: 1;
		filter: alpha(opacity=100);
		box-shadow: none;
		transition: all 0s !important;
	}
}

@media all and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .display-1 {
    font-size: 40px;
  }

  .display-2 {
    font-size: 30px;
  }

  .display-3 {
    font-size: 25px;
  }

  .display-4 {
    font-size: 20px;
  }

  .section-subpage-hero h1 {
    font-size: 40px;
  }

  .section-hero .subheadline {
    font-size: 25px;
  }

  .navbar-nav {
    border-top: 1px solid #ddd;
  }

  .container-topbar .navbar-nav {
    background-color: var(--topbar-background);
  }

  .container-topbar > .container > .navbar > .container {
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
  }
    
    .container-topbar > .container > .navbar > .container .navbar-brand {
      flex: 1;
    }

  .container-footer .footer-nav .navbar-nav {
    border-top: 0;
  }

  .navbar-nav li.nav-item {
    margin: 0;
  }

    .navbar-nav li.nav-item a.nav-link {
      padding: 14px 20px;
    }

  .navbar-brand img {
    max-width: 80%;
    max-height: 40px;
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .section-hero {
    min-height: auto;
    min-height: calc(100vh - 72px);
    padding-top: 50px;
    padding-bottom: 50px;
  }

    .section-hero .row {
      min-height: auto;
      min-height: calc(100vh - 72px);
    }

    .section-hero h1 {
      font-size: 40px;
    }

    .section-hero .subheadline {
      margin-top: 20px;
      font-size: 25px;
    }

  .hero-buttons .btn {
    margin-bottom: 20px;
  }

  .section-subpage-hero h1 {
    font-size: 40px;
  }

  /* cards */
  .custom-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .container-featured-property .card-featured-property {
    position: static;
    margin: 0 15px;
    padding: 20px;
    width: 100%;
    height: auto;
    box-shadow: none;
    border: 1px solid #dddddd;
    border-top: 0;
  }

    .container-featured-property .card-featured-property .featured-property-price {
      position: static;
      margin-top: 15px;
      min-height: 30px;
    }

    .container-featured-property .card-featured-property .btn-primary {
      right: 40px;
      bottom: 20px;
    }

    .container-featured-property .card-featured-property .row-attributes::after {
      content: "";
      display: block;
      clear: both;
    }

    .container-featured-property .card-featured-property .col-sm-4 {
      float: left;
      width: 33.333333333%;
    }

  .featured-property-attribute .attribute-icon {
    min-width: 44px;
  }

    .featured-property-attribute .attribute-icon i {
      font-size: 16px;
    }

  /* our team */
  .team-member-container {
		flex-direction: column;
		align-items: center;
	}

	.team-member-container .team-member-image {
		padding: 0;
		padding-bottom: 20px;
		max-width: 70%;
	}

  .container-contact-us [class*="col-sm-"] {
    margin-bottom: 0;
  }

  .container-contact-us .contact-details .contact-label {
    display: none;
  }

  .container-footer h2 {
    font-size: 28px;
    text-align: center;
  }

  .container-footer h3 {
    font-size: 16px;
    text-align: center;
  }

  .container-footer .footer-nav .navbar-nav {
    flex-direction: column;
  }

    .container-footer .footer-nav .navbar-nav li.nav-item {
      margin: 0;
    }

      .container-footer .footer-nav .navbar-nav li.nav-item::after {
        content: "";
        position: static;
        top: auto;
        margin: 0;
        display: none;
      }

  .container-footer .footer-nav .navbar-nav li.nav-item a.nav-link {
    float: none;
    margin: 0;
    text-align: left;
  }

  .container-footer .copy {
    display: block;
    font-size: 11px;
    text-align: center;
  }

  .container-footer .footer-social-icons {
    position: static;
    margin-top: 15px;
  }

  .container-footer .footer-social-icons .social-icons {
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    .container-footer .footer-widget-container.columns-1,
    .container-footer .footer-widget-container.columns-2,
    .container-footer .footer-widget-container.columns-3,
    .container-footer .footer-widget-container.columns-4,
    .container-footer .footer-widget-container.columns-5,
    .container-footer .footer-widget-container.columns-6,
    .container-footer .footer-widget-container.columns-7,
    .container-footer .footer-widget-container.columns-8,
    .container-footer .footer-widget-container.columns-9,
    .container-footer .footer-widget-container.columns-10 {
      grid-template-columns: 1fr;
    }

  .page-sidebar {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section-subpage-hero h1 {
    text-align: center;
  }

  [class*="col-sm-"] {
    margin-bottom: 20px;
  }

  [class*="col-sm-"]:last-child {
    margin-bottom: 0;
  }

  /* property listings */
  .section-property-details .property-views {
    display: none;
  }

  .section-property-details .text-right {
    text-align: center !important;
  }

  .section-property-details .property-details-action-link:first-child {
    margin-left: 0;
  }

  .section-property-address .col-sm-12::after {
    content: "";
    display: block;
    clear: both;
  }

  .section-property-address .property-listing-attribute {
    width: 50%;
    margin: 0;
    margin-top: 10px;
    float: left;
  }

  .rw-section > .container-fluid > .container > h2 {
    font-size: 28px !important; 
  }
  
  .rw-section > .container-fluid > .container > h3
  {
    font-size: 20px !important;
    line-height: 1.2em !important;
  }
   
  .section-hero h1 {
    font-size: 28px !important;
    text-align: center;
  }

  .section-hero .subheadline {
    font-size: 18px !important;
    text-align: center;
  }

  .navbar-brand {
    font-size: 18px !important;
  }

  .section-hero .hero-buttons {
    text-align: center !important;
  }

  .section-hero .hero-buttons a {
    margin-left: auto;
    margin-right: auto;
  }

  .property-optin-dialog {
    width: 100%;
    margin: 5px;
  }
}
