.wwg-hero-banner {
	display: flex;
	height: 100vh;
	overflow: hidden;
	width: 100%;
}

.wwg-hero-banner__left {
	position: relative;
	transition: width 0.6s ease, height 0.6s ease;
	width: 70%;
}

.wwg-hero-banner--no-right .wwg-hero-banner__left {
	width: 100%;
}

.wwg-hero-banner--no-left .wwg-hero-banner__right {
	padding-left: 0;
	width: 100%;
}

.wwg-hero-banner__video-wrapper {
	background: #111;
	height: 100%;
	position: relative;
	width: 100%;
}

.wwg-hero-banner__iframe,
.wwg-hero-banner__video {
	border: 0;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wwg-hero-banner__poster {
	inset: 0;
	position: absolute;
	transition: opacity 0.4s ease;
	z-index: 3;
}

.wwg-hero-banner__poster img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wwg-hero-banner__content {
	bottom: 100px;
	color: #fff;
	left:15vw;
	position: absolute;
	z-index: 4;
}
.wwg-hero-banner__content::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:radial-gradient(circle, rgba(0, 0, 0, 0.65) 0%, rgb(0 0 0 / 83%) 35%, rgba(0, 0, 0, 0.20) 70%, rgb(0 0 0 / 0%) 100%);
    transform: scale(1.8);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}
.wwg-hero-banner__content h1 {
	color: inherit;
	font-family: "Marcellus", serif;
	font-size: 42px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 20px;
}

.wwg-hero-banner__button {
	align-items: center;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	padding: 12px 24px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wwg-hero-banner__button:hover,
.wwg-hero-banner__button:focus {
	background: #fff;
	color: #111;
	text-decoration: none;
}

.wwg-hero-banner__right {
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow: hidden;
	padding: 0 0 0 12px;
	transition: opacity 0.6s ease, visibility 0.6s ease, width 0.6s ease, padding 0.6s ease;
	width: 30%;
}

.wwg-hero-banner__thumb {
	flex: 1;
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.wwg-hero-banner__thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wwg-hero-banner.is-active .wwg-hero-banner__left {
	width: 100%;
}

.wwg-hero-banner.is-active .wwg-hero-banner__right {
	opacity: 0;
	padding: 0;
	visibility: hidden;
	width: 0;
}

.wwg-hero-banner__left,
.wwg-hero-banner__right {
	will-change: width, opacity;
}
@media (max-width: 1750px) {
	.wwg-hero-banner__content {
    	left: 8%;
	}
}
@media (max-width: 1024px) {
	.wwg-hero-banner__left {
		width: 65%;
	}

	.wwg-hero-banner__right {
		width: 35%;
	}

	.wwg-hero-banner--no-right .wwg-hero-banner__left {
		width: 100%;
	}

	.wwg-hero-banner--no-left .wwg-hero-banner__right {
		width: 100%;
	}

	.wwg-hero-banner__content h1 {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.wwg-hero-banner {
		flex-direction: column;
		height: auto;
	}

	.wwg-hero-banner__left {
		height: 60vh;
		width: 100%;
	}

	.wwg-hero-banner__right {
		flex-direction: row;
		height: 40vh;
		padding: 12px 0 0;
		width: 100%;
	}

	.wwg-hero-banner--no-left .wwg-hero-banner__right {
		height: 100vh;
		padding-top: 0;
	}

	.wwg-hero-banner--no-right .wwg-hero-banner__left {
		height: 100vh;
	}

	.wwg-hero-banner__content {
		bottom: 30px;
		left: 20px;
		max-width: calc(100% - 40px);
	}

	.wwg-hero-banner__content h1 {
		font-size: 24px;
	}

	.wwg-hero-banner__button {
		font-size: 14px;
		min-height: 40px;
		padding: 10px 18px;
	}

	.wwg-hero-banner.is-active .wwg-hero-banner__left {
		height: 100vh;
	}

	.wwg-hero-banner.is-active .wwg-hero-banner__right {
		display: none;
	}
}

@media (max-width: 480px) {
	.wwg-hero-banner__content h1 {
		font-size: 20px;
	}

	.wwg-hero-banner__button {
		font-size: 13px;
		min-height: 36px;
		padding: 8px 14px;
	}
}
