.callToAction {
	background-color:var(--color-accent);
/*	background-image: url(/wp-content/themes/westcott/static/images/logo-watermark.svg);
	background-position: bottom -89px right -52px;
	background-repeat: no-repeat;
	background-size: 284px;*/
	height:100%;
	width:100%;
	padding: 29px 32px 39px 32px;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	position: relative;
}

@media(max-width: 1150px) {
	.callToAction {
		padding:22px 22px 22px 22px;
	}
}

@media(max-width: 700px) {
	.callToAction {
		padding:20px 20px;
		min-height: auto;
		height:auto;
	}
}

.callToAction-bg {
	background-image: url(/wp-content/themes/westcott/static/images/logo-watermark.svg);
	background-position: bottom -89px right -52px;
	background-repeat: no-repeat;
	background-size: 285px;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	transition:0.25s opacity ease-in-out, 0.25s background-size ease-in-out;
}

.callToAction--bgFaded {
	opacity:0.06;
}

.callToAction--bgFull {
	opacity:0.12;
	background-size:300px;
}

.callToAction-block1,
.callToAction-block2,
.callToAction-block3 {
	position: relative;
}

.callToAction-block3 {
	margin-top: auto;
}

.callToAction-title {
	margin:0;
	color:#fff;
	font-size:35px;
}

@media(max-width: 700px) {
	.callToAction-title {
		font-size:26px;
	}	
}

.callToAction-text {
    font-size: 16.5px;
    line-height: 22px;
    color:#fff;
}

@media(max-width: 700px) {
	.callToAction-text {
		font-size: 17px;
		line-height: 22px;
	}	
}

.callToAction-button {
	border:1px solid #fff;
	color:#fff;
	text-transform: uppercase;
	display: inline-block;
    font-size: 13px;
    padding: 18px 45px;
	text-decoration: none;
	transition:0.2s background ease, 0.2s color ease;
}

@media(max-width: 700px) {
	.callToAction-button { 
		padding: 10px 21px;
		font-size:12px;
		margin-top: 40px;
	}
}


.callToAction-button:hover {
	background:#fff;
	color:var(--color-accent);
}