.autoplay-controls {
    display: flex;
    position: absolute;
    color: #ffffff;
    z-index: 9;
    right: 30px;
    bottom: 30px;
    padding: 3px 5px;
    font-size: 12px;
}

button#toggleAutoplay {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  outline: none;
}

#autoplayIcon {
  position: absolute;
  z-index: 2;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-bg,
.progress-ring-bar {
  fill: none;
  stroke-width: 4;
  cx: 25;
  cy: 25;
  r: 22;
}

.progress-ring-bg {
  // stroke: #ddd;
  stroke: transparent;
}

@keyframes progressRing {
  0% {
    stroke-dashoffset: 0; /* Start from full length */
  }
  100% {
    stroke-dashoffset: 138; /* End at 0 (full progress) */
  }
}

.progress-ring-bar {
  stroke: #fff;
  stroke-linecap: round;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.1s linear; /* Smooth transition */
}

.progress-ring-bar.active {
  animation: progressAnimation linear infinite;
}

@keyframes progressAnimation {
  0% {
    stroke-dashoffset: 138; /* Initial state */
  }
  100% {
    stroke-dashoffset: 0; /* End state */
  }
}


	/* Section Titles */
	.section-title {
		text-align: center;
		margin-bottom: 30px;
		font-size: 2rem;
		color: #004466;
		border-bottom: 2px solid #006699;
		display: inline-block;
		padding-bottom: 5px;
	}

	/* Section Base Styles with Scroll Animation */
	section {
		background: #fff;
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	}

	/* Staggered Transition Delays when in-view */
	.container section:nth-of-type(1).in-view {
		transition-delay: 0.2s;
	}

	.container section:nth-of-type(2).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(3).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(4).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(5).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(6).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(7).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(8).in-view {
		transition-delay: 0.3s;
	}

	.container section:nth-of-type(9).in-view {
		transition-delay: 0.3s;
	}

	/* When in view, reveal the section */
	section.in-view {
		opacity: 1;
		transform: translateY(0);
	}

	/* Navigation */
	nav.in_page {
		background: #0056b3;
		margin-bottom: 60px;
	}

	nav.in_page ul {
		list-style: none;
		padding: 10px 0;
		margin: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	nav.in_page ul li {
		margin: 0 15px;
	}

	nav.in_page ul li a {
		color: #fff;
		text-decoration: none;
		font-weight: bold;
	}

	/* About Section */
	#about p {
		font-size: 1.1rem;
		text-align: justify;
	}

	.mission-vision {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		justify-content: space-around;
		margin-top: 20px;
	}

	.mission,
	.vision,
	.values {
		flex: 1 1 300px;
		background: #f9f9f9;
		padding: 20px;
		border-left: 4px solid #006699;
		border-radius: 4px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.mission:hover,
	.vision:hover,
	.values:hover {
		transform: translateY(-5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	/* History Section */
	.history-timeline {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}

	.timeline-item {
		background: #f9f9f9;
		padding: 15px 20px;
		border-left: 4px solid #006699;
		border-radius: 4px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.timeline-item:hover {
		transform: translateX(5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.timeline-item h4 {
		margin: 0;
		color: #004466;
	}

	.timeline-item p {
		margin: 5px 0 0;
		font-size: 0.95rem;
	}

	/* Projects Section */
	.project-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}

	.project-card {
		background: #f9f9f9;
		border-radius: 8px;
		overflow: hidden;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.project-card:hover {
		transform: scale(1.03);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.project-card img {
		width: 100%;
		height: 150px;
		object-fit: cover;
		transition: transform 0.3s ease;
	}

	.project-card img:hover {
		transform: scale(1.1);
	}

	.project-card .content {
		padding: 15px;
	}

	.project-card h4 {
		margin: 0;
		color: #004466;
	}

	.project-card p {
		font-size: 0.95rem;
	}

	/* Sister Concerns Section */
	.sister-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 25px 0px;
	}

	.sister-item {
		background: #f9f9f9;
		padding: 20px;
		border-radius: 8px;
		text-align: center;
		transition: transform 0.3sease, box-shadow 0.3sease;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.sister-item h4 {
		font-size: 22px;
		color: #0056b3;
		font-weight: 600;
	}

	.sister-item p {
		margin-bottom: 0px;
		line-height: 1.4;
	}

	.sister-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	/* Corporate Clients Section */
	.clients-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}

	.clients-grid img {
		object-fit: cover;
		transition: transform 0.3s ease, opacity 0.3s ease;
		opacity: 0.8;
	}

	.clients-grid img:hover {
		transform: scale(1.05);
		opacity: 1;
	}

	/* Management Team Section */
	.team-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		justify-content: center;
	}

	.team-member {
		background: #f9f9f9;
		border-radius: 8px;
		padding: 20px;
		margin-bottom: 30px;
		text-align: center;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	#management.in-view {
		padding-bottom: 10px;
	}
	.team-member:hover {
		transform: translateY(-5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.team-member img {
		width: 150px;
		height: 150px;
		border-radius: 50%;
		object-fit: cover;
		margin-bottom: 15px;
		transition: transform 0.3s ease;
	}

	.team-member img:hover {
		transform: scale(1.1);
	}

	.team-member h4 {
		margin: 10px 0 5px;
		color: #004466;
	}

	.team-member p {
		font-size: 0.9rem;
		margin: 5px 0;
		line-height: 1.4;
	}

	/* Testimonials Section */
	.testimonials {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
	}

	.testimonial {
		background: #f9f9f9;
		padding: 20px;
		border-left: 4px solid #006699;
		border-radius: 4px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.testimonial:hover {
		transform: translateX(5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.testimonial p {
		font-style: italic;
		margin: 0;
	}

	.testimonial span {
		display: block;
		margin-top: 10px;
		font-weight: 600;
		color: #004466;
	}

	/* Awards Section */
	.awards-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
	}

	.award-item {
		background: #f9f9f9;
		padding: 20px;
		width: 280px;
		border-left: 4px solid #006699;
		border-radius: 4px;
		text-align: center;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.award-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	}

	.award-item h4 {
		margin-bottom: 10px;
		color: #004466;
	}

	.award-item p {
		font-size: 0.95rem;
	}

	/* Contact Section */
	#contact form {
		display: grid;
		gap: 15px;
		max-width: 500px;
		margin: auto;
	}

	#contact input,
	#contact textarea {
		width: 100%;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 4px;
		font-size: 1rem;
		transition: border-color 0.3s ease;
	}

	#contact input:focus,
	#contact textarea:focus {
		border-color: #006699;
	}

	#contact button {
		padding: 12px;
		background: #004466;
		color: #fff;
		border: none;
		border-radius: 4px;
		font-size: 1.1rem;
		cursor: pointer;
		transition: background 0.3s ease, transform 0.3s ease;
	}

	#contact button:hover {
		background: #006699;
		transform: scale(1.03);
	}

	/* Responsive */
	@media (max-width: 768px) {
		.mission-vision {
			flex-direction: column;
		}

		.team-grid,
		.clients-grid,
		.sister-grid,
		.awards-grid {
			flex-direction: column;
			align-items: center;
		}
	}
	
	.photo-gallery-title {
		color: #fff;
		font-size: 35px;
		margin-bottom: 0;
	}

	@media only screen and (min-width: 768px) {
		.photo-gallery-title {
			color: #fff;
			font-size: 44px;
			margin-bottom: 0;
		}
	}

	.review-content {
		padding: 20px;
		border: 1px solid #cccccc;
		box-shadow: 2px 5px 20px 0px rgb(255 255 255 / 5%);
		border-radius: 25px;
		position: relative;
		display: inline-block;
		transition: all 0.3s;
		-webkit-box-shadow: 2px 5px 20px 0px rgb(255 255 255 / 5%);
		-moz-box-shadow: 2px 5px 20px 0px rgb(255 255 255 / 5%);
		box-shadow: 2px 5px 20px 0px rgb(255 255 255 / 5%);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px);
	}

	@media all and (min-width: 768) {
		.review-content {
			transform: scale(0.89);
		}

		.review-content:hover {
			transform: scale(1) !important;
		}
	}

	.review-content:before {
		content: "";
		position: absolute;
		background-image: url(/themes/civicgroup/img/review-arrow.svg);
		background-position: top right;
		background-repeat: no-repeat;
		background-size: 40px;
		top: -15px;
		right: 0;
		height: 35px;
		width: 40px;
	}

	.review-info img {
		border-radius: 50%;
		margin-left: 15px;
		width: 50px;
	}

	.review-info {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		z-index: 1;
	}

	.review-info span {
		font-family: var(--font-family-Lora);
		font-size: 1rem;
		font-weight: 600;
	}

	.review-star i {
		color: #f9b805;
		margin: 0 2px;
		font-size: 1.5rem;
		text-shadow: 1px 1px 1px rgb(0 0 0 / 30%);
	}

	@media all and (min-width: 1600px) {
		.review-body-box.bottom {
			margin-bottom: -100px;
		}

		.review-body-box.top {
			margin-top: -100px;
		}
	}

	img {
		border: 0;
		width: auto;
		height: auto;
		max-width: 100%;
		vertical-align: middle;
		-ms-interpolation-mode: bicubic;
	}

	.BrandPromise .brand_middle .image {
		padding-top: 63.87%;
	}

	.BrandPromise .brand_middle:after {
		content: "";
		transition: 1s all ease;
		background: rgba(0, 0, 0, 0.6);
		opacity: 0;
	}

	.BrandPromise .brand_middle:hover {
		width: 60%;
	}

	.BrandPromise .brand_middle:hover .layer {
		bottom: unset;
		transform: translate(-50%, -50%);
		top: 50%;
	}

	.BrandPromise .brand_middle:hover .layer P {
		opacity: 1;
	}

	.BrandPromise .brand_middle:hover:after {
		opacity: 1;
	}

	.green_living {
		background: white;
	}

	.green_living .row {
		display: flex;
	}

	.green_living .row .MobileTitle {
		display: none;
	}

	.green_living .row .MobileTitle .Title {
		margin-bottom: 90px;
	}

	.green_living .row .MobileTitle .Title:after {
		left: 0;
		transform: none;
		background: #003c8c;
	}

	.green_living .row .green_living_left {
		padding-right: 70px;
	}

	.green_living .row .green_living_left .Title {
		margin-bottom: 90px;
	}

	.green_living .row .green_living_left .Title:after {
		left: 0;
		transform: none;
		background: #003c8c;
	}

	.green_living .row .green_living_left p {
		color: #1b1b1b;
		line-height: 25px;
		font-size: 14px;
		font-weight: 400;
	}

	.green_living .row .green_living_left .list {
		margin-top: 50px;
	}

	.green_living .row .green_living_left .list li {
		position: relative;
		color: #1b1b1b;
		line-height: 25px;
		font-size: 14px;
		font-weight: 400;
		margin: 0 0 10px;
		padding-left: 45px;
	}

	.green_living .row .green_living_left .list li:last-child {
		margin: 0 0 10px;
	}

	.green_living .row .green_living_left .list li:after {
		height: 1px;
		content: "";
		position: absolute;
		left: 0;
		top: 10px;
		background: #c1c1c0;
		width: 30px;
	}

	.green_living .row .green_living_right .image {
		padding-top: 77.78%;
	}

	.green_living.management_director {
		background: #1b1b1b;
	}

	.green_living.management_director .Title {
		color: #ffffff;
		margin: 0 !important;
	}

	.green_living.management_director .Title:after {
		display: none !important;
	}

	.green_living.management_director .md_designation {
		font-size: 14px;
		font-weight: 400;
		line-height: 25px;
		color: white !important;
		position: relative;
		margin-bottom: 80px;
	}

	.green_living.management_director .md_designation:after {
		background: #e5001f;
		height: 3px;
		position: absolute;
		width: 50px;
		content: "";
		left: 0;
		transform: translateX(0);
		bottom: -5px;
	}

	.green_living.management_director p {
		color: #ffffff !important;
	}

	.asManagingDirector {
		position: relative;
		background: #1b1b1b;
	}

	.asManagingDirector.asDirector {
		background: #c1c1c0;
	}

	.asManagingDirector .floatbd {
		position: absolute;
		top: 130px;
		left: 40%;
		transform: translateX(-50%);
	}

	.asManagingDirector .green_living_left {
		padding-left: 70px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.asManagingDirector .green_living_left p {
		color: white !important;
	}

	.asManagingDirector .green_living_left .deg {
		margin-top: 80px;
	}

	.asManagingDirector .green_living_left .deg .name {
		text-transform: uppercase;
		color: #ffffff;
		font-weight: bold;
		font-size: 16px;
		line-height: 25px;
		margin: 0 0 5px;
	}

	.asManagingDirector .green_living_left .deg p {
		color: white;
		text-transform: capitalize;
		margin: 0;
	}

	@-webkit-keyframes rotateme {
		0% {
			-webkit-transform: rotate(0deg);
			opacity: 1;
		}

		50% {
			-webkit-transform: rotate(180deg);
			opacity: 0.7;
		}

		100% {
			-webkit-transform: rotate(360deg);
			opacity: 1;
		}
	}

	@-moz-keyframes rotateme {
		0% {
			-moz-transform: rotate(0deg);
			opacity: 1;
		}

		50% {
			-moz-transform: rotate(180deg);
			opacity: 0.7;
		}

		100% {
			-moz-transform: rotate(360deg);
			opacity: 1;
		}
	}

	@-o-keyframes rotateme {
		0% {
			-o-transform: rotate(0deg);
			opacity: 1;
		}

		50% {
			-o-transform: rotate(180deg);
			opacity: 0.7;
		}

		100% {
			-o-transform: rotate(360deg);
			opacity: 1;
		}
	}

	@keyframes rotateme {
		0% {
			transform: rotate(0deg);
			opacity: 1;
		}

		50% {
			transform: rotate(180deg);
		}

		100% {
			transform: rotate(360deg);
			opacity: 1;
		}
	}

	.rectangular-border {
		position: relative;
	}

	.rectangular-border:after {
		content: '';
		position: absolute;
		left: 5%;
		bottom: -5%;
		width: 95%;
		height: 100%;
		background: url(/themes/civicgroup/img/rectangular-border.webp);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.angle-border {
		position: relative;
	}

	.angle-border:after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0px;
		width: 100%;
		height: 100%;
		background: url(/themes/civicgroup/img/angle-border.webp);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.mask-img.angle-mask {
		-webkit-mask-image: url(/themes/civicgroup/img/angle-mask.webp);
		mask-image: url(/themes/civicgroup/img/angle-mask.webp);
	}

	.mask-img {
		-webkit-mask-image: url(/themes/civicgroup/img/img-mask.png);
		mask-image: url(/themes/civicgroup/img/img-mask.png);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-size: contain;
	}

	.mask-img img {
		width: 100%;
	}

	.mask-img.rectangular-mask {
		-webkit-mask-image: url(/themes/civicgroup/img/rectangular-mask.webp);
		mask-image: url(/themes/civicgroup/img/rectangular-mask.webp);
		-webkit-mask-position: left top;
		mask-position: left top;
	}

	.mask-img.round {
		-webkit-mask-image: url(/themes/civicgroup/img/img-mask-round.png);
		mask-image: url(/themes/civicgroup/img/img-mask-round.png);
	}

	.mask-img.slide-mask {
		-webkit-mask-image: url(/themes/civicgroup/img/slide-mask.png);
		mask-image: url(/themes/civicgroup/img/slide-mask.png);
	}

	.mask-img.concern {
		-webkit-mask-image: url(/themes/civicgroup/img/concern-masking.png);
		mask-image: url(/themes/civicgroup/img/concern-masking.png);
	}

	.image-box {
		position: relative;
		display: block;
		padding: 100px 60px 30px 100px;
	}

	.image-box img {
		width: 100%;
	}

	.image-box .image-2 {
		position: absolute;
		left: 0px;
		top: 0px;
		z-index: 1;
	}

	.image-box .image-3 {
		position: absolute;
		top: 0px;
		right: 100px;
		z-index: 1;
		-webkit-animation: service_hexagon_2 15s infinite linear;
		-moz-animation: service_hexagon_2 15s infinite linear;
		-o-animation: service_hexagon_2 15s infinite linear;
		animation: service_hexagon_2 15s infinite linear;
	}

	.image-box .image-1 {
		position: relative;
		overflow: hidden;
	}

	.image-box .image-1:before {
		position: absolute;
		top: 0;
		left: -75%;
		z-index: 2;
		display: block;
		content: '';
		width: 50%;
		height: 100%;
		background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
		background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
		background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
		-webkit-transform: skewX(-25deg);
		-ms-transform: skewX(-25deg);
		transform: skewX(-25deg);
		z-index: 1;
	}

	.image-box:hover .image-1:before {
		-webkit-animation: shine 1s;
		animation: shine 1s;
	}

	@-webkit-keyframes shine {
		100% {
			left: 125%;
		}
	}

	@keyframes shine {
		100% {
			left: 125%;
		}
	}

	a.cta-phn:hover {
		background: var(--site-secondary-color);
		transition-delay: 0.6s;
	}

	a.cta-phn span {
		position: absolute;
	}

	a.cta-phn span:nth-child(1) {
		top: 0;
		left: -100%;
		width: 100%;
		height: 3px;
		background: linear-gradient(90deg, transparent, var(--site-secondary-color));
	}

	a.cta-phn:hover span:nth-child(1) {
		left: 100%;
		transition: 0.7s;
	}

	a.cta-phn span:nth-child(3) {
		bottom: 0;
		right: -100%;
		width: 100%;
		height: 3px;
		background: linear-gradient(90deg, transparent, var(--site-secondary-color));
	}

	a.cta-phn:hover span:nth-child(3) {
		right: 100%;
		transition: 0.7s;
		transition-delay: 0.35s;
	}

	a.cta-phn span:nth-child(2) {
		top: -100%;
		right: 0;
		width: 3px;
		height: 100%;
		background: linear-gradient(180deg, transparent, var(--site-secondary-color));
	}

	a.cta-phn:hover span:nth-child(2) {
		top: 100%;
		transition: 0.7s;
		transition-delay: 0.17s;
	}

	a.cta-phn span:nth-child(4) {
		bottom: -100%;
		left: 0;
		width: 3px;
		height: 100%;
		background: linear-gradient(360deg, transparent, var(--site-secondary-color));
	}

	a.cta-phn:hover span:nth-child(4) {
		bottom: 100%;
		transition: 0.7s;
		transition-delay: 0.52s;
	}

	a.cta-phn:active,
	a.cta-phn.normal:active {
		background: linear-gradient(to top right, #e01f26, #e01f26);
		color: #ffffff;
		transition: 0.1s;
	}

	a.cta-phn:active span:nth-child(1) a.cta-phn span:nth-child(2) a.cta-phn span:nth-child(2) a.cta-phn span:nth-child(2) {
		transition: none;
		transition-delay: none;
	}

	a.cta-phn.normal {
		display: inline-flex;
		align-items: center;
		background: rgb(0 0 0 / 3%);
	}

	a.cta-phn.normal i {
		font-size: 2.1rem;
		display: flex;
		align-items: center;
	}

	a.cta-phn.normal:hover {
		background: var(--site-third-color);
	}

	a.cta-phn.normal span:nth-child(1) {
		background: linear-gradient(90deg, transparent, var(--site-third-color));
	}

	a.cta-phn.normal span:nth-child(3) {
		background: linear-gradient(90deg, transparent, var(--site-third-color));
	}

	a.cta-phn.normal span:nth-child(2) {
		background: linear-gradient(180deg, transparent, var(--site-third-color));
	}

	a.cta-phn.normal span:nth-child(4) {
		background: linear-gradient(360deg, transparent, var(--site-third-color));
	}

	a.cta-phn.con-btn {
		display: inline-flex;
		background: rgb(0 0 0 / 50%);
		border-color: rgb(255 255 255 / 50%);
	}

	a.cta-phn.con-btn i {
		line-height: 0;
	}

	a.cta-phn.con-btn span:nth-child(1) {
		background: linear-gradient(90deg, transparent, #fff);
	}

	a.cta-phn.con-btn span:nth-child(3) {
		background: linear-gradient(90deg, transparent, #fff);
	}

	a.cta-phn.con-btn span:nth-child(2) {
		background: linear-gradient(180deg, transparent, #fff);
	}

	a.cta-phn.con-btn span:nth-child(4) {
		background: linear-gradient(360deg, transparent, #fff);
	}

	a.cta-phn.con-btn:hover {
		background: rgb(255 255 255) !important;
		color: #000;
		border-color: rgb(0 0 0 / 50%);
	}

	a.cta-phn {
		position: relative;
		padding: 12px 25px;
		outline: none;
		border: 1px solid #505050;
		background: #fff;
		color: #fff;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-size: 16px;
		overflow: hidden;
		transition: 0.2s;
		border-radius: 30px;
		cursor: pointer;
		font-weight: bold;
		line-height: 1;
		font-family: var(--font-family-Quintessential);
		text-decoration: none;
		display: inline-block;
	}

	@media (max-width:650px) {
		a.cta-phn {
			font-size: 12px !important;
			padding-right: 12px !important;
			padding-left: 12px !important
		}
	}

	@media (max-width:400px) {
		a.cta-phn {
			font-size: 10px !important
		}
	}

	.mr-auto {
		width: 100%;
	}

	.mr-auto~p {
		margin-bottom: 7px;
	}

	h3.mr-auto {
		margin-top: 9px;
		margin-bottom: 0px;
	}
	
	.project-list {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}

	.top-content {
		position: relative;
	}

	.property-details {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		color: white;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.top-content:hover .property-details {
		opacity: 1;
	}
	
	
	.swiper-slide-bg {
        height: 780px;
        background-size: cover;
        background-color: #bbbbbb;
        background-position: 50%;
        background-repeat: no-repeat;
        min-height: 100%;
        min-width: 100%;
	}
	
	@media (max-width:768px) {
    	.swiper-slide-bg {
            height: 580px;
    	}
	}
	@media (max-width:400px) {
    	.swiper-slide-bg {
            height: 380px;
    	}
	}
	.slick-dotted.slick-slider {
	    margin-bottom: 0px !important;
	}
	
	.swiper-pagination.swiper-pagination-horizontal {
        position: absolute;
        bottom: 30px;
        width: 100%;
	}
	
	
	
	