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

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

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

.about_content h2 {
	margin-top: -10px;
	margin-bottom: 20px;
	line-height: 1.3;
	color: var(--black);
	font-size: 40px;
}

.about_content h3 {
	margin: 0;
}

.about_image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.3;
	/* background-color: var(--white); */
	box-sizing: border-box;
}

.solo_image {
	height: 450px;
}

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

.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:first-of-type {
	margin-top: 140px;
}

.home_about {
	margin-top: 140px;
}

.about .buttons_container .button {
	background-color: var(--gold);
	color: var(--white);
}

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

/*********************** Video ************************/
Iframe {
    width: 100%;
    height: auto;
    outline: none;
	box-sizing: border-box;
}

.video {
    position: relative;
    height: auto;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 67%;
}

.video iframe,
.video object,
.video embed {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
}

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

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

	.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%;
		margin: 80px auto 0;
		overflow: hidden;
		justify-content: center;
	}

	.video {
		margin-top: 80px;
	}

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

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

	.home_about {
		margin-top: 120px !important;
	}
}

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

@media (max-width: 800px) {
	.about_image {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.about .column {
		display: block;
		width: 100%;
		padding: 0;
	}

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

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

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

	.about .button {
		width: 100%;
	}

	.about_image {
		padding: 0;
		overflow: hidden;
		justify-content: center;
	}
}