body {
	color: rgba(0, 0, 0, 0.9);
	font-family: TTHovesMedium, TTHovesRegular, MyFont, Arial, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100vh;
}

html {
    font-size: 62.5%; /* 1rem equal to 10px */
	height: 100%;
}

@font-face {
	font-family: MyFont;
	src: url('/Roboto/Roboto-VariableFont_wdth,wght.ttf');
}

@font-face {
	font-family: MyFont;
	font-style: italic;
	src: url('/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf');
}

@font-face {
	font-family: Norwester;
	src: url('/Norwester/norwester.otf');
}

@font-face {
	font-family: TTHovesMedium;
	src: url('/TTHoves/TTHovesCondensedMedium.ttf');
}

@font-face {
	font-family: TTHovesRegular;
	src: url('/TTHoves/TTHovesCondensedRegular.ttf');
}

.base-text {
	font-size: 2.2rem;
}

/*  HEADER STYLING */

div.header {
	background-color: #81b673;
	color: #346598;
	height: auto;
	width: 100%;
	float: left;
	border-style: solid;
	border-width: 2px;
	border-color: #346598;
	box-sizing: border-box;
	padding: 3rem;
}

div.header-main {
	height: auto;
	display: flex;
	color: #346598;
}




/*
div.rcorners {
	border-radius: 10px 35px;
	background: #3F51B5;
	padding: 16px;
	display: block;
	color: #FAFAFA;
}
	*/

span.getstarted {
	float: right;
	width: auto;
}

span.contact {
	float: center;
}



/*  h1 is the top left page title only */
h1 {
	font-family: Norwester, MyFont, Arial, sans-serif;
	font-size: 4rem;
	font-weight: 400;
	padding-left: 1.2rem;
	padding-top: 1.2rem;
}

h2 {
	font-family: Norwester, MyFont, Arial, sans-serif;
	font-size: 2rem;
	font-weight: 300;
	margin: 0 0 0px;
}

/*  CONTENT AREA STYLING */

div.two-rows {
	display: flex;
	/* new */
	flex-wrap: wrap;
	/* Allows columns to stack on smaller screens */
	gap: 16px;
	padding-top: 6.4rem;
	padding-bottom: 6.4rem;
	padding-left: 2.4rem;
	padding-right: 2.4rem;
	justify-content: space-between;
	align-content: center;
}

.message {
	margin: 0;
}

.left-message-container {
	text-align: center;
	justify-content: center;
	/* Centers items horizontally (along the main axis) */
	align-items: center;
	text-align: center;
}

.left-message-container-app-functions {
	display: flex;
	/* Makes it a flex container */
	justify-content: center;
	/* Centers items horizontally (along the main axis) */
	align-items: center;
}

.left-message {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;

}

.right-image {
	flex: 1;
	display: flex;
	justify-content: center;
	/* Centers its children (the inner-div) horizontally */
	align-items: center;
}

.right-message {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.right-message-container {
	text-align: center;
	justify-content: center;
	/* Centers items horizontally (along the main axis) */
	align-items: center;
	text-align: center;
}

.left-image {
	flex: 1;
	display: flex;
	justify-content: center;
	/* Centers its children (the inner-div) horizontally */
	align-items: center;
}


.round-corner-image {
	border-radius: 4rem;
}

div.container-recalls {
	font-size: 2rem;
}

#yellow-background {
	background-color: #fff9c7;
	padding-left: 4.8rem;
	padding-right: 4.8rem;
	padding-top: 3.2rem;
	padding-bottom: 3.2rem;
}

#yellow-background-link:link {
	color: #3c48a5;
}

#yellow-background-link:visited {
	color: #3c48a5;
}

#yellow-background-link:hover {
	color: #346598;
}

#yellow-background-link:active {
	color: #3c48a5;
}

#startbutton {
	color: white;
	padding: 1.5rem 3.2rem;
}

.gplaylogo {

	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;

}


#referralbutton {
	padding: 0.6rem;
	margin-right: 0.5rem;
	align-self: flex-end;
}

/* Styling for the red rounded button */
.rnd-button {
	font-family: TTHovesMedium, TTHovesRegular, MyFont, Arial, sans-serif;
	background-color: #346598;
	/* A shade of red */
	color: #fff9c7;
	/* White text */

	padding: .6rem 1.2rem;
	/* Vertical and horizontal padding */
	border-radius: 10px;
	/* Fully rounded corners */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	/* Large shadow */
	transition: background-color 0.2s ease-in-out;
	/* Smooth transition for hover */
	border: none;
	/* Remove default button border */
	cursor: pointer;
	/* Indicate it's clickable */
	outline: none;
	/* Remove outline on focus */
}

/* Hover effect for the button */
.rnd-button:hover {
	background-color: #3c48a5;
	/* Slightly darker red on hover */
}

/* Styling for the blue square button with rounded corners */
.blue-square-button {
	background-color: #346598;
	/* A shade of blue */
	padding: 6px;
	/* 6px padding around the content */
	border-radius: 8px;
	/* Slightly rounded corners for the square button */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	/* Large shadow */
	transition: background-color 0.3s ease-in-out;
	/* Smooth transition for hover */
	border: none;
	/* Remove default button border */
	cursor: pointer;
	/* Indicate it's clickable */
	outline: none;
	/* Remove outline on focus */
	width: 78px;
	/* Fixed width for the button */
	height: 78px;
	/* Fixed height for the button */
	/* Flexbox to center the image within the button */
	display: flex;
	justify-content: center;
	align-items: center;
	/* Optional: Set a fixed size for the button if content is variable,
                       or let it size based on image + padding */
	/* width: 60px; /* Example fixed width */
	/* height: 60px; /* Example fixed height */
}

/* Hover effect for the button */
.blue-square-button:hover {
	background-color: #3c48a5;
	/* Slightly darker blue on hover */
}

/* Styling for the round image inside the button */
.blue-square-button img {
	width: 72px;
	/* Fixed width for the image */
	height: 72px;
	/* Fixed height to make it perfectly round */
	border-radius: 50%;
	/* Make the image perfectly round */
	object-fit: cover;
	/* Ensures the image covers the area without distortion */
	display: inline-block;
	/* Remove extra space below image if it behaves inline */
}

div.app-functions-title {
	height: 14rem;
	display: flex;
	flex-direction: row;
	float: left;
	color: #346598;
}

div.app-functions-grid {
	display: grid;
	grid-template-areas: "media detail detail";
	float: left;

}

div.app-function-card {
	border-radius: 10px;
	font-size: 2.2rem;
	background: #3F51B5;
	padding: 1.6rem;
	display: block;
	color: #FAFAFA;
}

div.container-cfr {
	padding: 4.8rem;
}

mark {
	background-color: yellow;
}

div.video {
	display: flex;
	justify-content: center;
}

iframe {
	aspect-ratio: 16 / 9;
	width: 60% !important;
	padding-top: 3.2rem;
	padding-bottom: 3.2rem;
}


.button {
	background-color: #7986CB;
	border: none;
	color: white;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1.6rem;
	cursor: pointer;
}

/*	 VIDEO    */

div.video-container {
	width: 100%;
	background-color: #3F51B5;
	color: #fff9c7;
	text-align: center;
}

div.video-title {
	font-family: Norwester, MyFont, Arial, sans-serif;
	font-size: 3.2rem;
	font-weight: 400;
	padding-left: 1.2rem;
	padding-top: 1.2rem;
}

div.video-description {
	font-size: 2rem;
	font-weight: 300;
	margin-left: 1rem;
	margin-right: 1rem;
}

/*     FOOTER    */
/* Footer styles */

div.footer-container {
	background-color: #81b673;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding-top: 4.8rem;
	padding-bottom: 4.8rem;
}

div.footer-left {
	color: #FAFAFA;
	display: flex;
	text-align: center;
	flex: 1;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#footer-left-icon {
	width: 4rem;
	height: 4rem;
}

div.footer-middle {
	color: #346598;
	display: flex;
	text-align: center;
	flex: 1;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#h1-footer {
	font-family: Norwester, MyFont, Arial, sans-serif;
	font-size: 3.2rem;
	font-weight: 400;
}

#h1-paragraph {
	margin-top: 0px;
	padding-top: 0px;
}

div.footer-left-item {

	display: flex;
	font-size: 2rem;
	flex-direction: row;
	align-items: center;
}

div.footer-right {
	display: flex;
	text-align: center;
	flex: 1;
	justify-content: center;
	flex-direction: column;
}

div.footer {
	background-color: #346598;
	color: #fff9c7;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
}

div.faq-container-qa {
	font-size: 2rem;
}

div.confirm-container {
	font-size: 2rem;
}

div.container-cfr {
	font-size: 2rem;
}

div.container-tos {
	font-size: 2rem;
}

#yellow-background h2 {
	color:#346598;
}
