/*/Search Results*/

/*GENERAL*/



/*Focus border for the image link for search results*/

.featured-propery-results .column .development-item:focus-within {
    border: 3px solid #296189;
}
/*IE Fallback*/
.featured-propery-results .development-item > a:focus {
    border: 3px solid #296189!important;
}

/*DEFAULT TEMPLATE*/

.hp-featured-property-container{
  display: flex;
  flex-wrap:wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 20px;
  margin-right: 20px;
}

.featured-propery-results {
  flex-grow: 1;
  flex-basis:300px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 15px;
  margin-top: 20px;
  position: relative;
}
.featured-propery-results .column:nth-of-type(even) {
  background-color: #fff;
  padding: 10px; 
  margin-bottom: 50px; 
}


.featured-propery-results a {
  text-decoration: none;
}
.featured-propery-results .column:nth-of-type(even) h3  {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  margin: 0;
}
.featured-propery-results .column:nth-of-type(even) h4  {
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
}
.featured-propery-results .column:nth-of-type(even) p  {
  text-align: center;
  padding: 0;
  margin: 0;
}



/*Pagination*/

.featured-propery-results .page-numbers {
   color: #3f3f3f!important;
   display: block;
   width: auto;
   float: left;
   margin: 4px 4px 4px 0;
   padding: 15px 18px 14px 18px;
   text-decoration: none;
   border: 1px solid grey;
   margin-bottom: 50px;
}
.featured-propery-results .current {
  font-weight: 700;
  border: 1px solid #3f3f3f;
  background-color: #A4D65E;
}
 
.featured-propery-results .page-numbers:hover {
   background: #A4D65E;
   text-decoration: none;
   font-weight: 700;
}
/*End Pagination*/



/*Hover with animated Border*/

.development-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  opacity: 0;
  visibility: hidden;

}
.development-content img {
  display: block;
  margin:0 auto;
  position: relative;
  top: 8px;
}
.development-content p {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;

}
.development-item:hover .development-content,.featured-propery-results a:hover .development-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.development-item {

  position: relative;
    background-color: #003e87;
    overflow: hidden;
   margin: 1px;
    box-sizing: border-box;
  }

.development-img img {
  object-fit: cover;
  height: 245px;
  transition: 0.5s;
  width:100%;
  margin-bottom: -10px;
}


.development-item:hover .development-img img,.featured-propery-results a:hover .development-img img {
  opacity: 0.2;
}

.development-item:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleX(0);  
  opacity: 0; 
  z-index: 1;
}


.development-item:hover:before {
  transform: scaleX(1); 
  opacity: 1;
}

.development-item:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  box-sizing: border-box;
  transition: 0.5s;
  transform: scaleY(0);  
  opacity: 0; 
  z-index: 1;
}


.development-item:hover:after {
  transform: scaleY(1); 
  opacity: 1;
}
