/* Shared Styles */
:root {
	--home-light-bg: #e0ecee;
	--home-extra-light-bg: #f9fafa;
	--home-light-blue: #d0e5e4;
	--home-light-blue-hover: #b6d8d3;
}
.home-section-light-bg {
	background: var(--home-light-bg);
}
.home-section-green-bg {
	background: var(--guava-green);
	color: #fff;
}
.home-section-extra-light {
	background: var(--home-extra-light-bg);
}
.home-text-btn {
	margin-top: 20px;
}
.home-text-btn .btn {
	gap: 0;
	--btn-text: rgba(0, 0, 0, 0.6);
}
.home-text-btn .btn:hover {
	text-decoration: underline;
}
.home-integrations {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 -25px;
}
.home-integration-icons {
	display: grid;
	grid-template-columns: repeat(5, 75px);
	gap: 20px;
}
.home-integration-icons img {
	width: 75px;
	height: 75px;
	object-fit: contain;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.header-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	text-align: center;
	background: var(--home-light-bg);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	z-index: 2;
}
.header-banner-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	--btn-text: var(--guava-green);
	font-weight: 600;
	font-size: 16px;
}
.header-banner-subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: var(--text);
	margin-left: 15px;
}
/* matches info_pages.css */
@media (max-width: 951px) {
	.header-banner {
		display: none; /* not new anymore, but we need to show it on desktop until we add it into the header */
	}
}

/* Mission */
.home-mission-section {
	padding-top: 10px;
	color: #fff;
	z-index: 1; /* so shadow goes above the wave */
}
.home-mission-section-bg {
	position: absolute;
	background-color: var(--guava-green);
	top: 0;
	left: 0;
	right: 0;
	bottom: 100px;
}
.home-overflow-wrap {
	overflow: hidden;
	position: relative;
}
.home-mission-section .section-title {
	font-size: 2.6em;
	line-height: 1.3em;
	font-weight: 400;
}
.home-get-started-btn-wrap {
	display: inline-block;
	margin-top: 10px;
}
.home-get-started-btn.btn {
	--btn-color: var(--home-light-blue);
	--btn-color-hover: var(--home-light-blue-hover);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.home-get-guava-btn.btn {
	--btn-color: var(--guava-green);
	--btn-color-hover: var(--guava-green-hover);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.home-free-subtitle {
	margin: 18px 0 -15px 5px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
}
.home-app-store-btns {
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.8);
	margin-left: 5px;
	font-size: 18px;
}
.home-app-store-btns .btn {
	--btn-text: #fff;
	text-decoration: underline;
	font-size: 18px;
}
.home-mission-img {
	position: relative;
	padding-top: 90px;
}
.home-phone {
	position: relative;
	width: 264px;
	height: 552px;
	padding: 8px;
	border-radius: 36px;
	background: #f6f9fc;
	box-shadow: 0 15px 20px -10px rgba(50, 50, 93, 0.25), 0 30px 40px -30px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
	flex-shrink: 0;
}
.home-phone-wrap {
	position: relative;
	width: 264px;
	height: 560px;
	flex-shrink: 0;
}
.home-phone-case {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}
.home-phone-screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
}
.home-phone-screen img {
	width: 100%;
	height: 100%;
}
.home-desktop {
	position: absolute;
	top: 30px;
	left: 90px;
	width: 807px;
	height: 540px;
	border-radius: 8px;
	border: 1px solid #eee;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19);
	background-image: url(https://s.guavahealth.com/home-img/home-desktop.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.home-for-those-section {
	position: relative;
	padding-top: 120px;
	margin-top: -100px;
}
.home-for-those-wave {
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 220px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.home-for-those-wave svg {
	position: absolute;
}
.home-for-those-persons {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	flex-wrap: wrap;
	row-gap: 40px;
}
.home-for-those-person {
	text-align: center;
	width: 200px;
}
.home-for-those-person-icon {
	width: 140px;
	height: 140px;
}
.home-for-those-person-label {
	font-size: 18px;
	max-width: 180px;
	margin: 10px auto 0;
}
@media (max-width: 600px) {
	.home-mission-section {
		padding-bottom: 120px;
	}
	.home-for-those-wave svg {
		margin-left: 800px; /* so you can see the wave */
	}
	.home-for-those-person {
		width: 160px;
	}
	.home-for-those-person-label {
		font-size: 15px;
	}
}

/* Phone Feature */
.home-features {
	display: flex;
	gap: 25px;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}
.home-features .home-phone {
	max-width: 264px;
	flex-shrink: 1;
	width: 100%;
	height: auto;
}
.home-feature-phone img {
	display: none;
}
.home-feature-phone img.selected {
	display: block;
}
.home-feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 15px 10px 32px;
	border-radius: 12px;
}
.home-feature-item.selected {
	background: var(--hover-gray);
}
.home-feature-label {
	font-weight: 600;
}
.home-feature-label-short {
	display: none;
	font-size: 10px;
}
.home-feature-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	--home-feature-icon-fill: #fff;
	--home-feature-icon-color: var(--theme-color-btn);
}
.home-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	fill: var(--home-feature-icon-fill);
	--btn-text: var(--home-feature-icon-fill);
	color: var(--home-feature-icon-fill);
	background: var(--home-feature-icon-color);
	padding: 8px;
	flex-shrink: 0;
	overflow: visible;
}
.home-feature-icon-arrow {
	display: none;
	position: absolute;
	left: -24px;
	width: 24px;
	fill: none;
	stroke-width: 20;
	stroke-linejoin: round;
	stroke-linecap: round;
	stroke: var(--home-feature-icon-color);
}
.home-feature-item.selected .home-feature-icon-arrow {
	display: block;
}
.home-feature-icon-wrap.imaging {
	--home-feature-icon-color: var(--color-imaging);
}
.home-feature-icon-wrap.report {
	--home-feature-icon-color: var(--color-report);
}
@media (max-width: 620px) {
	.home-features {
		gap: 5px;
		margin-left: -5px;
		margin-right: calc(-1 * var(--container-padding));
	}
	.home-feature-item {
		min-width: 96px;
		flex-direction: column;
		padding: 0 0 5px;
		gap: 2px;
	}
	.home-feature-label {
		display: none;
	}
	.home-feature-label-short {
		display: block;
	}
	.home-feature-item:not(.selected) .home-feature-icon-wrap {
		--home-feature-icon-fill: var(--home-feature-icon-color);
		--btn-color: #fff; /* for star of life */
	}
	.home-feature-item:not(.selected) .home-feature-icon {
		background: none;
		fill: var(--home-feature-icon-color);
		border: 2px solid var(--home-feature-icon-color);
	}
	.home-feature-item.selected {
		background: none;
	}
}


/* Logging */
.home-log-types {
	display: grid;
	grid-template-columns: repeat(3, minmax(108px, 1fr));
	gap: 8px;
	margin: 40px -8px 15px;
	overflow: hidden;
}
.home-log-type {
	padding: 5px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	user-select: none;
	-webkit-user-select: none;
}
.home-log-type-text {
	font-size: 12px;
	text-align: left;
	line-height: 1.25;
}
.home-log-type-icon {
	width: 32px;
	height: 32px;
	padding: 4px;
	flex-shrink: 0;
	fill: var(--theme-color-primary);
}
.home-log-type.home-log-type-more {
	border: 1px dashed var(--text);
	color: var(--text);
	background: none;
	box-shadow: none;
}
.home-log-type-icon.home-log-type-more-icon {
	background: none;
	fill: var(--text);
	padding: 6px;
}

/* Visit Prep */
.home-visit-prep-img {
	transform: scale(1.4);
}
@media (max-width: 720px) {
	.home-visit-prep-img {
		margin: 20px auto 70px;
	}
}
.home-visit-prep-benefits {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.home-visit-prep-benefit {
	display: flex;
	align-items: center;
	gap: 20px;
}
.home-visit-prep-benefit-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	fill: #4fa48f;
}
.home-visit-prep-benefit-icon.qna-svg .accent {
	fill: #7bdae5;
}
.home-visit-prep-benefit-icon.superhero-svg .accent {
	fill: #e57b7b;
}

.home-understand-results-phone {
	position: absolute;
	top: -100px;
	right: -60px;
	transform: scale(0.7);
}
.home-find-things-fast {
	border-radius: 8px;
	border: var(--card-separator);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	overflow: hidden;
}
.home-find-things-fast img {
	display: block;
}
@media (max-width: 600px) {
	.home-understand-results-phone {
		right: 0;
		transform-origin: right;
	}
}


.home-npr-section {
	background: #4a4a4a;
	color: #fff;
}
.home-npr-title {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.home-npr-icon {
	width: 90px;
	margin-left: 15px;
}
.home-npr-quote {
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
	line-height: 2em;
}
@media (max-width: 600px) {
	.home-npr-quote {
		font-size: 18px;
	}
}

/* Emergency Card */
.home-em-card-img-wrap {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24), 0 4px 15px 2px rgba(0, 0, 0, 0.28);
	max-width: 400px;
	margin: auto;
	position: absolute;
	background: #fff;
	width: 300px;
	bottom: 15px;
	right: -30px;
}
.home-em-card-img {
	display: block;
	position: relative;
	width: 100%;
}
.home-emcard-quote-icon {
	width: 36px;
	height: 36px;
	fill: var(--guava-green);
}
.home-emcard-quote.section-subtitle {
	border-left: 5px solid var(--guava-green);
	padding-left: 15px;
	text-align: left;
	font-style: italic;
}
.home-emcard-video-wrap {
	max-width: 720px;
	margin: 80px auto 0;
}
.home-emcard-quote-author {
	text-align: right;
	color: var(--text-muted);
}
@media (max-width: 600px) {
	.home-em-card-img-wrap {
		right: 0;
	}
}

/* Community */
.home-community-img {
	margin-bottom: 40px;
	width: 100%;
	height: auto;
}
.home-social-icons {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 15px;
}
.home-social-icon {
	display: block;
	width: 36px;
	height: 36px;
	fill: var(--guava-green);
}

.home-what-matters-banner {
	--logo-banner-shadow: 0 42px 30px -20px rgba(0, 0, 0, 0.25), 0 30px 20px -20px rgba(0, 0, 0, 0.4);
	min-height: 450px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url(https://s.guavahealth.com/home-img/home-what-matters.jpg);
	background-size: cover;
	background-position: 50% 50%;
	margin-bottom: 0;
}
.home-what-matters-banner h2 {
	font-size: 3em;
	margin: 40px 0;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
	.home-mission-section {
		padding-top: 35px;
	}
	.section-title,
	.section-subtitle,
	.home-text-btn {
		text-align: center;
	}
	.home-mission-section .section-title {
		text-align: left;
		margin-top: 20px;
	}
	.home-emcard-bg {
		width: 260px;
		margin-right: auto;
		margin-bottom: 80px;
	}
	.home-understand-results-bg {
		width: 260px;
		margin-right: auto;
		margin-bottom: 120px;
	}
	.home-what-matters-banner h2 {
		font-size: 24px;
	}
}

/* Partners */
.home-partners-section {
	background: var(--hover-gray);
}
.home-partners {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.home-partners img {
	display: block;
	max-width: 260px;
	max-height: 70px;
}
img.home-partners-small {
	max-width: 180px;
	max-height: 35px;
}
.home-partners-more {
	color: var(--text-muted);
	font-size: 18px;
	font-weight: 600;
}
.home-partners-trademark-note {
	margin: 30px 0 -30px;
	text-align: center;
	color: #aaa;
	font-size: 0.75em;
}


/* Other pages are using this TODO separate out the styles */
.home-supported-apps {
	margin: 0 auto 25px;
	display: flex;
	justify-content: center;
	gap: 25px;
}
.home-supported-apps img {
	max-width: 70px;
	border-radius: 8px;
	overflow: hidden;
	flex-basis: 100%;
}
@media (max-width: 720px) {
	.home-supported-apps {
		gap: 10px;
	}
	.home-supported-apps img {
		max-width: 48px;
	}
}

@media (max-width: 385px) {
	.home-features .home-phone-wrap {
		width: 230px;
		height: 488px;
	}
}
.em-card-gift-header .btn,
.em-card-gift-footer .btn {
	--btn-color: var(--guava-green);
	--btn-color-hover: var(--guava-green-text);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24), 0 4px 15px 2px rgba(0, 0, 0, 0.28);
}
.em-card-gift-header {
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url(https://s.guavahealth.com/home-img/emergency-card-ambulance.jpg);
	background-size: cover;
	background-position: 50% 50%;
	max-width: 3000px;
	margin: auto;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}
.em-card-gift-header h1 {
	font-size: 4em;
	line-height: 1.2em;
	max-width: 600px;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
.em-card-gift-header h2 {
	font-size: 2em;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
	margin-top: 25px;
	text-align: left;
}
.em-cards-wrap {
	position: absolute;
	width: 600px;
	right: 0;
	margin-left: 70px;
	margin-bottom: 50px;
}
.em-card-front-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 350px;
	transform: rotate(-10deg);
	transform-origin: bottom left;
}
.em-card-back-wrap {
	margin-left: auto;
	width: 100%;
	max-width: 350px;
}
.em-card-img-wrap {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24), 0 4px 15px 2px rgba(0, 0, 0, 0.28);
}
.em-card-front-img .em-card-img-wrap,
.em-card-gift-footer .em-card-img-wrap {
	background: #fff;
}
.em-card-back-wrap .em-card-img-wrap {
	background: #609742;
}
.em-card-img {
	display: block;
	position: relative;
	width: 100%;
}
.em-card-ripple {
	position: absolute;
	left: 0;
	right: 0;
	margin-top: -50%;
	top: 50%;
	width: 100%;
	opacity: 0;
	padding-bottom: 100%;
	background-position: center;
	background-image: radial-gradient(closest-side,
		rgba(255, 0, 0, 0) 40%,
		rgba(255, 0, 0, 1) 42%,
		rgba(251, 7, 217, 1) 44%,
		rgba(186, 12, 248, 1) 46%,
		rgba(95, 21, 242, 1) 48%,
		rgba(28, 127, 238, 1) 50%,
		rgba(47, 201, 226, 1) 52%,
		rgba(63, 218, 216, 1) 54%,
		rgba(79, 220, 74, 1) 56%,
		rgba(208, 222, 33, 1) 58%,
		rgba(255, 154, 0, 1) 60%,
		rgba(255, 0, 0, 1) 62%,
		rgba(255, 0, 0, 0) 64%);
	animation-duration: 6s;
	animation-delay: 6s;
	animation-name: em-card-ripple-expand;
	animation-iteration-count: infinite;
}
@keyframes em-card-ripple-expand {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(3);
		opacity: 0;
	}
}
.em-card-gift-features {
	margin-top: 120px;
	margin-bottom: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.em-card-gift-feature {
	text-align: center;
	width: 200px;
}
.em-card-gift-feature-icon {
	width: 80px;
	height: 80px;
	fill: var(--guava-green);
	margin-bottom: 20px;
}
.em-card-gift-feature-label {
	font-size: 18px;
}
.em-card-customer-quote-section {
	max-width: 500px;
	margin: 0 auto 40px;
}
.em-card-customer-quote-icon {
	width: 36px;
	height: 36px;
	fill: var(--guava-green);
}
.em-card-customer-quote {
	border-left: 5px solid var(--guava-green);
	padding-left: 15px;
	text-align: left;
	font-style: italic;
}
.em-card-customer-quote-author {
	text-align: right;
	color: var(--text-muted);
}
.em-card-compare-table {
	max-width: 450px;
	margin: 0 auto;
	border-collapse: collapse;
}
.em-card-compare-table th {
	text-align: center;
	padding: 0 2px 15px;
	width: 33.33%;
}
.em-card-compare-table td {
	text-align: center;
	padding: 10px 5px;
	font-size: 0.8em;
}
.em-card-compare-table td:nth-child(3) {
	background: var(--guava-green-bg);
}
td.em-card-compare-label {
	padding: 5px 7px;
	text-align: center;
	font-size: 0.9em;
	background: #ddd;
	color: #000;
	border-radius: 3px;
}
.em-card-compare-table svg {
	width: 28px;
	height: 28px;
	display: block;
	margin: 0 auto;
}
.em-card-compare-table .check-svg {
	--btn-text: var(--guava-green);
}
.em-card-compare-table .check-svg + span {
	font-weight: bold;
	color: var(--guava-green-text);
}
.em-card-compare-table .cross-svg path {
	--btn-text: var(--btn-red);
	stroke-width: 16px;
}
.em-card-compare-table .cross-svg + span {
	font-weight: bold;
	color: var(--btn-red);
}

.em-card-how-works {
	position: relative;;
	background: #e9e9e9;
	overflow: hidden;
}
.em-card-how-works-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--guava-green);
	width: 1.8em;
	height: 1.8em;
	font-size: 1.6em;
	border-radius: 50%;
	margin: 10px 0 25px;
}
.em-card-how-works-img {
	position: absolute;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.em-card-how-works-img.img-1 {
	left: 50%;
	right: 0;
	background-image: url(https://s.guavahealth.com/home-img/emergency-card-paramedic.jpg);
}
.em-card-how-works-img.img-2 {
	left: 0;
	right: 50%;
	background-image: url(https://s.guavahealth.com/home-img/emergency-card-paramedic-2.jpg);
}
.em-card-how-works-img.img-3 {
	left: 50%;
	right: 0;
	background-image: url(https://s.guavahealth.com/home-img/emergency-card-hospital.jpg);
}
.em-card-phone-wrap {
	padding: 20px 0 80px;
}
.em-card-phone {
	position: relative;
	width: 264px;
	height: 533px;
	padding: 8px;
	margin: auto;
	border-radius: 36px;
	background: #f6f9fc;
	box-shadow: 0 50px 80px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3), inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35);
}
.em-card-phone-screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	background-size: cover;
	background-repeat: no-repeat;
}
.em-card-phone-screen.step-2 {
	background-image: url(https://s.guavahealth.com/home-img/emergency-card-access-screen-jane.jpg);
}
.em-card-phone-screen.step-3 {
	background-image: url(https://s.guavahealth.com/home-img/emergency-card-info-screen-jane.jpg);
}
.em-card-how-works-text {
	font-size: 20px;
	padding: 40px;
	margin: 80px 0;
}
.em-card-how-works-text ul {
	text-align: left;
	margin: 10px auto;
	width: 240px;
	padding-left: 20px;
	white-space: nowrap;
}
.em-card-video-overlay {
	position: absolute;
	top: 60%;
	left: 0;
	width: 85%;
	background: #fff;
	font-size: 1.8em;
	padding: 20px 30px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	font-weight: bold;
	text-align: center;
}
.em-card-gift-quotes {
	background: #079270;
	color: #fff;
}
.em-card-gift-footer {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url(https://s.guavahealth.com/home-img/emergency-card-ambulance-2.jpg);
	background-size: cover;
	background-position: 50% 50%;
	max-width: 3000px;
	margin: auto;
	color: #fff;
	padding: 60px 0;
}
.em-card-gift-footer .em-card-img-wrap {
	max-width: 400px;
	width: 100%;
	margin: auto;
}
.em-card-gift-footer h2 {
	font-size: 3em;
	margin: 40px 0;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
	.em-cards-wrap {
		margin-top: 60px;
	}
	.em-card-gift-features {
		margin-top: 180px;
		gap: 15px;
	}
	.em-card-gift-feature {
		width: 165px;
	}
	.em-card-gift-feature-icon {
		margin: 5px 0 0;
		width: 60px;
		height: 60px;
	}
	.em-card-gift-feature-label {
		font-size: 15px;
	}
}
@media (max-width: 720px) {
	.em-card-gift-header {
		padding-top: 60px;
		padding-bottom: 20px;
	}
	.em-card-gift-header h1 {
		font-size: 2em;
	}
	.em-card-gift-header h2 {
		font-size: 1.3em;
	}
	.em-cards-wrap {
		position: relative;
		margin-top: 80px;
		margin-left: 40px;
		margin-bottom: 0;
		width: auto;
		max-width: 600px;
	}
	.em-card-gift-features {
		margin: 0;
	}
	.em-card-how-works {
		padding: 0;
	}
	.em-card-how-works-img {
		position: relative;
		width: 100%;
		height: 300px;
	}
	.em-card-how-works-img.img-1 {
		display: none;
	}
	.em-card-how-works-img.img-3 {
		left: 0;
	}
	.em-card-how-works-text {
		margin: 0;
		padding-left: 20px;
		padding-right: 20px;
		order: 1;
	}
	.em-card-phone-wrap {
		order: 2;
		margin-top: -20px;
	}
	.em-card-gift-footer h2 {
		font-size: 2em;
	}
	.em-card-gift-header .btn,
	.em-card-gift-footer .btn {
		font-size: 20px;
	}
}
@media (max-width: 750px) {
	.em-card-video-overlay {
		font-size: 1em;
		padding: 10px;
		width: 95%;
	}
}
@media (max-width: 359px) {
	.em-card-video-overlay {
		font-size: 0.8em;
	}
}

/* Affiliate */
.loverspassport .em-card-gift-header {
	position: relative;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url(https://s.guavahealth.com/home-img/loverspassport-header-bg.jpg);
	background-position: 50% 0%;
	background-size: cover;
}
.loverspassport h1 {
	max-width: none;
}
.loverspassport-header-img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 80px 100%);
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
}
.loverspassport .em-card-gift-footer {
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url(https://s.guavahealth.com/home-img/loverspassport-footer.jpg);
	background-position: 50% 0;
	background-size: cover;
}
@media (max-width: 1000px) {
	.loverspassport-header-img {
		width: 240px;
		height: auto;
		clip-path: circle();
		right: 10px;
	}
}
@media(max-width: 760px) {
	.loverspassport-header-img {
		width: 160px;
	}
}
:root {
	--light-blue-bg: #d2dfe9;
}
.for-business-header {
	background-size: cover;
	background-position: 50% 50%;
	max-width: 3000px;
	margin: auto;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 60px;
}
.for-business-header.providers {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("/src/home/img/doctor-and-patient.jpg");
}
.for-business-header.document-extraction {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("https://s.guavahealth.com/home-img/document-extraction-bg.png");
}
.for-business-header.device-companion-app {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("https://s.guavahealth.com/home-img/device-companion-app-bg.png");
}
.for-business-header.patient-registry {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("https://s.guavahealth.com/home-img/patient-registry-bg.jpg");
}
.for-business-header.patient-portal-solutions {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("https://s.guavahealth.com/home-img/patient-portal-solutions-bg.jpg");
}
.for-business-header.corporate-wellness {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("https://s.guavahealth.com/home-img/corporate-wellness-bg.jpg");
}
.for-business-header.em-card-gift-header {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("https://s.guavahealth.com/home-img/em-card-service-bg.jpg");
}
.for-business-header.digital-care-plans {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("https://s.guavahealth.com/home-img/hypertension-care-plan-cover.jpg");
}
.for-business-header h1 {
	font-size: 4em;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
.for-business-header h2 {
	font-size: 2em;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.for-business-light-bg {
	background: var(--home-light-bg);
}
.for-business-extra-light {
	background: var(--home-extra-light-bg);
}
.for-business-value-prop {
	background: var(--light-blue-bg);
}
.for-business-value {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 25px;
	font-size: 20px;
}
.for-business-value svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-top: 3px; /* make the leaf align */
}

.logo-banner.for-business-contact-banner {
	--logo-banner-shadow: 0 42px 30px -20px rgba(1, 9, 67, 0.25), 0 30px 20px -20px rgba(1, 9, 67, 0.4);
	background: var(--bold-blue);
}
.for-business-contact-banner-link {
	color: rgba(255,255,255,0.7);
	text-decoration: underline;
}

