/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Text title: <span class="highlight"> — Avada Highlight: .fusion-highlighted-text */
#wrapper .fusion-body .fusion-title .highlight,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text,
#wrapper .fusion-title .highlight,
#wrapper .fusion-title .fusion-highlighted-text,
#wrapper .highlight {
  background-color: #787fff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  z-index: 2;
  transform: rotate(-3deg) scale(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  background-image: none;
  -webkit-box-decoration-break: unset;
  box-decoration-break: unset;
}

@keyframes pulse-bounce-lft {
  0% {
    transform: rotate(3deg) scale(1);
  }
  40% {
    transform: rotate(3deg) scale(0.9);
  }
  50% {
    transform: rotate(3deg) scale(0.93);
  }
  70% {
    transform: rotate(3deg) scale(0.91);
  }
  80% {
    transform: rotate(3deg) scale(0.93);
  }
  90% {
    transform: rotate(3deg) scale(0.92);
  }
  100% {
    transform: rotate(3deg) scale(0.93);
  }
}

/* From hover rest scale (0.93) back to 1 — .is-bouncing-out added on mouseleave via JS */
@keyframes pulse-bounce-out-lft {
  0% {
    transform: rotate(3deg) scale(1);
  }
  40% {
    transform: rotate(3deg) scale(0.97);
  }
  70% {
    transform: rotate(3deg) scale(1);
  }
  90% {
    transform: rotate(3deg) scale(0.99);
  }
  100% {
    transform: rotate(3deg) scale(1);  
  }
}
@keyframes pulse-bounce {
  0% {
    transform: rotate(-3deg) scale(1);
  }
  40% {
    transform: rotate(-3deg) scale(0.9);
  }
  50% {
    transform: rotate(-3deg) scale(0.93);
  }
  70% {
    transform: rotate(-3deg) scale(0.91);
  }
  80% {
    transform: rotate(-3deg) scale(0.93);
  }
  90% {
    transform: rotate(-3deg) scale(0.92);
  }
  100% {
    transform: rotate(-3deg) scale(0.93);
  }
}

/* From hover rest scale (0.93) back to 1 — .is-bouncing-out added on mouseleave via JS */
@keyframes pulse-bounce-out {
  0% {
    transform: rotate(-3deg) scale(1);
  }
  40% {
    transform: rotate(-3deg) scale(0.97);
  }
  70% {
    transform: rotate(-3deg) scale(1);
  }
  90% {
    transform: rotate(-3deg) scale(0.99);
  }
  100% {
    transform: rotate(-3deg) scale(1);  
  }
}

#wrapper .fusion-body .fusion-title .highlight:hover,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text:hover,
#wrapper .fusion-body .fusion-title .highlight.is-highlight-hover,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text.is-highlight-hover,
#wrapper .fusion-title .highlight:hover,
#wrapper .fusion-title .fusion-highlighted-text:hover,
#wrapper .fusion-title .highlight.is-highlight-hover,
#wrapper .fusion-title .fusion-highlighted-text.is-highlight-hover,
#wrapper .highlight:hover,
#wrapper .highlight.is-highlight-hover {
  animation: pulse-bounce 0.9s ease-in-out forwards;
}

#wrapper .fusion-body .fusion-title .highlight.is-bouncing-out,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text.is-bouncing-out,
#wrapper .fusion-title .highlight.is-bouncing-out,
#wrapper .fusion-title .fusion-highlighted-text.is-bouncing-out,
#wrapper .highlight.is-bouncing-out {
  transition: none;
  animation: pulse-bounce-out 0.9s ease-in-out forwards;
}

#wrapper .fusion-body .fusion-title .highlight-lft:hover,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text:hover,
#wrapper .fusion-body .fusion-title .highlight.is-highlight-hover,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text.is-highlight-hover,
#wrapper .fusion-title .highlight-lft:hover,
#wrapper .fusion-title .fusion-highlighted-text:hover,
#wrapper .fusion-title .highlight.is-highlight-hover,
#wrapper .fusion-title .fusion-highlighted-text.is-highlight-hover,
#wrapper .highlight-lft:hover,
#wrapper .highlight-lft.is-highlight-hover
.highlight-lft:hover{
  animation: pulse-bounce-lft 0.9s ease-in-out forwards;
}

#wrapper .fusion-body .fusion-title .highlight.is-bouncing-out,
#wrapper .fusion-body .fusion-title .fusion-highlighted-text.is-bouncing-out,
#wrapper .fusion-title .highlight.is-bouncing-out,
#wrapper .fusion-title .fusion-highlighted-text.is-bouncing-out,
#wrapper .highlight-lft.is-bouncing-out,
.highlight-lft {
  transition: none;
  animation: pulse-bounce-out-lft 0.9s ease-in-out forwards;
}

/* Title pill: <span class="projection"> — centers text in the capsule (overrides common inline builder styles) */
#wrapper .fusion-body .fusion-title .projection,
#wrapper .fusion-title-heading .projection,
#wrapper .fusion-title .projection,
#wrapper .projection {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  padding: 0.35em 15px !important;
  box-sizing: border-box;
  transform-origin: center center;
  background-image: none;
  -webkit-box-decoration-break: unset;
  box-decoration-break: unset;
}

@media (prefers-reduced-motion: reduce) {
  #wrapper .fusion-body .fusion-title .highlight,
  #wrapper .fusion-body .fusion-title .fusion-highlighted-text,
  #wrapper .fusion-title .highlight,
  #wrapper .fusion-title .fusion-highlighted-text,
  #wrapper .highlight {
    transition: none;
  }

  #wrapper .fusion-body .fusion-title .highlight:hover,
  #wrapper .fusion-body .fusion-title .fusion-highlighted-text:hover,
  #wrapper .fusion-body .fusion-title .highlight.is-highlight-hover,
  #wrapper .fusion-body .fusion-title .fusion-highlighted-text.is-highlight-hover,
  #wrapper .fusion-title .highlight:hover,
  #wrapper .fusion-title .fusion-highlighted-text:hover,
  #wrapper .fusion-title .highlight.is-highlight-hover,
  #wrapper .fusion-title .fusion-highlighted-text.is-highlight-hover,
  #wrapper .highlight:hover,
  #wrapper .highlight.is-highlight-hover {
    animation: none;
/*     transform: rotate(-3deg) scale(1); */
  }
}


/*Added by Manu -- Blog Page*/
.post-list-wrap ul li p {
    margin-top: 0;
    margin-bottom: 20px;
    background-color: #fff !important;
    border-radius: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-right: 20px !important;
	color:#000 !important;
}



/*Added by Manu -- banner*/
	.bb-intro {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.Service_boxes:hover h3{
  color: #333 !important;
}

.Service_boxes:hover p{
	color: #757575 !important;
}
.single-housing_vacancy #main ul {
  padding: 30px;
}
.single-housing_vacancy .detail-row {
  padding: 3px;
}
.step-number,.step-number1 {
  padding: 22px 14px !important;
  font-size: 24px !important;
	margin-right:10px !important;
}
.step-text {
  font-size: 24px !important; 
}
	body.home .A_Home_Built_lrv .fusion-text p {
  line-height: normal;
}
	.home .A_Home_Built_lrv .fusion-title-heading {
  line-height: 36px !important;
}
@media (min-width: 1163px) and (max-width: 1533px) {
 body.home .step-text {
  font-size: 17px !important;
}
	body.home .step-number, body.home .step-number1 {
  padding: 21px 15px !important;
  font-size: 20px !important;
  margin-right: 10px !important;
}
	body.home .step {
  margin-bottom: 12px !important;
}
	body.home .A_Home_Built_lrv .fusion-text p {
  line-height: 20px !important;
}
	.home .A_Home_Built_lrv .fusion-title-heading {
  line-height: 35px !important;
}
#wrapper .housing-vacancy-card-item .avada-hvc-badge--location, #wrapper .housing-vacancy-card-item .avada-hvc-badge--vacancy {
  padding: 10px 10px !important;
	}
}

.single-housing_vacancy #main ul {
  justify-content: left !important;
}
/*home section*/
@media (min-width: 1400px) and (max-width: 3000px) {
  .home-form{
    display: none !important; 
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .last-main,.dummy{
    display: none !important; 
  }
}
@media (max-width: 1300px)
{
	.housing-vacancy-grid-card__title-row {
  display: block !important; 
	}
	.housing-vacancy-grid-card__badges {
  display: block !important;
  margin-top: 15px;
}
	.housing-vacancy-grid-card__body {
  display: block !important;
	}
	.housing-vacancy-grid-card__details-row {
  gap: unset !important;
	}
 .housing-vacancy-grid-card__details {
    gap: 15px 20px !important;
    margin-bottom: 15px !important;
  }
	.housing-vacancy-grid-card__details-row {
  display: block !important;
	}
	
}
@media (max-width: 825px) {
	.housing-vacancy-grid-card__body {
    padding: 20px !important;
  }
	.avada-hvc-card__inner {
  min-height: 290px !important;
}
}
@media (min-width: 720px) {
    .housing-vacancy-posts-listing-wrap--view-list .housing-vacancy-grid-card__media {
        width: 100%;
    }
}
@media (max-width: 640px) {
.vac-banner {
  padding: 0px 15px 15px !important;
}
}
@media (min-width: 640px) and (max-width: 711px) {
	.housing-vacancy-grid-card__badge--vacancy {
  margin-bottom: 5px !important;
}
}
@media (max-width: 478px) {
	.avada-hvc-card__inner {
  min-height: 250px !important;
}
}

@media (max-width: 420px) {
	.housing-vacancy-grid-card__badge.housing-vacancy-grid-card__badge--vacancy {
  margin-bottom: 5px;
}
	#house-banner h1 {
  font-size: 34px !important;
  line-height: 0.6 !important;
}
	.highlight-wrap span.highlight{
  top: 10px;
}
	.detail-row {
display: block !important; }
}
.single-housing_vacancy iframe {
  width: 100%;
}

.hv-property-banner__title
{
	font-size:50px !important;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1px !important;
}