/* v2 — text right column over background image */
.section-one.v2 .content-right {
	display: flex;
	justify-content: flex-end;
}

.section-one.v2 .content-right .text {
	width: 35%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.section-one.v2 .section-content-wrap {
	min-height: 50rem;
}
.section-one.v2 .box {
	max-width: 22rem;
    margin-right: auto;
    margin-top: 5rem;
}
@media (max-width: 1024px) {
	.section-one.v2 .content-right .text {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.section-one.v2 .content-right {
		justify-content: flex-start;
	}
	.section-one.v2 .content-right .text {
		width: 100%;
	}
	.section-one.v2 .responsive-bg {
		background-position: center top;
		background-size: 100% auto;
	}
	.section-one.v2 .section-content-wrap {
		min-height: initial;
	}
	.section-one.v2 .box {
		max-width: initial;
		margin-top: 52vw;
    	margin-right: auto;
		text-align: center;
	}
	.section-one.v2 .box .button-wrap {
        justify-content: center;
    }

}
