.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;

	gap: 5px;
	flex: 1;
}

.gallery-item {
	/* height: 25vh; */
	cursor: pointer;
}
.gallery-item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.gallery-section {
	display: flex;
	margin: 40px 0px;
}
.gallery-text {
	flex: 1;
	padding: 2rem 2.5rem;
}

.gallery-text > div {
	color: #a5a5a5;
	text-transform: uppercase;
}

.gallery-text h3 {
	font-weight: 500;
}

.gallery-text p {
	color: #666f78;
}

.about-us {
	min-height: 100vh;
	width: 100%;
}

.background-about-us {
	min-height: 100vh;
	width: 100%;
	background-image: url("../../assets/about-us-gallery/bg-about-us.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	display: flex;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.background-about-us::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(
		0,
		0,
		0,
		0.3
	); /* Adjust the alpha value to control darkness */
	z-index: 2;
}

.space_bg,
.about-us-text-wrapper {
	z-index: 1000;
}
.about-us-text {
	background-color: white;
	/* position: absolute;
	top: 10%;
	left: 65%; */
	/* width: 30vw; */

	padding: 2rem;
	height: auto;
	/* transform: translate(-50%, -50%); */
}

.about-us-text div,
.about-us-text p {
	color: #666f78;
}

.space_bg {
	flex: 1;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-us-text-wrapper {
	padding: 3rem;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.space-bg-logo {
	width: 50%;
	height: auto;
}
.space-bg-logo img {
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 1100px) {
	.space_bg {
		display: none;
	}

	.gallery-section {
		flex-direction: column;
	}
}

@media only screen and (max-width: 400px) {
	.about-us-text-wrapper {
		padding: 1rem;
	}
	.about-us-text {
		padding: 10px;
	}

	.about-us-text h3 {
		font-size: 16px;
	}

	.gallery-text {
		padding: 2rem 10px;
	}

	.gallery {
		grid-template-columns: 1fr;
	}
}

.contact-btn {
	padding: 10px 14px;
	color: green;
	background-color: white;
	margin-top: 20px;
	cursor: pointer;
	font-size: 1.1rem;
	border: 2px solid black;
	display: inline-block;
}

.gallery-text ul {
	padding: 1rem 2rem;
}

.gallery-text li {
	padding: 3px 0px;
	color: #666f78;
}
