.wwd--section {
	padding-top: 60px;
}

.wwd--container {
	padding: 60px 30px;
}

.wwd--container {
	position: relative;
}

.wwd--image {
	border-radius: 50%;
	width: calc(100vw - 60px);
	height: calc(100vw - 60px);
	max-width: 500px;
	max-height: 500px;
	overflow: hidden;
	margin: 0 auto;
}

.wwd--ctas-row {
	margin-top: 30px;
}

.wwd--ctas-col {
	margin-bottom: 30px;
}

.wwd--ctas-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #005677;
	color: #fff;
	padding: 30px;
	height: 230px;
	transition: background-color .3s;
	position: relative;
	overflow: hidden;
}

.wwd--ctas-col a,
.wwd--ctas-col a:focus,
.wwd--ctas-col a:hover {
	color: #fff;
}

.wwd--ctas-card:before {
	content: "";
	right: 0;
	bottom: 0;
	position: absolute;
	width: 200px;
	height: 114px;
	background-image: url(../../images/hover-arc.svg);
	background-size: contain;
	background-position: right top;
	background-repeat: no-repeat;
	transform: translateY(100%);
	transition: transform .5s;
}

.wwd--ctas-card:focus,
.wwd--ctas-card:hover {
	background-color: var(--hover-bgcolor);
	outline: none;
}

.wwd--ctas-card:focus:before,
.wwd--ctas-card:hover:before {
	transform: translateY(0);
}

.wwd--ctas-name {
	font-family: raleway, sans-serif;
	font-weight: 400;
	margin-bottom: 0;
	max-width: 250px;
	line-height: 1.5;
	letter-spacing: 0;
}

@media (min-width: 992px) {
	.wwd--image {
		position: absolute;
		right: calc(50% + 50px);
		max-width: 600px;
		max-height: 600px;
	}
}