
.cherry-picker{
	max-width: 1100px !important;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	transform: scale(1);
	transition: all 0.5s;
	padding-bottom: 40px;
}

@media (max-width: 1424px) {
	.cherry-picker{
		transform: scale(0.9);
	}
}

@media (max-width: 1250px) {
	.cherry-picker{
		transform: scale(0.75);
	}
}

@media (max-width: 1066px) {
	.cherry-picker{
		transform: scale(1);
	}
}

@media (max-width: 900px) {
	.cherry-picker{
		flex-direction: column;
	}
}

.left-content{
	display: block;
	position: relative;
	& .main-copy{
		position: absolute;
		top:0;
		left: 0;
		max-width: 708px;
		color: #fff;
		z-index: 1;
		
		& p{
			font-family: Poppins;
			line-height: 1.25em;
			font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
		}
	}
}

.left-picker-copy{
	max-width:640px;
	& p{
		font-size: calc(16px + (28 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
	}
}

.main-bg-image{
	height: auto;
	display: block;
	position: relative;
	margin: 10vw auto 0 auto;
	max-width: 708px;
	width: 50vw;
	z-index: 0;
}


@media (max-width: 1066px) {
	.left-content{
		transform: scale(1);
		& .main-copy{
			position: relative;
		}
	}
	
	.main-bg-image{
		margin-top: 0;
		width: 50vw;
		height: auto;
	}
}

@media (max-width: 900px) {
	.main-bg-image{
		margin-top: 0;
		max-width: 100%;
		width: auto;
		height: auto;
		margin-top: unset;
	}
}


.green-bullet{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:30px;
	font-size:  1.2rem;
	
	& .green-dot{
		background-color: #FBAF17;
		width: 1.2rem;
		height: 16px;
		border-radius: 50%;
	}
}

.right-content{
	margin: 8vw auto 0 auto;
	color: #fff;
}

.shield-bullets{
	display: flex;
	flex-direction: column;
	gap:20px;
	& img{
		width: calc(5vw);
		max-width: 64px;
		height: auto;
		min-width: 45px;
	}
}

.shield-bullet{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:24px;
}

.shield-title{
	font-weight: 700;
	font-size: calc(16px + (19 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
}

.shield-sub-title{
	font-size: calc(16px + (19 - 16) * ((100vw - 300px) / (1600 - 300))) !important;
}

.bottom-copy{
	position: relative;
	margin-top: 4vw;
	margin-left: -5vw;
	width: 35vw;
	font-size: 16px;
	font-size: 1.2rem;
}

@media (max-width: 1066px) {
	.bottom-copy{
		margin-left: unset;
	}
}

@media (max-width: 900px) {
	.right-content{
		width: 100%;
	}
	
	.bottom-copy{
		width: 100%;
	}
}

.green-link{
	clear: both;
	width: auto;
	color: #000;
	display: flex;
	position: relative;
	padding: 12px 25px;
	justify-content: center;
	align-items: center;
	display: inline-block;
	background-color: #FCAF17;
	font-weight: 700;
	font-size: 17px;
	line-height: 1em;
	text-decoration: none;
	margin-top: 20px;
	text-align: center;
	transition: all 0.5s;
	border-style: solid;
	border-width: 3px;
	border-color: #FCAF17;
	&:hover{
		color: #fff;
		background-color: #000;
	}
}

@media (max-width: 660px) {
	.green-link{
		width: 100%;
	}
}