/************************* About Paragraphs ************************ */
.about {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
	margin-bottom: 100px;
}

.reverse_sides {
	flex-direction: row-reverse;
}

.about .column {
	width: 45%;
	width: calc((100% - 100px)/2);
}

.about_content h1 {
	margin-top: -10px;
	margin-bottom: 25px;
}

.about_image {
	display: flex;
	overflow: hidden;
	max-height: 600px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.14);
}

.about_image img {
    width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.about .column .button {
	margin: 30px 0 0;
}

.about p a {
	color: var(--bronze);
	font-weight: 500;
}

.opening_body {
	margin-bottom: 100px;
}

@media (max-width: 991px) {
	.about {
		display: block;
	}

	.about .column {
		width: 100%;
		padding: 0 100px;
		box-sizing: border-box;
		justify-content: center;
	}

	.about_content {
		max-width: 100%;
	}

	.about_content p {
		margin: 0 auto 20px auto;
		text-align: left;
	}

    .about_image {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
		margin-top: 50px;
		overflow: hidden;
		justify-content: center;
	}

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

	.about .column .button {
		margin-bottom: 50px;
	}
}

@media (max-width: 900px) {
	.about .column {
		padding: 0 50px;
	}
}

@media (max-width: 600px) {
	.about,
	.opening_body {
		margin-bottom: 60px;
	}

	.about .column {
		display: block;
		width: 100%;
		padding: 0;
	}

	.about_content h1,
	.about_content h2 {
		text-align: center;
	}

	.about .column .video {
		width: 100%;
	}

	.about .button {
		width: 100%;
	}
}