section {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

/* --------------------------------
	INTRODUCTION SECTION
---------------------------------- */
#introduction {
	min-height: 55vh;
	gap: 4rem;
}

.introduction-container {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
}

#introduction .img-box {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	max-width: 600px;
	min-width: 350px;
	overflow: hidden;
}

#introduction .btn-box {
	width: 35%;
}

/* --------------------------------
	ABOUT SECTION
---------------------------------- */
#about .row {
	display: flex;
	justify-content: space-between;
	text-align: left;
	align-items: center;
	margin: 2em 0 7em;
}

#about h1 {
	margin-bottom: 1em;
}

#about p {
	line-height: 1.75em;
}

.col1 {
	flex: 0 0 60%;
}

.col2 {
	flex: 0 0 35%;
}

@media(max-width: 1100px) {
	#about .row {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.col2 {
		max-width: 400px;
		width: 55%;
	}
}