.cew-mobile-app-promo{
	width:100%;
	min-height:720px;
	margin:0;
	padding:0;
	overflow:hidden;
}
.cew-mobile-app-promo *{box-sizing:border-box}
.cew-map-grid{
	--cew-map-text-width:50%;
	display:grid;
	grid-template-columns:var(--cew-map-text-width) minmax(0,1fr);
	width:100%;
	min-height:inherit;
}
.cew-map-copy{
	display:flex;
	align-items:flex-start;
	justify-content:flex-start;
	min-width:0;
	padding:120px 64px 80px;
	background:#fff;
}
.cew-map-copy-inner{
	width:100%;
	min-width:0;
}
.cew-map-eyebrow{
	margin:0 0 10px;
	color:#747474;
	font-size:13px;
	line-height:1.2;
	font-weight:500;
	letter-spacing:.08em;
	text-transform:uppercase;
}
.cew-map-title{
	margin:0 0 24px;
	max-width:520px;
	color:#121212;
	font-size:40px;
	line-height:1.05;
	font-weight:500;
	letter-spacing:-.03em;
}
.cew-map-description{
	margin:0 0 16px;
	max-width:560px;
	color:#4e4e4e;
	font-size:16px;
	line-height:1.45;
	font-weight:400;
}
.cew-map-learn{
	display:inline-flex;
	margin:0 0 28px;
	color:#00543c;
	text-decoration:none;
	font-size:16px;
	line-height:1.2;
}
.cew-map-downloads{
	position:relative;
	display:flex;
	align-items:flex-start;
	gap:14px;
	min-width:0;
}
.cew-map-stores{
	display:grid;
	gap:8px;
}
.cew-map-store{
	display:flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
}
.cew-map-store img{
	display:block;
	width:134px;
	height:auto;
	object-fit:contain;
}
.cew-map-qr{
	--cew-map-qr-offset-x:0px;
	--cew-map-qr-offset-y:0px;
	position:relative;
	display:flex;
	align-items:flex-start;
	justify-content:center;
	transform:translate(var(--cew-map-qr-offset-x),var(--cew-map-qr-offset-y));
}
.cew-map-qr.is-absolute{
	position:absolute;
	margin:0;
	transform:
		translate(var(--cew-map-qr-anchor-x,0),var(--cew-map-qr-anchor-y,0))
		translate(var(--cew-map-qr-offset-x),var(--cew-map-qr-offset-y));
}
.cew-map-qr.anchor-top-left{--cew-map-qr-anchor-x:0;--cew-map-qr-anchor-y:0}
.cew-map-qr.anchor-top-center{--cew-map-qr-anchor-x:-50%;--cew-map-qr-anchor-y:0}
.cew-map-qr.anchor-top-right{--cew-map-qr-anchor-x:-100%;--cew-map-qr-anchor-y:0}
.cew-map-qr.anchor-center-left{--cew-map-qr-anchor-x:0;--cew-map-qr-anchor-y:-50%}
.cew-map-qr.anchor-center{--cew-map-qr-anchor-x:-50%;--cew-map-qr-anchor-y:-50%}
.cew-map-qr.anchor-center-right{--cew-map-qr-anchor-x:-100%;--cew-map-qr-anchor-y:-50%}
.cew-map-qr.anchor-bottom-left{--cew-map-qr-anchor-x:0;--cew-map-qr-anchor-y:-100%}
.cew-map-qr.anchor-bottom-center{--cew-map-qr-anchor-x:-50%;--cew-map-qr-anchor-y:-100%}
.cew-map-qr.anchor-bottom-right{--cew-map-qr-anchor-x:-100%;--cew-map-qr-anchor-y:-100%}
.cew-map-qr img{
	display:block;
	width:116px;
	height:auto;
}
.cew-map-visual{
	--cew-map-visual-overlay:rgba(0,0,0,0);
	--cew-map-visual-overlay-opacity:0;
	position:relative;
	min-width:0;
	min-height:720px;
	overflow:hidden;
	background:#cff7e7;
}
.cew-map-visual::after{
	content:"";
	position:absolute;
	inset:0;
	z-index:50;
	background:var(--cew-map-visual-overlay);
	opacity:var(--cew-map-visual-overlay-opacity);
	pointer-events:none;
}
.cew-map-layer{
	--cew-map-offset-x:0px;
	--cew-map-offset-y:0px;
	--cew-map-rotate:0deg;
	--cew-map-layer-overlay:rgba(0,0,0,0);
	--cew-map-layer-overlay-opacity:0;
	--cew-map-layer-blend:normal;
	position:absolute;
	left:50%;
	top:50%;
	transform:
		translate(-50%,-50%)
		translate(var(--cew-map-offset-x),var(--cew-map-offset-y))
		rotate(var(--cew-map-rotate));
	transform-origin:center;
	pointer-events:none;
}

.cew-map-layer::after{
	content:"";
	position:absolute;
	inset:0;
	z-index:5;
	background:var(--cew-map-layer-overlay);
	opacity:var(--cew-map-layer-overlay-opacity);
	mix-blend-mode:var(--cew-map-layer-blend);
	pointer-events:none;
}
.cew-map-layer picture,
.cew-map-layer img{
	display:block;
	width:100%;
	height:100%;
}
.cew-map-layer img{
	object-fit:contain;
}
.cew-map-scene-layer{
	width:100%;
	z-index:1;
}
.cew-map-overlay-layer{
	width:70%;
	z-index:2;
}

@media(max-width:767px){
	.cew-mobile-app-promo{
		min-height:700px;
	}
	.cew-map-grid{
		display:flex;
		flex-direction:column;
	}
	.cew-map-copy{
		width:100%;
		padding:40px 16px 24px;
	}
	.cew-map-eyebrow{
		font-size:12px;
		margin-bottom:8px;
	}
	.cew-map-title{
		max-width:100%;
		font-size:26px;
		line-height:1.05;
		margin-bottom:10px;
	}
	.cew-map-description{
		max-width:100%;
		font-size:14px;
		line-height:1.4;
		margin-bottom:14px;
	}
	.cew-map-learn{
		font-size:15px;
		margin-bottom:22px;
	}
	.cew-map-downloads{
		gap:14px;
	}
	.cew-map-store img{
		width:134px;
	}
	.cew-map-qr img{
		width:104px;
	}
	.cew-map-visual{
		width:100%;
		min-height:330px;
		flex:0 0 auto;
	}
	.cew-map-scene-layer{
		width:100%;
	}
	.cew-map-overlay-layer{
		width:74%;
	}
}
