img {
	/* width: 100%; */
	height: 100%;
	vertical-align: middle;
	display: inline-block;
}

.lg-toolbar .lg-download:after {
	content: '\e0f2';
	visibility: hidden;
}

.residential {
	margin-top: 12px;
}

.commercial {
	margin-top: 12px;
}

.government {
	margin-top: 12px;
}

.row.text-center.mt-4 {
	align-items: center;
}
.artworks .container .row {
	margin-right: 0px !important;
	margin-left: 0px !important;
}
.logo-1 img {
	max-width: 240px;
	height: auto;
	display: block;
}
/* iPad Media Query */
@media only screen and (min-device-width: 600px) and (max-device-width: 1366px) {
	.logo-1 img {
		max-width: 300px;
		width: auto !important;
		height: auto !important;
		object-fit: contain;
		display: block;
	}

	#teamContainer {
		justify-content: center !important;
		text-align: center;
	}

	#teamContainer .col-md-4 {
		display: flex;
		justify-content: center;
	}

	.team-img-container {
		text-align: center;
	}
}
/* Main CSS */
.grid-wrapper > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid-wrapper > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.grid-wrapper {
	display: grid;
	row-gap: 10px;
	column-gap: 9px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 170px;
	grid-auto-flow: dense;
}

.grid-wrapper .wide {
	grid-column: span 2;
}

.grid-wrapper .tall {
	grid-row: span 2;
}

.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper2 {
	display: grid;
	row-gap: 10px;
	column-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 150px;
	grid-auto-flow: dense;
}

.grid-wrapper2 .wide {
	grid-column: span 2;
}

.grid-wrapper2 .tall {
	grid-row: span 2;
}

.grid-wrapper2 .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper3 {
	display: grid;
	row-gap: 10px;
	column-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 140px;
	grid-auto-flow: dense;
}

.grid-wrapper3 .wide {
	grid-column: span 2;
}

.grid-wrapper3 .tall {
	grid-row: span 2;
}

.grid-wrapper3 .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper4 {
	display: grid;
	row-gap: 10px;
	column-gap: 7px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 130px;
	grid-auto-flow: dense;
}

.grid-wrapper4 .wide {
	grid-column: span 2;
}

.grid-wrapper4 .tall {
	grid-row: span 2;
}

.grid-wrapper4 .big {
	grid-column: span 2;
	grid-row: span 2;
}

.grid-wrapper5 {
	display: grid;
	row-gap: 10px;
	column-gap: 7px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 180px;
	grid-auto-flow: dense;
}

.grid-wrapper5 .wide {
	grid-column: span 2;
}

.grid-wrapper5 .tall {
	grid-row: span 2;
}

.grid-wrapper5 .big {
	grid-column: span 2;
	grid-row: span 2;
}

.img-zoom {
	transition: transform 0.5s ease-in-out;
}

.img-zoom:hover {
	transform: scale(1.5);
}

.image-container {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.image-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.image-container.tall a {
	display: block;
	width: 100%;
	height: 100%;
}

.image-container.tall img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.text-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	color: black;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1.4;
	background: white;
	padding: 10px 15px;
	border-radius: 5px;
	transform: translateX(-100%);
	opacity: 0;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.image-container:hover .text-overlay {
	transform: translate(0, 0);
	opacity: 1;
}

.banner {
	padding: 12px 16px;
}

/* Media Queries for Responsiveness */

/* Ultra Large 4k Screens (3840px and above) */
@media (min-width: 3840px) {
	.grid-wrapper {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper2 {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper3 {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper4 {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper5 {
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: auto;
	}
}

/* Large Screens (1920px) */
@media (max-width: 1920px) {
	.grid-wrapper {
		grid-template-columns: repeat(6, 1fr);
		display: grid;
		row-gap: 10px;
		column-gap: 9px;
		grid-auto-rows: 206px;
		grid-auto-flow: row;
	}

	.grid-wrapper2 {
		grid-template-columns: repeat(6, 1fr);
		display: grid;
		row-gap: 10px;
		column-gap: 9px;
		grid-auto-rows: 206px;
		grid-auto-flow: row;
	}

	.grid-wrapper3 {
		grid-template-columns: repeat(6, 1fr);
		display: grid;
		row-gap: 10px;
		column-gap: 9px;
		grid-auto-rows: 175px;
		grid-auto-flow: row;
	}

	.grid-wrapper4 {
		grid-template-columns: repeat(6, 1fr);
		display: grid;
		row-gap: 10px;
		column-gap: 9px;
		grid-auto-rows: 175px;
		grid-auto-flow: row;
	}

	.grid-wrapper5 {
		display: grid;
		row-gap: 10px;
		column-gap: 7px;
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: 180px;
		grid-auto-flow: dense;
	}

	.banner img {
		width: 100%;
		margin: 0 auto;
	}

	.text-overlay {
		font-size: 18px;
		padding: 10px 20px;
	}

	.container {
		max-width: 1600px;
		margin: 0 auto;
	}
}

/* Tablets and Desktops (768px to 1034px) */
@media (min-width: 768px) and (max-width: 1034px) {
	.banner {
		padding: 13px 16px;
	}

	.grid-wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper2 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper4 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}
}

/* Mobile (326px to 768px) */
@media (min-width: 326px) and (max-width: 768px) {
	.banner {
		padding: 13px 16px;
	}
	.grid-wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper2 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper3 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper4 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper5 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.banner img {
		width: 100%;
	}

	.single-post-title {
		font-size: 22px;
	}

	#teamContainer {
		justify-content: center !important;
		text-align: center;
	}

	#teamContainer .col-md-4 {
		display: flex;
		justify-content: center;
	}

	.team-img-container {
		text-align: center;
	}
	.video-thumbnail {
		padding-top: 5%;
	}

	.text-start {
		padding: 0px 0px 25px 0px;
		margin-top: 0%;
	}

	.page-content {
		padding: 4%;
	}
}

/* Small Mobile (less than 480px) */
@media (max-width: 480px) {
	.grid-wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper2 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper4 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.grid-wrapper5 {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: auto;
	}

	.banner img {
		width: 100%;
	}

	.text-overlay {
		font-size: 14px;
		padding: 5px 10px;
	}

	.single-post-title {
		font-size: 20px;
	}

	#teamContainer {
		justify-content: center !important;
		text-align: center;
	}

	#teamContainer .col-md-4 {
		display: flex;
		justify-content: center;
	}

	.team-img-container {
		text-align: center;
	}

	.text-start {
		padding: 0px 0px 25px 0px;
		margin-top: 0%;
	}

	.page-content {
		padding: 4%;
	}
}

/* New About-Us CSS Start */
.text-start {
	text-align: center;
	margin-top: 13px;
}

.design-philosophy {
	background: #f5f5f5;
	padding: 7%;
	margin: 30px 0;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	justify-items: center;
	padding: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.grid-item {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.tooltip-container {
	position: relative;
	display: inline-block;
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

.tooltip-container:hover .logo-box {
	background: #ffffff;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.tooltip-box {
	position: absolute;
	/* bottom: -50px; */
	top: -75px;
	left: 50%;
	transform: translateX(-50%);
	width: 320px;
	max-width: 90vw;
	background: white;
	color: black;
	font-size: 14px;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 10;
	word-wrap: break-word;
	margin-bottom: 12px;
}

/* Show Tooltip on Hover */
.tooltip-container:hover .tooltip-box,
.tooltip-container:focus-within .tooltip-box {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

@media (min-width: 768px) {
	.grid-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (max-width: 767px) {
	.tooltip-box {
		width: 200px;
		top: auto;
		top: -110px;
		/* bottom: -100px; */
		transform: translateX(-50%);
	}

	.tooltip-container:hover .tooltip-box,
	.tooltip-container:focus-within .tooltip-box {
		transform: translateX(-50%) translateY(0);
	}
}

.core-team {
	background: #000000;
	padding: 50px 0px;
	margin: 30px 0;
	color: #ffffff;
}
.coreteam-header {
	padding-bottom: 15px;
	color: #ffffff !important;
}

.team-member {
	width: 100%;
	height: auto;
	display: block;
	margin: 7px, 0px;
	letter-spacing: 1px;
	filter: grayscale(100%);
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px;
	border-radius: 10px;
}

.teams {
	border-radius: 10px;
}

.mt-5 {
	margin-top: 10px;
}

.team-img-container {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.img-fluid.team-img {
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	border-radius: 10px;
}

.img-fluid.team-img:hover {
	transform: scale(1.05);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Click Here text on hover */
.team-img-container::after {
	/* content: 'Click Here'; */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px 12px;
	font-size: 14px;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	z-index: 2;
}

/* Show text on hover */
.team-img-container:hover::after {
	opacity: 1;
}

.modal-description {
	padding-top: 10px;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.modal-content {
	background: white;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	position: relative;
	width: 70%;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
	animation: fadeIn 0.3s ease-in-out;
}
.modal-content p {
	justify-content: center;
	text-align: justify;
}
.close {
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	font-size: 24px;
	color: black;
	font-weight: bold;
	transition: color 0.2s ease-in-out;
}

.close:hover {
	color: red;
	transform: scale(1.2);
}

/* Modal animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.awards {
	background: #e5e6e7;
	padding: 50px 0px;
	margin: 30px 0;
}

/* Medium devices (tablets, 768px) */
@media screen and (max-width: 768px) {
	.modal-content {
		width: 90%;
		padding: 15px;
	}
	.close {
		top: 5px;
		right: 10px;
		font-size: 22px;
	}

	.logo-1 img {
		max-width: 150px;
		width: auto !important;
		height: auto !important;
		object-fit: contain;
		display: block;
	}

	.logo-box {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #ffffff;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
		margin-top: 20px;
	}
}

/* Small devices (mobile phones, 480px and up) */
@media screen and (max-width: 480px) {
	.banner {
		padding: 10px 16px 10px 16px;
	}
	.modal-content {
		width: 95%;
		padding: 10px;
		border-radius: 8px;
	}
	.modal-content h3 {
		font-size: 18px;
	}
	.modal-content p {
		font-size: 14px;
	}
	.close {
		font-size: 20px;
		top: 5px;
		right: 8px;
	}

	.logo-box {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #ffffff;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
		margin-top: 20px;
	}
}

/* Extra small devices (below 360px) */
@media screen and (max-width: 360px) {
	.row text-center mt-4 {
		align-items: center;
	}

	.design-philosophy {
		margin: 13px 0px;
	}
	.banner {
		padding: 10px 16px 10px 16px;
	}
	.modal-content {
		width: 98%;
		padding: 8px;
	}
	.modal-content h3 {
		font-size: 16px;
	}
	.modal-content p {
		font-size: 14px;
	}
	.close {
		font-size: 18px;
		top: 3px;
		right: 5px;
	}

	.logo-box {
		display: flex;
		align-items: center;
		justify-content: center;
		background: #ffffff;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
		margin-top: 20px;
	}
}

/* New About-Us CSS End */

.team-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	justify-content: center;
	text-align: center;
}

/* Medium Screens (Tablets & Small Laptops) */
@media screen and (max-width: 992px) {
	.team-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Small Screens (Mobile Phones) */
@media screen and (max-width: 576px) {
	.team-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

.team-member img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.awards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
}

/* Medium Screens (Tablets & Small Laptops) */
@media screen and (max-width: 992px) {
	.awards-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Small Screens (Mobile Phones) */
@media screen and (max-width: 576px) {
	.awards-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*Home Page Media Query Start */

/* Mobile (326px to 768px) */
@media (max-width: 768px) {
	.owl-dots {
		display: none !important;
	}
}

/*Home Page Media Query End */

/*Contact-US Media Query Start */

.contact-bg {
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 5px;
}

.contact-bg {
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 5px;
}

/* .contact-bg p {
	text-align: left;
} */

.contactformpadding {
	padding: 20px;
}

.mapiframe {
	width: 100%;
	height: 305px;
}

#contact-form-holder {
	margin-top: 20px;
}

.single-query input,
.single-query textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.query-submit-button input {
	background-color: #007bff;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* Tablets and Desktops (768px to 1024px) */
@media screen and (max-width: 1024px) {
	.contact-bg {
		padding: 10px;
	}

	.mapiframe {
		height: 280px;
	}
}

/* Mobile Devices (326px to 768px) */
@media screen and (max-width: 768px) {
	.contact-bg p {
		text-align: left;
	}

	.mapiframe {
		height: 250px;
	}

	.row {
		display: flex;
		flex-direction: column;
	}

	.col-md-6 {
		width: 100%;
	}

	/* Adjust Maps for Mobile */
	.map-container {
		order: 1;
	}

	/* Stack Form Fields */
	.col-md-4,
	.col-md-12 {
		width: 100%;
	}

	.query-submit-button {
		text-align: center;
	}
}

/* Small Mobile Devices (less than 480px) */
@media screen and (max-width: 480px) {
	.mapiframe {
		height: 220px;
	}

	.contact-bg {
		font-size: 14px;
		padding: 8px;
	}

	.query-submit-button input {
		width: 100%;
	}
}

/*Contact-us Media Query End*/

/*Awards Media Query Start*/

.news-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 15px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: transform 0.2s ease-in-out;
	margin-bottom: 20px;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	margin-bottom: 12px;
}

.news-text {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	text-align: left;
	margin: 0;
	height: 50px;
	overflow: hidden;
}

.news-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.awards-space {
	padding: 20px;
}

@media (max-width: 576px) {
	.news-text {
		font-size: 12px;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.news-card {
		padding: 8px;
	}
}

@media (min-width: 768px) {
	.news-text {
		font-size: 16px;
	}

	.news-card {
		padding: 20px;
	}
}

@media (min-width: 992px) {
	.news-text {
		font-size: 16px;
	}

	.news-card {
		padding: 10px;
	}
}

.publication img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.chiragvideo {
	background: #010b14;
	padding: 50px 0px;
	margin: 30px 0;
}

/*Awards Media Query End*/

/* Walkthrough */

.video-thumbnail {
	padding-top: 3%;
}

/*Whatsapp Widget*/
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}
/*Whatsapp Widget End*/

/* Style for Artworks Start */
.art-section,
.art-section2 {
	text-align: center;
	margin-bottom: 30px;
	padding: 20px;
}

.art-section img,
.art-section2 img {
	width: 100%;
	max-width: 800px;
	margin: 10px auto;
}

.artwork-container {
	background-color: #e6e7e8;
	padding: 20px;
}

.art-details {
	margin-top: 20%;
	color: #333;
}

.art-details1 {
	margin-top: 35%;
	color: #333;
}

.art-details2 {
	margin-top: 40%;
	color: #333;
}

.art-details3 {
	margin-top: 30%;
	color: #333;
}

.art-details4 {
	margin-top: 40%;
	color: #333;
}

.art-details5 {
	margin-top: 30%;
	color: #333;
}

.art-details6 {
	margin-top: 40%;
	color: #333;
}

.art-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2rem;
	margin-bottom: 20px;
	color: #1d1d1d;
	font-weight: bold;
}

.location,
.description {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.location span,
.description span {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #000;
	font-weight: bold;
}
.row.align-items-center {
	margin-top: 39px;
	background-color: #fff;
}
.artwork-background {
	background-color: #f3f4f4;
}
.art-left {
	padding-left: 0px !important;
}
.image-wrapper {
	background-color: white;
	padding: 5%;
	display: inline-block;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

/* Large screens (TAB) */
@media screen and (max-width: 1200px) {
	.art-details,
	.art-details1,
	.art-details2,
	.art-details3,
	.art-details4,
	.art-details5,
	.art-details6 {
		margin-top: 10%;
	}
	.art-title {
		font-size: 2rem;
	}
	.location,
	.description {
		font-size: 1.8rem;
	}
}

/* Medium screens (Tablets) */
@media screen and (max-width: 1024px) {
	.art-details,
	.art-details1,
	.art-details2,
	.art-details3,
	.art-details4,
	.art-details5,
	.art-details6 {
		margin-top: 0%;
	}
	.art-title {
		font-size: 1.5rem;
	}
	.location,
	.description {
		font-size: 1.4rem;
	}
	.location span,
	.description span {
		font-family: 'Oswald', sans-serif;
		font-size: 15px;
		color: #000;
		font-weight: bold;
	}
}

/* Small screens (Mobile) */
@media screen and (max-width: 768px) {
	.row.align-items-center {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.art-left,
	.art-right {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 0 10px !important;
	}
	.art-details,
	.art-details1,
	.art-details2,
	.art-details3,
	.art-details4,
	.art-details5,
	.art-details6 {
		margin-top: 5%;
		text-align: left;
	}
	.art-title {
		font-size: 1.8rem;
	}
	.location,
	.description {
		font-size: 1.4rem;
	}
	.image-wrapper {
		padding: 4%;
	}
}

/* Extra small screens (Phones under 480px) */
@media screen and (max-width: 480px) {
	.art-left,
	.art-right {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 5px !important;
	}

	.row.align-items-center {
		margin-top: 15px;
	}

	.image-wrapper {
		padding: 3%;
	}
	.art-title {
		font-size: 1.2rem;
	}
	.location,
	.description {
		font-size: 1rem;
	}
	.image-wrapper {
		padding: 3%;
	}
	.location span,
	.description span {
		font-size: 12px;
	}

	.art-details,
	.art-details1,
	.art-details2,
	.art-details3,
	.art-details4,
	.art-details5,
	.art-details6 {
		margin-top: 5px;
		text-align: left;
	}
}

@media screen and (max-width: 500px) {
	.art-left,
	.art-right {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 5px !important;
	}

	.row.align-items-center {
		margin-top: 15px;
		display: flex;
		flex-wrap: wrap;
	}

	.image-wrapper img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.art-details,
	.art-details1,
	.art-details2,
	.art-details3,
	.art-details4,
	.art-details5,
	.art-details6 {
		margin-top: 10px;
	}

	.art-title {
		font-size: 1.5rem;
	}

	.location,
	.description {
		font-size: 1.2rem;
	}
}

/* Style for Artworks End */

.hidden {
	display: none;
}
