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

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

.about .column {
	position: relative;
	display: flex;
	flex-direction: column;
	width: calc((100% - 96px) / 2);
}

.about_content h2 {
	margin-top: -10px;
	margin-bottom: 20px;
	line-height: 1.3;
}

.about_image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 650px;
	padding: 15px;
	background-color: var(--white);
	border: 2px solid var(--border-grey);
	box-sizing: border-box;
	margin-top: 96px;
}

.solo_image {
	height: 450px;
}

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

.about .secondary_image {
	margin-top: 96px;
	max-height: 500px;
	height: unset;
}

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

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

.about p:last-of-type {
	margin-bottom: 0;
}

.about .about_no_title p {
	margin-top: 0;
}

.about:first-of-type {
	margin-top: 96px;
}

.about .buttons_container .button_2 {
	margin-left: 20px;
}

@media (max-width: 1200px) {
	.about .column {
		width: calc((100% - 30px) / 2);
	}

	.about_image {
		height: 600px;
	}

	.about .secondary_image {
		max-height: 500px;
		height: unset;
	}
}

@media (max-width: 990px) {
	.about {
		flex-direction: column;
	}

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

	.about_content {
		max-width: 100%;
	}

	.about_content .buttons_container {
		justify-content: center;
	}

    .about_image {
		position: relative;
		width: 100%;
		height: 500px;
		margin: 96px auto 80px;
		overflow: hidden;
		justify-content: center;
	}

	.about .secondary_image {
		display: none;
	}

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

	.about:last-of-type .about_image:last-of-type {
		margin-bottom: 0;
	}

	.about_no_title h2,
	.about_no_title h3 {
		margin-top: 0 !important;
	}
}

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

@media (max-width: 800px) {
	.about_image {
		width: calc(100% + 100px);
		margin-left: -50px;
	}
}

@media (max-width: 600px) {
	.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%;
	}

	.about_image {
		width: calc(100% + 40px);
		margin-left: -20px;
		height: 500px;
		border: none;
		padding: 0;
		overflow: hidden;
		justify-content: center;
	}
}

@media (max-width: 500px) {
	.about .about_content .buttons_container {
		flex-direction: column;
	}

	.about .about_content .buttons_container .button_2 {
		margin-left: 0;
		margin-top: 20px;
	}
}