/* Floating SMIs : START */
.floating-smis {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 0;
}

.floating-smis a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: rgba(var(--secondary-color), 0.2);
  font-size: 20px;
  color: #ffffff;
  box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, 0.54);
  transition: all var(--default-transition);
}

.floating-smis a:hover {
  background: rgba(var(--primary-color), 1);
}

.floating-smis span {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: scale(-1);
  text-shadow: 0 0 3px #000000;
  margin-top: 10px;
}

.floating-smis span::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  margin-top: 12px;
  background: rgba(var(--primary-color), 1);
}

/* Floating SMIs : END */
/* Home Hero : START */
.hp-hero {
  position: relative;
  font-size: 0;
    z-index: 1;
}

.slider-tagline-holder {
  position: relative;
}

.slider-holder {
  position: relative;
}

.slider-holder::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.tagline-holder {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 15px;
  font-family: var(--font-family-title);
  font-size: 65px;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.qsearch-holder {
  position: absolute;
  width: 100%;
  bottom: 90px;
  left: 0;
}

.qsearch-container {
  position: relative;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}

.qsearch-form .qsearch-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  font-family: var(--font-family-title);
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.88);
  transition: all var(--default-transition);
}

.qsearch-form .qsearch-toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 33px;
  height: 14px;
  top: 6px;
  right: -55px;
  background: url(../../images/icon-arrow.png) no-repeat center center;
  filter: brightness(0) invert(1);
  transition: opacity var(--default-transition), transform var(--default-transition);
}

.qsearch-form .qsearch-toggle i {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
}

.qsearch-form .qsearch-toggle:hover {
  opacity: 0.5;
}

.qsearch-form form {
  display: inline-block;
  width: 75.38%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 8px 10px 20px 0px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  pointer-events: none;
  transition: all var(--default-transition);
}

.qsearch-form .gsite-input {
  display: inline-block;
  vertical-align: middle;
}

.qsearch-form .gsite-input input,
.qsearch-form .gsite-input select,
.qsearch-form .gsite-input .bootstrap-select button {
  height: 60px;
  font-size: 13px;
  color: #010101;
  letter-spacing: 0.02em;
  padding: 0 18px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.qsearch-form .gsite-input .bootstrap-select button .filter-option {
    font-size: 13px !important;
  color: #010101 !important;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  width: 100%;
}

.qsearch-form .gsite-input:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
}
.qsearch-form .gsite-select:first-child::before {
    display: none;
}
.qsearch-form .gsite-select::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(../../images/home/icon-caret.png) no-repeat center center;
  pointer-events: none;
}

.qsearch-form .gsite-input-lg {
  width: 18.36%;
}

.qsearch-form .gsite-input-md {
  width: 15.3%;
}

.qsearch-form .gsite-input-sm {
  width: 12.24%;
}

.qsearch-form .gsite-input-xs {
  width: 10.2%;
}

.qsearch-form .gsite-submit {
  display: inline-block;
  vertical-align: middle;
  width: 21.42%;
}

.qsearch-form .gsite-submit .gsite-button {
  border: 0;
}

.qsearch-form.is-active .qsearch-toggle {
  pointer-events: none;
}

.qsearch-form.is-active .qsearch-toggle::after {
  opacity: 0;
  transform: translateX(100%);
}

.qsearch-form.is-active .qsearch-toggle:hover {
  opacity: 1;
}

.qsearch-form.is-active form {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

/* Home Hero : END */
/* Home Properties : START */
.hp-properties {
  position: relative;
  padding: 110px 0 105px;
  font-size: 0;
}

.properties-container {
  position: relative;
}

.properties-title {
  text-align: center;
}

.properties-holder {
  margin: 35px -32.19% 0;
  transform: translateX(-18.4%);
}

.properties-list {
  margin: 0 -15px;
}

.properties-list:not(.slick-initialized) {
  display: flex;
}

.properties-list:not(.slick-initialized) .properties-item {
  width: 50%;
}

.properties-list:not(.slick-initialized) .properties-item:nth-child(2)~div {
  display: none;
}

.properties-item {
  padding: 0 15px;
}

.properties-item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.properties-image {
  z-index: 1;
}

.properties-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all var(--default-transition);
}

.properties-image img {
  transition: all var(--default-transition);
}

.properties-item a:hover .properties-image::after {
  opacity: 1;
}

.properties-item a:hover .properties-image img {
  filter: grayscale(1);
}

.properties-text {
  position: absolute;
  left: 50px;
  bottom: 50px;
  padding: 28px 40px 34px 50px;
  background: rgba(50, 50, 50, 0.88);
  z-index: 2;
  transition: all var(--default-transition);
}

.properties-address {
  font-family: var(--font-family-title);
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.properties-address::after {
  content: "";
  display: block;
  position: relative;
  width: 300px;
  height: 1px;
  left: -100px;
  margin-top: 16px;
  background: rgba(var(--primary-color), 1);
}

.properties-price {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-top: 24px;
}

.properties-specs {
  font-size: 11px;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.properties-specs span:not(:last-child) {
  margin-right: 20px;
}

.properties-item a:hover .properties-text {
  opacity: 0;
  transform: translateX(-100%);
}

.properties-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  transition: all var(--default-transition);
}

.properties-hover .properties-address {
  font-family: var(--font-family-title);
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.properties-hover .properties-address::after {
  width: 400px;
  max-width: 100%;
  margin: 20px auto 0;
  left: inherit;
}

.properties-hover .properties-price {
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}

.properties-hover .properties-specs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
}

.properties-hover .properties-view {
  filter: brightness(0) invert(1);
  margin-top: 42px;
  pointer-events: none;
}

.properties-item a:hover .properties-hover {
  opacity: 1;
  transform: scale(1);
}

.properties-button {
  max-width: 1280px;
  padding: 0 15px;
  margin: 35px auto 0;
}

.properties-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: #666666;
  line-height: 1;
  letter-spacing: 1em;
  text-transform: uppercase;
  transition: all var(--default-transition);
}

.properties-arrow i {
  font-size: 28px;
  margin-left: 24px;
}

.properties-arrow:hover {
  color: rgba(var(--primary-color), 1);
}

.properties-prev {
  flex-direction: row-reverse;
  margin-right: 60px;
}

.properties-prev i {
  transform: scale(-1);
  margin-left: 0;
  margin-right: 24px;
}

.properties-next {
  color: #000000;
}

/* Home Properties : END */
/* Home Welcome : START */
.hp-welcome {
  position: relative;
  padding: 110px 0 125px;
  font-size: 0;
}

.welcome-pattern {
  width: 62.5%;
}

.welcome-pattern::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}

.welcome-bg {
  width: 37.5%;
  left: inherit;
  right: 0;
}

.welcome-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--primary-color), 0.22);
}

.welcome-container {
  position: relative;
  max-width: 1270px;
  padding: 0 15px;
  margin: 0 auto;
}

.welcome-text {
  width: 42.74%;
}

.welcome-text .gsite-title {
  margin-bottom: 48px;
}

.welcome-text p {
  font-size: var(--font-size-default);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.welcome-text a.gsite-button {
  margin-top: 22px;
}

.welcome-image {
  width: 50.8%;
  padding-top: 15px;
}

.welcome-image .canvas-img {
  box-shadow: 6px 8px 20px 0px rgba(0, 0, 0, 0.55);
}

/* Home Welcome : END */
/* Home CTA : START */
.hp-cta {
  position: relative;
  padding: 95px 0;
  font-size: 0;
}

.cta-container {
  position: relative;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.cta-list {
  margin: 0 -30px;
}

.cta-item {
  width: 33.33%;
  padding: 30px;
}

.cta-item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.cta-item a::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.65);
  opacity: 0;
  z-index: 3;
  transition: all var(--default-transition);
}

.cta-item a:hover::after {
  opacity: 1;
}

.cta-image {
  z-index: 1;
}

.cta-image::before,
.cta-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all var(--default-transition);
}

.cta-image::before {
  background: rgba(255, 255, 255, 0.65);
  opacity: 0;
  z-index: 5;
}

.cta-image::after {
  background: url(../../images/home/cta-overlay.png) no-repeat center center/cover;
}

.cta-image img {
  transition: all var(--default-transition);
}

.cta-item a:hover .cta-image::before {
  opacity: 1;
}

.cta-item a:hover .cta-image::after {
  opacity: 0;
}

.cta-item a:hover .cta-image img {
  filter: grayscale(1);
  transform: scale(1.1);
}

.cta-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cta-name {
  font-family: var(--font-family-title);
  font-size: 55px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.88);
  transition: all var(--default-transition);
}

.cta-item a:hover .cta-text .cta-name {
  color: rgba(var(--secondary-color), 1);
  text-shadow: none;
}

/* Home CTA : END */
/* Home Communities : START */
.hp-communities {
  position: relative;
  font-size: 0;
}

.communities-container {
  position: relative;
  padding: 0 4px;
  margin: 0 auto;
}

.communities-title {
  text-align: center;
}

.communities-holder {
  margin-top: 35px;
}

.communities-list {
  margin: 0 -2px;
}

.communities-box {
  width: 25%;
  padding: 2px;
}

.communities-box a {
  display: block;
  position: relative;
}

.communities-image {
  z-index: 1;
}

.communities-image::before,
.communities-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all var(--default-transition);
}

.communities-image::before {
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  z-index: 5;
}

.communities-image::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

.communities-item a:hover .communities-image::before {
  opacity: 1;
}

.communities-item a:hover .communities-image::after {
  opacity: 0;
}

.communities-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 0;
  z-index: 2;
}

.communities-name {
  font-family: var(--font-family-title);
/*  font-size: 40px;*/
  font-size: clamp(20px,1.875vw,30px) !important;
  color: #ffffff;
  line-height: 0.9;
  padding: 0 10px 0 45px;
  max-width: 320px;
  transition: all var(--default-transition);
}

.communities-view {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1em;
  text-transform: uppercase;
  padding: 32px 10px 0 45px;
  transition: all var(--default-transition);
}

.communities-view::before {
  content: "";
  display: block;
  position: absolute;
  width: 250px;
  height: 1px;
  top: 0;
  left: 0;
  background: rgba(var(--primary-color), 1);
  transition: all var(--default-transition);
}

.communities-item a:hover .communities-text .communities-name {
  color: rgba(var(--secondary-color), 1);
}

.communities-item a:hover .communities-text .communities-view {
  color: rgba(var(--secondary-color), 1);
}

.communities-item a:hover .communities-text .communities-view::before {
  background: #000000;
  width: 100%;
}

.communities-more {
  display: block;
  position: relative;
}

.communities-more-image {
  z-index: 1;
}

.communities-more-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.78);
  transition: all var(--default-transition);
}

.communities-more-image img {
  transition: all var(--default-transition);
}

.communities-more:hover .communities-more-image img {
  filter: invert(1);
}

.communities-more:hover .communities-more-image::after {
  background: rgba(255, 255, 255, 0.78);
}

.communities-more-text {
  position: absolute;
  width: 100%;
  bottom: 95px;
  padding: 0 15px 34px 45px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(var(--primary-color), 1);
  transition: all var(--default-transition);
}

.communities-more-text span {
  display: flex;
  align-items: center;
  position: relative;
  font-family: var(--font-family-title);
  font-size: 40px;
  color: #ffffff;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 14px;
}

.communities-more-text span::after {
  content: "";
  display: block;
  width: 33px;
  height: 14px;
  margin-left: 22px;
  background: url(../../images/icon-arrow.png) no-repeat center center;
  filter: brightness(1);
  transition: all var(--default-transition);
}

.communities-more a:hover .communities-more-text {
  filter: brightness(0);
}

/* Home Communities : END */
/* Home Areas : START */
.hp-areas {
  position: relative;
  padding: 90px 0 100px;
  font-size: 0;
}

.areas-container {
  position: relative;
}

.map-outer {
  position: relative;
}

.map-outer::before,
.map-outer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.map-outer::before {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 5%);
}

.map-outer::after {
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 2%);
}

.map-inner {
  position: relative;
  width: 1600px;
}

.map-transparent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  max-width: 100%;
}

.map-true {
  z-index: 1;
  max-width: 100%;
}

.map-hovers>div {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 8;
}

.map-hovers>div img {
  position: relative;
  opacity: 0;
  width: auto;
  transition: all var(--default-transition);
}

.map-hovers>div .mlabel {
  position: absolute;
  font-size: 17px;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  text-shadow: rgba(153, 153, 153, 0.52) 1px 0px 0px, rgba(153, 153, 153, 0.52) 0.540302px 0.841471px 0px, rgba(153, 153, 153, 0.52) -0.416147px 0.909297px 0px, rgba(153, 153, 153, 0.52) -0.989992px 0.14112px 0px, rgba(153, 153, 153, 0.52) -0.653644px -0.756802px 0px, rgba(153, 153, 153, 0.52) 0.283662px -0.958924px 0px, rgba(153, 153, 153, 0.52) 0.96017px -0.279415px 0px;
  transition: all var(--default-transition);
}

.map-hovers>div .mlabel i {
  display: block;
  position: relative;
  width: 15px;
  height: 20px;
  margin: 0 auto 2px;
  left: -5px;
}

.map-hovers>div .mlabel i::before,
.map-hovers>div .mlabel i::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all var(--default-transition);
}

.map-hovers>div .mlabel i::before {
  background-image: url(../../images/icon-pin.png);
}

.map-hovers>div .mlabel i::after {
  background-image: url(../../images/icon-pin-a.png);
  opacity: 0;
}

.map-hovers>div.is-active img {
  opacity: 1;
}

.map-hovers>div.is-active .mlabel i::before {
  opacity: 0;
}

.map-hovers>div.is-active .mlabel i::after {
  opacity: 1;
}

.map-text {
  position: absolute;
  top: 70px;
  left: 100px;
  z-index: 10;
  pointer-events: none;
}

.map-text .gsite-title {
  width: 100%;
  margin-bottom: 38px;
}

.map-text ul {
  margin-left: -15px;
  max-width: 265px;
  display: flex;
  flex-direction: column;
}

.map-text ul li {
  margin-bottom: 15px;
}

.map-text ul li a {
  display: flex;
  align-items: center;
  font-family: var(--font-family-title);
  font-size: 25px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  padding: 6px 20px 4px 12px;
  white-space: nowrap;
  transition: all var(--default-transition);
}

.map-text ul li a::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-right: 15px;
  background: rgba(21, 21, 21, 0.5);
  transition: all var(--default-transition);
}

.map-text ul li a:hover,
.map-text ul li a.is-active {
  background: rgba(var(--primary-color), 1);
  color: #ffffff;
}

.map-text ul li a:hover::before,
.map-text ul li a.is-active::before {
  background: rgba(255, 255, 255, 0.5);
}

/* Home Areas : END */
/* Home Testimonials : START */
.hp-testimonials {
  position: relative;
  padding: 105px 0;
  font-size: 0;
}

.hp-testimonials .gsite-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}

.testimonials-container {
  position: relative;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
}

.testimonials-holder {
  margin-top: 35px;
}

.testimonials-list {
  margin: 0 -20px;
}

.testimonials-list:not(.slick-initialized) {
  display: flex;
}

.testimonials-list:not(.slick-initialized) .testimonials-item {
  width: 50%;
}

.testimonials-list:not(.slick-initialized) .testimonials-item:nth-child(2)~div {
  display: none;
}

.testimonials-item {
  padding: 0 20px;
}

.testimonials-item-inner {
  background: #ffffff;
  padding: 50px 15px;
}

.testimonials-item-inner p {
  font-size: var(--font-size-default);
  font-weight: 300;
  color: #010101;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.testimonials-item-inner img {
  margin: 24px auto 16px;
}

.testimonials-item-inner span {
  display: block;
  font-size: var(--font-size-default);
  font-weight: 600;
  color: rgba(var(--primary-color), 1);
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

a.testimonials-more {
  display: block;
  margin: 80px auto 0;
}

/* Home Testimonials : END */
/* Home Blogs : START */
.hp-blogs {
  position: relative;
  padding: 110px 0 120px;
  font-size: 0;
}

.blogs-container {
  position: relative;
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}

.blogs-title {
  text-align: center;
}

.blogs-holder {
  margin-top: 35px;
}

.blogs-list {
  margin: 0 -2px;
}

.blogs-column {
  width: 28.41%;
}

.blogs-column:nth-child(2) {
  width: 43.16%;
}

.blogs-item {
  padding: 2px;
}

.blogs-item a {
  display: block;
  position: relative;
}

.blogs-image {
  z-index: 1;
}

.blogs-image::before,
.blogs-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all var(--default-transition);
}

.blogs-image::before {
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  z-index: 5;
}

.blogs-image::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.blogs-image canvas+canvas {
  display: none;
}

.blogs-item a:hover .blogs-image::before {
  opacity: 1;
}

.blogs-column:nth-child(2) .blogs-image canvas {
  display: none;
}

.blogs-column:nth-child(2) .blogs-image canvas+canvas {
  display: block;
}

.blogs-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 42px 0;
  z-index: 2;
  transition: all var(--default-transition);
}

.blogs-name {
  font-family: var(--font-family-title);
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  padding: 0 40px;
  max-width: 460px;
}

.blogs-content {
  font-size: var(--font-size-default);
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding: 0 40px;
  opacity: 0;
  max-height: 0;
  transition: opacity var(--default-transition), max-height var(--default-transition), margin-top var(--default-transition);
}

.blogs-view {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1em;
  text-transform: uppercase;
  padding: 22px 15px 0 40px;
  margin-top: 25px;
}

.blogs-view::before {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 1px;
  top: 0;
  left: 0;
  background: rgba(var(--primary-color), 1);
  transition: all var(--default-transition);
}

.blogs-item a:hover .blogs-text {
  filter: brightness(0);
}

.blogs-item a:hover .blogs-text .blogs-content {
  opacity: 1;
  max-height: 500px;
  margin-top: 15px;
}

.blogs-item a:hover .blogs-text .blogs-view::before {
  width: 100%;
}

a.blogs-more {
  margin-top: 32px;
}

/* Home Blogs : END */
/* Home Socials : START */
.hp-socials {
  position: relative;
  padding: 120px 0 80px;
  font-size: 0;
}

.hp-socials .gsite-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
}

.socials-container {
  position: relative;
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
  display: block !important;
}

.socials-list {
  margin: 0 -2px;
}

.socials-item {
  width: 25%;
  padding: 2px;
}

.socials-item a {
  display: block;
  position: relative;
}

.socials-item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(var(--primary-color), 1);
  opacity: 0;
  transition: all var(--default-transition);
}

.socials-item a .canvas-img img {
  transition: all var(--default-transition);
}

.socials-item a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 30px;
  color: #ffffff;
  z-index: 10;
  opacity: 0;
  transition: all var(--default-transition);
}

.socials-item a:hover::after {
  opacity: 0.7;
}

.socials-item a:hover .canvas-img img {
  filter: grayscale(1);
}

.socials-item a:hover i {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.socials-links {
  margin-top: 32px;
}

.socials-links a:not(.gsite-button) {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-right: 35px;
  transition: all var(--default-transition);
}

.socials-links a:not(.gsite-button) i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(var(--primary-color), 1);
  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
  margin-right: 20px;
  box-shadow: 1px 2px 7px 0px rgba(0, 0, 0, 0.55);
}

.socials-links a:not(.gsite-button):hover {
  color: rgba(var(--primary-color), 1);
}

.socials-links a:nth-child(2) {
  margin-left: 0;
  margin-right: auto;
}

/* Home Socials : END */
@media only screen and (min-width: 992px) {

  /* Home Areas : START */
  .map-text .gsite-title {
    font-size: 60px;
  }

  .map-text .gsite-title small {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.5em;
    margin-top: 4px;
  }

  /* Home Areas : END */
}

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

  /* Home Communities : START */
  .communities-name {
    padding: 0 10px 0 35px;
  }

  .communities-view {
    padding: 32px 10px 0 35px;
  }

  .communities-more-text {
    padding: 0 15px 34px 35px;
  }

  /* Home Communities : END */
  /* Home Blogs : START */
  .blogs-text {
    padding: 20px 0;
  }

  .blogs-name {
    font-size: 25px;
    padding: 0 30px;
  }

  .blogs-content {
    padding: 0 30px;
  }

  .blogs-view {
    padding: 22px 15px 0 30px;
  }

  /* Home Blogs : END */
}

@media only screen and (max-width: 1280px) {
  .tagline-holder {
    font-size: 60px;
  }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {

  /* Home Hero : START */
  .tagline-holder {
    font-size: 55px;
  }

  .qsearch-form .qsearch-toggle {
    font-size: 24px;
  }

  .qsearch-form .gsite-select::after {
    right: 10px;
  }

  .qsearch-form .gsite-submit span::after {
    margin-left: 5px;
    background-position: right center;
  }

  /* Home Hero : END */
  /* Home Communities : START */
  .communities-text {
    padding: 30px 0;
  }

  .communities-name {
    font-size: 32px;
    padding: 0 10px 0 20px;
  }

  .communities-view {
    padding: 32px 10px 0 20px;
  }

  .communities-view::before {
    width: 200px;
  }

  .communities-more-text {
    padding: 0 15px 34px 20px;
    bottom: 71px;
  }

  .communities-more-text span {
    font-size: 32px;
  }

  /* Home Communities : END */
  /* Home Blogs : START */
  .blogs-name {
    font-size: 22px;
    padding: 0 15px;
  }

  .blogs-content {
    line-height: 1.4;
    padding: 0 15px;
    font-size: 12px;
  }

  .blogs-view {
    padding: 22px 15px 0 15px;
  }

  /* Home Blogs : END */
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

  .communities-name{
    font-size: 25px !important;
  }

  /* Home Hero : START */
  .tagline-holder {
    font-size: 40px;
  }

  .qsearch-holder {
    background: var(--background-color);
    position: relative;
    bottom: 0;
    padding: 50px 0;
  }

  .qsearch-container {
    max-width: 530px;
  }

  .qsearch-form .qsearch-toggle::after {
    display: none;
  }

  .qsearch-form form {
    width: 100%;
    margin-top: 30px;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .qsearch-form .gsite-input:nth-child(2)::before,
  .qsearch-form .gsite-input:nth-child(3)::before,
  .qsearch-form .gsite-input:nth-child(5)::before {
    display: none;
  }

  .qsearch-form .gsite-input-lg,
  .qsearch-form .gsite-input-md {
    width: 100%;
  }

  .qsearch-form .gsite-input-sm,
  .qsearch-form .gsite-input-xs {
    width: 50%;
  }

  .qsearch-form .gsite-submit {
    width: 100%;
  }

  .qsearch-form .gsite-submit .gsite-button {
    width: 100%;
  }

  /* Home Hero : END */
  /* Home Properties : START */
  .properties-container {
    padding: 0 15px;
    margin: 0 auto;
  }

  .properties-holder {
    margin: 35px 0 0;
    transform: translateX(0);
  }

  .properties-text {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 28px 30px;
  }

  .properties-more {
    margin-top: 30px;
  }

  /* Home Properties : END */
  /* Home Welcome : START */
  .welcome-pattern {
    width: 100%;
  }

  .welcome-bg {
    display: none;
  }

  .welcome-container {
    max-width: 630px;
  }

  .welcome-text {
    width: 100%;
    text-align: center;
  }

  .welcome-image {
    width: 100%;
    padding-top: 0;
    margin-top: 50px;
  }

  /* Home Welcome : END */
  /* Home CTA : START */
  .cta-container {
    max-width: 630px;
  }

  .cta-item {
    width: 100%;
  }

  /* Home CTA : END */
  /* Home Communities : START */
  .communities-container {
    max-width: 630px;
    padding: 0 15px;
  }

  .communities-box {
    width: 100%;
  }

  /* Home Communities : END */
  /* Home Areas : START */
  .areas-container {
    max-width: 630px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .map-outer {
    height: auto !important;
  }

  .map-inner {
    width: 100%;
    transform: none !important;
  }

  map,
  .map-transparent,
  .map-true,
  .map-hovers {
    display: none;
  }

  .map-text {
    position: relative;
    top: inherit;
    left: inherit;
    padding: 0 15px;
  }

  .map-text .gsite-title {
    text-align: center;
  }

  .map-text ul {
    align-items: center;
  }

  /* Home Areas : END */
  /* Home Testimonials : START */
  .testimonials-container {
    max-width: 630px;
  }

  /* Home Testimonials : END */
  /* Home Blogs : START */
  .blogs-container {
    max-width: 630px;
  }

  .blogs-column {
    width: 100% !important;
  }

  .blogs-column:nth-child(2) .blogs-image canvas {
    display: block;
  }

  .blogs-column:nth-child(2) .blogs-image canvas+canvas {
    display: none;
  }

  /* Home Blogs : END */
  /* Home Socials : START */
  .socials-links a:not(.gsite-button) {
    margin: 0 auto;
    min-width: 290px;
  }

  .socials-links a:nth-child(2) {
    margin: 15px auto;
  }

  /* Home Socials : END */
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 575px) {

  .tagline-holder {
    font-size: 31px;
  }

  /* Home Properties : START */
  .hp-properties {
    padding: 50px 0;
  }
  .properties-button {
    padding: 0;
  }
  /* Home Properties : END */
  /* Home Welcome : START */
  .hp-welcome {
    padding: 50px 0;
  }

  /* Home Welcome : END */
  /* Home CTA : START */
  .hp-cta {
    padding: 50px 0;
  }

  /* Home CTA : END */
  /* Home Blogs : START */
  .hp-blogs {
    padding: 50px 0;
  }

  /* Home Blogs : END */
  /* Home Socials : START */
  .hp-socials {
    padding: 50px 0;
  }

  .socials-item {
    width: 50%;
  }

  /* Home Socials : END */
}