﻿.features-img img {
  width: 300px;
  height: 450px;
  object-fit: contain;
}

.properties {
  /*margin: 0 12px;*/
  text-align: center;
}
.properties .properties-card {
  background-color: #fff;
  border: solid 1px #e0e0e0;
}
.properties .properties-card .properties-caption h3 {
  color: #292621;
  font-size: 16px;
  font-weight: 400;
  /*added to limit title to 2 lines and add ... when too long*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.4em;
}
.properties .properties-card .properties-caption h3 a {
  color: #292621;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}
.properties .properties-card .properties-caption .properties-footer {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.properties .properties-card .properties-caption .properties-footer .price {
  color: #74706b;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 5px;
  background-color: #f8f8f8;
}
.properties .properties-card .properties-caption .properties-footer .price span {
  color: #74706b;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}
.properties .properties-card .properties-caption .properties-footer .price span span {
  display: inline-block;
  color: #cebd9c;
  text-decoration: line-through;
  margin: 0;
  margin-left: 12px;
}
.properties .properties-card .properties-caption .properties-footer .price-discount {
  color: #cebd9c;
  text-decoration: line-through;
  margin-left: 12px;
}
.properties .properties-card .properties-caption .properties-footer .social_icon {
  text-align: center;
}
.properties .properties-card .properties-caption .properties-footer .social_icon a {
  background: #fff;
  color: #292621;
  width: 64px;
  height: 50px;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  line-height: 54px;
}
.properties .properties-card .properties-caption .properties-footer .social_icon a :hover {
  background: #2c64b5;
  color: #fff;
}
.properties .properties-card .properties-caption2 {
  text-align: left;
  margin: 0;
}
.properties .properties-card .properties-caption2 h3 {
  min-height: 45px;
  background-color: #f0f0f0;
  padding: 5px;
  margin-bottom: 0;
}
.properties .properties-card .properties-img {
  position: relative;
  overflow: hidden;
}
.properties .properties-card .properties-img img {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  width: 100%;
  transform: scale(1);
}
.properties :hover .properties-caption h3 a {
  color: #2c64b5;
  min-height: 40px;
}
.properties :hover .properties-caption .properties-footer .price span {
  color: #292621;
}
.properties :hover .properties-img img {
  transform: scale(1.03);
}

@media (min-width: 1200px) {
  properties .properties-card .properties-img img {
    max-height: 240px;
    max-width: 240px;
    width: min-content;
  }
}
@media (min-width: 992px) {
  .properties .properties-card .properties-img img {
    max-height: 270px;
    max-width: 270px;
    width: min-content;
  }
}
@media (min-width: 768px) {
  .properties .properties-card .properties-img img {
    max-height: 192px;
    max-width: 192px;
    width: min-content;
  }
}
@media (min-width: 576px) {
  .properties .properties-card .properties-img img {
    max-height: 220px;
    max-width: 220px;
    width: min-content;
  }
}
