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

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

.about .column {
	position: relative;
	display: flex;
	flex-direction: column;
	width: calc(50% - 140px);
	padding-top: 100px;
}

.about .image_column {
	width: 50%;
	padding-top: 0;
}

.about_content h2 {
	margin-top: 0px;
	margin-bottom: 30px;
	font-size: 100px;
}

.about_image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	border-radius: 20px;
	box-sizing: border-box;
}

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

.secondary_image {
	margin-top: 140px;
	height: 545px;
	width: 70%;
}

.secondary_right_image {
	margin-left: auto;
}

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

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

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

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

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

	.about_image {
		height: 600px;
	}

	.secondary_image_wrapper .secondary_image {
		margin-bottom: 0;
	}
}

@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;
	}

	.secondary_image_wrapper .secondary_image {
		width: calc(100% - 192px);
		margin-top: -60px;
	}

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

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

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

	.secondary_image_wrapper .secondary_image {
		width: calc(100% - 100px);
	}
}

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

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

	.secondary_image_wrapper .secondary_image {
		width: 100%;
		margin-left: 0;
	}
}

@media (max-width: 600px) {
	.about {
		margin-top: 120px;
	}

	.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: 100%;
		margin-left: 0;
		margin-top: 120px;
		height: 500px;
		border: none;
		padding: 0;
		overflow: hidden;
		justify-content: center;
	}

	.secondary_image_wrapper .secondary_image {
		margin-top: -60px;
	}

	.about .about_content .buttons_container {
		flex-direction: column;
	}

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