.building-listing-container {
	display: flex;
	justify-content: space-between;
	gap: 45px;
}
.office-card {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.office-card figure img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.office-card figure {
	display: flex;
    flex-direction: column;
	position: relative;
}
.office-card figure figcaption {
	background: #000000E5;
	padding: 12px 20px;
	max-width: 290px;
	bottom: -20px;
    position: absolute;
    left: -10px;
}
.office-card figure figcaption h3 {
	font-family: Poppins;
	font-weight: 700;
	font-size: 17px;
	line-height: 20px;
	color: #ffffff;
	font-style: normal;
	margin: 0;
}
.office-card figure figcaption span {
	font-family: Poppins;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
	font-style: normal;
	margin: 0;
}
.office-card__description {
	margin: 50px 0 0;
}
.office-card__btn {
	font-family: Poppins;
	font-weight: 700;
	font-size: 13px;
	line-height: 100%;
	color: var(--e-global-color-primary);
	padding: 10px 15px 10px 25px;
	border: 1px solid var(--e-global-color-primary);
	background: #ffffff;
	margin-top: 25px;
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 30px;
}

@media(max-width: 768px) {
	.building-listing-container {
		display: block;
	}
	.office-card figure img {
	
	}
	.building-listing-container .custom-slider-track {
		padding: 0 7% 0 0;
	}
	.building-listing-container .custom-slider-dots {
		bottom: -50px;
	}
}