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

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

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

.about_content h2 {
	margin: 0;
}

.about_content p {
	margin: 32px 0 0;
}

.about_content ul {
	margin-bottom: 0;
}

.about_content li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    padding: 0 10px 0 0;
    color: var(--hour7-gold);
}

.about_content li {
    margin-bottom: 15px;
    display: flex;
}

.about_content li:last-of-type {
    margin-bottom: 0;
    display: flex;
}

.about_image {
	display: flex;
	height: 560px;
	overflow: hidden;
}

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

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

.about .column .buttons_container .button:first-of-type {
	margin-right: 25px;
}

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

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

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

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

	.about_content {
		max-width: 100%;
	}

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

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

@media (max-width: 500px) {
	.about .buttons_container .button:last-of-type {
		margin-top: 25px;
	}
}