.property-card,
.property-sub-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.property-sub-card.empty {
	background: #040c17;
}

.property-image,
.property-sub-image {
    width: 100%;
    height: auto;
    display: block;
}

.property-card h4,
.property-card p,
.property-sub-card h5 {
    color: #ffffff !important;
    margin: 0 !important;
}

.property-card-details {
	position: absolute;
    z-index: 0;
    margin: 0;
    padding: 15px;
    backdrop-filter: blur(4px);
    background: #040c1763;
    bottom: 0;
    left: 0;
    right: 0;
}

.property-card-details h5, .property-card-details h4 {
	font-weight: 500;
    color: #fff !important;
}

.properties-grid-layout {
    display: flex;
    gap: 30px;
}

.properties-grid-layout a {
	border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    -moz-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    overflow: hidden;
}

.properties-column-left {
    width: 52%;
    background: #040c17;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    -moz-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
}
.property-card {
border-radius: 12px;
    overflow: hidden;
}
.property-card img.property-image {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms  ease;
}
.property-card:hover img.property-image {
    transform: scale(1.1);
}

.properties-column-right {
    width: 48%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    box-sizing: border-box;
}

.property-sub-card {
    background: #fff;
    display: block;
    text-decoration: none;
    color: inherit;
}

.property-sub-card img.property-sub-image {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 500ms  ease;
}

.property-sub-card:hover img.property-sub-image {
    transform: scale(1.1);
}
@media (max-width: 1336px) {
	
  }
  
  /* Max width 1024px */
  @media (max-width: 1024px) {
	
  }
  
  /* Max width 991px */
  @media (max-width: 991px) {
	.properties-grid-layout {
    display: block;
    }
    .properties-column-left {
    	margin-bottom: 30px;
    }
    .properties-column-left, .properties-column-right {
    width: 100%;
    }
    .properties-column-right {
    	gap: 30px;
    }
  }
  
 /* Responsive */
    @media screen and (max-width: 768px) {
	.properties-column-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    }
    .property-card p {
	display:none;
}
.property-card-details h5, .property-card-details h4 {
    font-size: 19px !important;
}
    }
  
  /* Max width 500px */
  @media (max-width: 500px) {
    
  }