html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: #ddd;
	font-family: "Redressed", cursive;
	  font-weight: 400;
	  font-style: normal;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}


/* PAGE */

.kc-page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: linear-gradient(180deg, #d65235 0%, #ee9a42 52%, #d65235 100%);
}

.kc-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/background.webp") center top / cover no-repeat;
	opacity: 0.34;
	z-index: 1;
	pointer-events: none;
}


/* CONTENT */

.kc-container {
	position: relative;
	z-index: 2;
	max-width: 1180px;
	padding-top: 18px;
	padding-bottom: 30px;
}


/* HEADER */

.kc-header {
	text-align: center;
	padding-bottom: 10px;
}

.kc-main-logo {
	display: block;
	margin: auto;
	max-width: 640px;
	width: 100%;
}


/* BUTTONS */

.kc-top-cta,
.kc-bottom-cta {
	text-align: center;
	padding: 10px 0;
}

.kc-links {
	text-align: center;
	padding: 6px 0 4px;
}

.kc-pill-btn {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 10px auto;
	padding: 24px 22px;
	text-align: center;
	font-size: 28px;
	line-height: 1.1;
	transition: all 0.2s ease;
}

.kc-pill-light {
	background: #f3df97;
	color: #d65435;
	border-radius: 999px;
}

.kc-pill-light:hover,
.kc-pill-light:focus {
	background: #f7e7ab;
	color: #d65435;
}

.kc-pill-dark {
	background: #d44f33;
	color: #f3df97;
	border-radius: 12px;
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.06);
}

.kc-pill-dark:hover,
.kc-pill-dark:focus {
	background: #c9472d;
	color: #f3df97;
}


/* BANDS */

.kc-band {
	margin: 24px 0;
}

.kc-band-wrap {
	position: relative;
	width: 84%;
}

.kc-band-wrap-left {
	margin-right: auto;
}

.kc-band-wrap-right {
	margin-left: auto;
}


/* STRIPES + MAIN BAND */
/* These use transparent radial cutouts so the edge actually curves around the circle. */

.kc-band-stripe {
	height: 26px;
	position: relative;
	z-index: 1;
}

.kc-band-main {
	height: 224px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* RIGHT-ANCHORED BAND = circle on left */

.kc-band-wrap-right .kc-band-stripe {
	background:
		radial-gradient(circle 74px at 58px 50%, transparent 73px, #f3df97 74px);
}

.kc-band-wrap-right .kc-band-main {
	background:
		radial-gradient(circle 74px at 58px 50%, transparent 144px, #d44f33 74px);
}

/* LEFT-ANCHORED BAND = circle on right */

.kc-band-wrap-left .kc-band-stripe {
	background:
		radial-gradient(circle 74px at calc(100% - 58px) 50%, transparent 73px, #f3df97 74px);
}

.kc-band-wrap-left .kc-band-main {
	background:
		radial-gradient(circle 74px at calc(100% - 58px) 50%, transparent 144px, #d44f33 74px);
}


/* TEXT */

.kc-band-text {
	color: #f3df97;
	width: 100%;
	position: relative;
	z-index: 4;
}

.kc-band-text h2,
.kc-band-text p {
	margin: 0;
	font-weight: normal;
}

.kc-band-text-right {
	text-align: center;
	padding-left: 250px;
	padding-right: 18px;
}

.kc-band-text-right h2 {
	font-size: 32px;
	line-height: 1.45;
}

.kc-band-text-right p {
	margin-top: 6px;
	font-size: 18px;
	letter-spacing: 1px;
}

.kc-band-text-left {
	text-align: center;
	padding-right: 250px;
	padding-left: 18px;
}

.kc-band-text-left h2 {
	font-size: 32px;
	line-height: 1.45;
}

.kc-band-text-left p {
	margin-top: 6px;
	font-size: 18px;
	letter-spacing: 1px;
}


/* CIRCLES */

.kc-circle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 256px;
	height: 256px;
	border-radius: 50%;
	background: #eeb94f;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.kc-circle::before {
	content: "";
	position: absolute;
	width: 288px;
	height: 288px;
	border-radius: 50%;
	background: rgba(243, 223, 151, 0.34);
	z-index: -1;
}

.kc-circle img {
	max-width: 78%;
	max-height: 78%;
	display: block;
	position: relative;
	z-index: 4;
}

.kc-circle-left {
	left: 18px;
}

.kc-circle-right {
	right: 18px;
}

.spacer{
	height:40px;
}

/* MOBILE */

@media (max-width: 575px) {
	.kc-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.kc-band-wrap {
		width: 96%;
	}

	.kc-band-stripe {
		height: 22px;
	}

	.kc-band-main {
		height: 122px;
	}

	.kc-band-wrap-right .kc-band-stripe {
		background:
			radial-gradient(circle 66px at 52px 50%, transparent 84px, #f3df97 66px);
	}

	.kc-band-wrap-right .kc-band-main {
		background:
			radial-gradient(circle 66px at 52px 50%, transparent 84px, #d44f33 66px);
	}

	.kc-band-wrap-left .kc-band-stripe {
		background:
			radial-gradient(circle 66px at calc(100% - 52px) 50%, transparent 84px, #f3df97 66px);
	}

	.kc-band-wrap-left .kc-band-main {
		background:
			radial-gradient(circle 66px at calc(100% - 52px) 50%, transparent 84px, #d44f33 66px);
	}

	.kc-circle {
		width: 148px;
		height: 148px;
	}

	.kc-circle::before {
		width: 172px;
		height: 172px;
	}

	.kc-circle-left {
		left: 14px;
	}

	.kc-circle-right {
		right: 14px;
	}

	.kc-band-text-right {
		padding-left: 180px;
		padding-right: 10px;
	}

	.kc-band-text-left {
		padding-right: 180px;
		padding-left: 10px;
	}

	.kc-band-text-right h2 {
		font-size: 18px;
	}

	.kc-band-text-right p {
		font-size: 14px;
	}

	.kc-band-text-left h2 {
		font-size: 18px;
	}

	.kc-band-text-left p {
		font-size: 14px;
	}

	.kc-pill-btn {
		max-width: 100%;
		font-size: 22px;
	}
}