/***section-one***/
.section-one .text p:last-child {
    margin: 0;
}
.section-one.background-postion-bottom .responsive-bg {
    background-position: 0% 125%;
    background-size: contain;
}
.section-one.background-postion-bottom .responsive-bg .button-wrap {
    margin: 0;
}
.section-one.background-postion-bottom .responsive-bg .image {
    border-radius: 0.6rem;
    overflow: hidden;
}
.section-one.background-postion-bottom .responsive-bg p {
    padding: 0 2rem 2rem;
}

/***section-one.v1*****/
.section-one.v1 .head p {
    font-size: var(--font-size-h4);
	margin: 0;
	font-weight: 300;
}
/* 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%;
	}
}
/* v4 — frosted glass card over background image */
.section-one.v4 .glass-card {
	max-width: 58rem;
	margin-left: auto;
	margin-right: auto;
	padding: 4.3rem 2rem;
	background-color: rgba(17, 33, 16, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 1rem;
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}
.section-one.v4 .glass-card .text {
	max-width: 50.2rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.section-one.v4 .glass-card-heading {
	margin: 0;
	font-size: 3.6rem;
	line-height: 4.3rem;
	font-weight: 700;
	letter-spacing: -0.05rem;
	color: #fff;
}
.section-one.v4 .glass-card .text p {
	font-size: 1.2rem;
	line-height: 1.9rem;
	font-weight: 300;
}
.section-one.v4 .glass-card .text p strong {
    font-weight: 700;
}
@media (max-width: 991px) {
	.section-one.v4 .glass-card {
		padding: 2.5rem 1.5rem;
	}
	.section-one.v4 .glass-card-heading {
		font-size: 2.3rem;
		line-height: 1.2;
	}
}
/* video background */
.section-one.has-bg-video .responsive-bg {
	position: relative;
	overflow: hidden;
}
.section-one.has-bg-video .bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.section-one.has-bg-video .section-content-wrap {
	position: relative;
	z-index: 1;
}
@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;
    }
}
