/*<meta conditions="Conditions.OngoingSync" />*/

@namespace MadCap url(http://www.madcapsoftware.com/Schemas/MadCap.xsd);

/*===========================================================================================================================================================
Hello! If this is your first time looking at a stylesheet within the text editor view, what you are reading right now is a "comment". Comments are added throughout this stylesheet with the purpose of making the source code easier to understand, comments will not be interpreted during the compile process. Since comments are not interpreted during the compile process, feel free to add or remove any comments.

If you have any questions regarding how to work with this stylesheet or template project, please contact MadCap Technical Support. 
https://www.madcapsoftware.com/support/contact-options.aspx

NOTE: Generally, this stylesheet has elements listed out in the order that they appear in the topic from top to bottom. The exception are General styles which are at the top and the stylesheet mediums which are at the bottom.

EXAMPLE: Since the Topic/Banner image is at the top of the home page, it will be listed closer to the top of this stylesheet. While, the footer will be written towards the bottom. 

===========================================================================================================================================================*/

/*==Home Page General Styles==*/

body.home
{
	line-height: 1.5em;
	font-family: 'Optum Sans', 'Optum Sans Cond';
	background-color: #ffffff;
}

.off-canvas-content .main-section > .outer-row
{
	max-width: 100%;
	padding: 0;
	background-color: rgba(55, 71, 79, .15);
}

/*==Mad Cap proxy/editor assigned styles==*/

MadCap|searchBarProxy
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	float: none;
	width: 50%;
}

MadCap|topicToolbarProxy
{
	float: none;
}

MadCap|menuProxy.menu1
{
	mc-toc-depth: 1;
	mc-context-sensitive: True;
}

MadCap|menuProxy.menu2
{
	mc-toc-depth: 1;
	mc-context-sensitive: True;
}

html.home-page
{
	mc-community-features: disabled;
}

/*==Responsive Header Styles==*/

#contentBody > .responsive-header
{
	background-color: transparent;
}

/*==========================================================================================================

Home page intro area. This includes the KC name, tagline, and slideshow components.

===========================================================================================================*/

div.topic-hero	/*This is the first Hero/Banner on the Home Page - To replace the banner image with your own, change background-image property*/
{
	background-size: cover;
	background-repeat: no-repeat;
	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center 0;
	text-align: center;
	background-color: transparent;
	background-image: none;
}

.containerWhite	/*The slideshow sits within this container div.*/
{
	max-height: 270px;
	padding: 1em 30%;
	margin: auto;
	background-color: #ffffff;
}

.hero-content-background	/*Contains the internal only disclaimer that is commented out by default*/
{
	background: linear-gradient(62.8deg,#002677 48%,transparent 44%);
}

/*=======================================================
Home Tiles section

Also called quick links or placeholder tiles.
Home Tiles are found beneath the slide show on the home page. They are structured to display 3 to a row. Each home tile can/should contain three <divs> (see "nth" child code a little lower for sizing). This code also specifies hover styling and link styling within the home tiles areas. 
The template home page includes two rows. You can add or remove any number of home-tiles as it makes sense for your project. These are added within the home.htm file. The easiest way to add/remove these is by using Flare's text editor.
=======================================================*/

div.home-tiles
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1%;
	margin-bottom: 1%;
	height: 85px;
	max-height: 85px;
}

div.home-tiles::before
{
	content: ' ';
	display: table;
}

div.home-tiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.home-tiles > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
	/*	background-color: #FAF8F2; */
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	/*Adds transition animation when switching between screen sizes*/
	-moz-border-radius: 999x;
	-webkit-border-radius: 999px;
	/*	-moz-border-radius: 20x;
		-webkit-border-radius: 20px;
	border-radius: 20px;
/*	border: 1px solid #d3d3d3; */
	border: 1px solid #484d4f;
	padding: 5px 5px;
	overflow: hidden;
	height: 85px;
}

div.home-tiles > div:hover	/*When hovering over a home-tile, these properties apply*/
{
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	color: #ffffff;
	background-color: #002677;
	border: 1.5px solid #002677;
	/* this color #4cc6f is invalid - what should it be? #0C55B8  */
	transform: scale(1.03);
}

div.home-tiles > div:nth-child(1)
{
	width: 25%;
	margin-left: 11.5%;
}

div.home-tiles > div:nth-child(2)
{
	width: 25%;
	margin-left: 1%;
}

div.home-tiles > div:nth-child(3)
{
	width: 25%;
	margin-left: 1%;
}

/*=Elements for text contained within each home-tile=*/

p.tile-title
{
	text-align: center;
	font-size: 1.4em;
	color: #002677;
}

p.tile-content
{
	text-align: center;
	font-size: 0.8em;
	color: #37474f;
}

p.tile-items
{
	font-size: 0.7em;
	text-align: center;
}

div.home-tiles a	/*Complex Selector: Any anchor (links) tags that are within div.home-tiles will have the following properties*/
{
	text-decoration: none;
	color: #002677;
	/*transition: all 0.3s cubic-bezier(.25,.8,.25,1);*/
}

p.tile-content a
{
	color: #37474f;
}

div.home-tiles > div:hover a:hover	/*Complex Selector: When hovering over links within the home tiles the following properties will apply.*/
{
	color: #0C55B8;
}

div.footer a:hover	/*Complex Selector: Any anchor (links) tags that are within div.footer will have the following properties */
{
	text-decoration: none;
	color: #4CC6FF;
}

a:hover
{
	color: #0C55B8;
}

div.home-tiles > div:hover a	/*Complex Selector: Any anchor (links) tags that are within div.home-tiles will have the following properties when hovering over the div.*/
{
	text-decoration: none;
	color: #ffffff;
	/*transition: all 0.3s cubic-bezier(.25,.8,.25,1);*/
}

div.home-tiles > div:hover p	/*Complex Selector: Any p tags that are within div.home-tiles will have the following properties when hovering over the div.*/
{
	text-decoration: none;
	color: #ffffff;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

/*=Info-container section=*/

div.info-container	/*div.info-container contains the top portion of the footer that sits at the bottom of the page..*/
{
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding-top: 15px;
	padding-bottom: 25px;
	box-shadow: inset -1px 1px 17px 0px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	/*Create the parallax scrolling effect*/
	background-attachment: fixed;
	background-position: center 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: none;
	background-color: #ffffff;
	color: #002677;
	text-align: center;
	/*changed this from "left" for MD-3112 07222022 stj */
	position: relative;
	bottom: 0;
}

div.info-section	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	color: #002677;
}

div.info-section::before
{
	content: ' ';
	display: table;
}

div.info-section::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.info-section > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.info-section > div:nth-child(1)
{
	width: 16.667%;
	margin-left: 24%;
}

div.info-section > div:nth-child(2)
{
	width: 16.667%;
	margin-left: 3%;
}

div.info-section > div:nth-child(3)	/*Div that contains "Tips"*/
{
	width: 16.667%;
	margin-left: 3%;
}

div.info-container p	/*Complex Selector: Any <p> that is contained within div.info-container will have the following properties*/
{
	color: #002677;
}

div.info-container a	/*Complex Selector: Any anchor (links) tags that are within div.info-container will have the following properties*/
{
	
}

/*=Elements for content contained within each info section=*/

p.info-title
{
	font-size: 1.5em;
	line-height: 1em;
}

p.info-content
{
	font-size: 0.8em;
}

div.follow-us a	/*Complex Selector: Any anchor (links) tags that are within div.follow-us will have the following properties*/
{
	padding: 10px;
	color: #002677;
}

.flex-wrapper
{
	display: flex;
	min-height: 91.7vh;
	flex-direction: column;
	justify-content: space-between;
}

/*==Home Page Footer Section==*/

div.footer
{
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #002677;
	color: #ffffff;
	position: relative;
	bottom: 0;
}

div.footer a	/*Complex Selector: Any anchor (links) tags that are within div.footer will have the following properties */
{
	text-decoration: none;
	color: #fff;
}

div.footer > div.outer-row
{
	line-height: 30px;
	padding: 0;
}

div.home-master-page-footer	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
{
	mc-grid-row: true;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

div.home-master-page-footer::before
{
	content: ' ';
	display: table;
}

div.home-master-page-footer::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.home-master-page-footer > div
{
	float: right;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.home-master-page-footer > div:nth-child(1)
{
	width: 33.333%;
	margin-left: 0%;
}

div.home-master-page-footer > div:nth-child(2)
{
	width: 33.333%;
	margin-left: 0%;
}

div.home-master-page-footer > div:nth-child(3)
{
	width: 33.333%;
	margin-left: 0%;
}

div.footer p	/*Complex Selector: Any <p> that is contained within div.footer will have the following properties*/
{
	color: #fff;
	font-size: 0.8em;
}

a
{
	font-family: 'Optum Sans', 'Optun Sans Cond';
	text-decoration: none;
	color: #002677;
}

MadCap|conceptLink
{
	background-color: transparent;
}

a.GlossaryPageTerm
{
	color: #002677;
}

MadCap|keywordLink
{
	color: #002677;
}

MadCap|helpControlMenuItem.Highlighted
{
	background-color: #faf8f2;
}

MadCap|popupHead
{
	color: #002677;
}

MadCap|shortcut
{
	color: #002677;
}

h1
{
	font-family: 'Optum Sans', 'Optum Sans Cond';
	color: #002677;
	margin: auto;
	margin-top: 0px;
}

p
{
	font-family: 'Optum Sans', 'Optum Sans Cond';
	mc-disable-glossary-terms: true;
	color: #484D4F;
}

h2
{
	font-family: 'Optum Sans', 'Optum Sans Cond';
}

h3
{
	font-family: 'Optum Sans', 'Optum Sans Cond';
}

div
{
	font-family: 'Optum Sans', 'Optum Sans Cond';
}

MadCap|glossaryTerm
{
	font-weight: normal;
	color: #002677;
	mc-closed-image-alt-text: ;
	mc-image-spacing: -1px;
	mc-closed-image: url(resources:Images/WebHelp/ExpandingClosed.gif);
	mc-open-image: url(resources:Images/WebHelp/ExpandingOpen.gif);
}

MadCap|glossaryTerm.Popup
{
	color: Olive;
	font-weight: bold;
}

/*=================================================================
Slideshow styles
=================================================================*/

MadCap|slide
{
	background-repeat: no-repeat;
	background-position: center;
}

MadCap|slideshow
{
	background-color: #002677;
	background-repeat: no-repeat;
	box-shadow: 0;
	border-width: 0;
	padding: 5px;
}

MadCap|slideshow.White
{
	background-color: #ffffff;
	background-repeat: no-repeat;
	box-shadow: 0;
	border-width: 0;
	padding: 0px 5px;
	color: #002677;
}

MadCap|slideshowBullet
{
	
}

MadCap|slideshowBullet.active
{
	background-color: #0C55B8;
}

/*Slides with white border*/

div.slide
{
	background-color: #ffffff;
	border: #ffffff;
}

div.BackgroundGray
{
	background-color: rgba(55, 71, 79, .45);
	border-radius: 20px;
	/*	border-radius: 999px; */
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	text-align: center;
	max-width: 300px;
	height: 200px;
}

div.BackgroundPurple
{
	background-color: rgba(128, 97, 188, .5);
	/* background-color: rgba(128, 97, 188, .45); */
	border-radius: 20px;
	/*	border-radius: 999px; */
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	text-align: center;
	max-width: 300px;
	height: 200px;
}

div.BackgroundBrightBlue
{
	background-color: rgba(50, 98, 199, .5);
	/* background-color: rgba(50, 98, 199, .45); */
	border-radius: 20px;
	/*	border-radius: 999px; */
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	text-align: center;
	max-width: 300px;
	height: 200px;
}

div.BackgroundGreen
{
	background-color: rgba(111, 193, 177, .45);
	/* background-color: rgba(111, 193, 177, .3); */
	border-radius: 20px;
	/*border-radius: 999px;*/
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	text-align: center;
	max-width: 300px;
	height: 200px;
}

div.BackgroundMagenta
{
	background-color: rgba(234, 64, 172, .45);
	/*	background-color: rgba(234, 64, 172, .5); */
	border-radius: 20px;
	/*	border-radius: 999px; */
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	max-width: 300px;
	height: 200px;
}

div.slideBorder
{
	background-color: #ffffff;
	border-radius: 20px;
	/*	border-radius: 999px; */
	border: solid 5px #0C55B8;
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	padding: 5px;
	text-align: center;
	max-width: 300px;
	height: 200px;
}

div.slideBackgroundIcon1
{
	background-color: #ffffff;
	border: #ffffff;
	background-image: url('../Images/SlideshowBackground2.png');
	background-repeat: no-repeat;
	background-position: right bottom;
}

/*Slides with blue border*/

div.slideB
{
	background-color: #ffffff;
	border: #002677;
}

div.BackgroundPurpleB
{
	background-color: rgba(128, 97, 188, .3);
	color: #ffffff;
	border-radius: 20px;
	/*	border-radius: 999px;*/
	border: 10px solid #002677;
	overflow: hidden;
	Font-weight: bold;
	margin: auto;
	text-align: center;
	width: 250px;
	height: 250px;
}

div.BackgroundBrightBlueB
{
	background-color: rgb(50, 98, 199, .3);
	color: #ffffff;
	border-radius: 20px;
	/*	border-radius: 999px; */
	border: 10px solid #3262C7;
	overflow: hidden;
	Font-weight: bold;
	margin: auto;
	text-align: center;
	width: 250px;
	height: 250px;
}

div.BackgroundGreenB
{
	background-color: rgba(21, 167, 150, .3);
	/*	background-color: rgba(111, 193, 177, .3); */
	color: #ffffff;
	border-radius: 20px;
	/*	border-radius: 999px; */
	border: 10px solid #002677;
	overflow: hidden;
	Font-weight: bold;
	margin: auto;
	text-align: center;
	width: 250px;
	height: 250px;
}

div.slideBackgroundIcon1B
{
	background-color: #ffffff;
	color: #ffffff;
	border-radius: 20px;
	/*	border-radius: 999px; */
	border: 10px solid #002677;
	overflow: hidden;
	Font-weight: bold;
	margin: auto;
	text-align: center;
	width: 250px;
	height: 250px;
	background-image: url('../Images/SlideshowBackground2.png');
	background-repeat: no-repeat;
	background-position: right bottom;
}

div.BackgroundBlueIcon
{
	border-radius: 20px;
	/*	border-radius: 999px;*/
	border: 10px solid #002677;
	overflow: hidden;
	Font-weight: bold;
	margin: auto;
	text-align: center;
	width: 250px;
	height: 250px;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #3262C7;
	color: #ffffff;
	background-image: url('../Images/IdeasBlue.png');
}

/*End slides with blue border*/

MadCap|slideshow.Float
{
	background-color: #ffffff;
}

/*===========================================================================================================================================================
Styles after this point are styles that are for specific mediums. If any additional styles are added to this template they will be listed after mediums.
[@media tablet] declares styles that will apply when the screen is in tablet view
[@media mobile] declares styles that will apply when the screen is in mobile view
===========================================================================================================================================================*/

/*	@media (min-width: 79.985em)
.hero-content-background 
{
	background: linear-gradient(62.8deg,#0f0f59 45%,transparent 45%)
	}*/

@media only screen and (max-width: 1279px)
{
	#content-section .right-section,
	#content-section .left-section
	{
		padding: 0;
	}

	div.topic-hero	/*This is the first Hero/Banner on the Home Page - To replace the banner image with your own, change background-image property*/
	{
		height: 350px;
		padding-bottom: 15px;
		padding-top: 15px;
		background-color: #d3d3d3;
		background-size: cover;
		background-repeat: no-repeat;
		/* Create the parallax scrolling effect */
		background-attachment: fixed;
		background-position: center 0;
		background-image: none;
	}

	.hero-content-background
	{
		padding: 15px;
		background: linear-gradient(62.8deg,#002677 45%,transparent 45%);
		background-color: transparent;
		height: 300px;
	}

	.hero-content
	{
		/*	max-width: 45%;*/
		text-align: center;
	}

	.hero-media
	{
		left: 40%;
	}

	.container
	{
		padding: 5;
		max-height: 300px;
		overflow: hidden;
		max-width: 45%;
		background-color: transparent;
		margin: auto;
	}

	p.info-title
	{
		font-size: 2em;
	}

	p.info-content
	{
		font-size: .8em;
	}

	div.footer
	{
		padding-top: 20px;
		padding-bottom: 20px;
		position: fixed;
		left: 0;
		bottom: 0;
	}

	div.home-master-page-footer > div:nth-child(1)
	{
		width: 25%;
		margin-left: 0%;
	}

	div.home-master-page-footer > div:nth-child(2)
	{
		width: 50%;
		margin-left: 0%;
	}

	div.home-master-page-footer > div:nth-child(3)
	{
		width: 25%;
		margin-left: 0%;
	}

	div.home-tiles
	{
		mc-grid-row: true;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1%;
		margin-bottom: 1%;
		max-height: 85px;
		background-color: FAF8F2;
	}

	div.home-tiles::before
	{
		content: ' ';
		display: table;
	}

	div.home-tiles::after
	{
		content: ' ';
		display: table;
		clear: both;
	}

	div.home-tiles > div
	{
		float: left;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		border-radius: 20px;
		/*border-radius: 999px; */
		border: 1px solid #d3d3d3;
		/*	border: 1px solid #484d4f; */
		padding: 5pt;
		position: relative;
		top: 50pt;
	}

	div.home-tiles > div:nth-child(1)
	{
		width: 32%;
		margin-left: 1%;
	}

	div.home-tiles > div:nth-child(2)
	{
		width: 32%;
		margin-left: 1%;
	}

	div.home-tiles > div:nth-child(3)
	{
		width: 32%;
		margin-left: 1%;
	}

	p.tile-title
	{
		text-align: center;
		font-size: 1.4em;
		color: #002677;
		margin: 5%;
	}

	div.info-container
	{
		margin-left: auto;
		margin-right: auto;
		margin-top: 50px;
		padding-top: 15px;
		padding-bottom: 25px;
		box-shadow: inset -1px 1px 17px 0px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
		background-attachment: fixed;
		background-position: center 0;
		background-size: cover;
		background-repeat: no-repeat;
		background-image: none;
		background-color: #ffffff;
		color: #002677;
		text-align: center;
		position: relative;
		top: 50pt;
	}

	div.footer
	{
		padding-top: 20px;
		padding-bottom: 20px;
		position: relative;
		bottom: 0;
	}

	div.info-section > div
	{
		text-align: center;
	}

	div.info-section > div:nth-child(1)
	{
		width: 100%;
		margin-left: 0%;
		margin-bottom: 10%;
		margin-top: 5%;
	}

	div.info-section > div:nth-child(2)
	{
		width: 100%;
		margin-left: 0%;
		margin-bottom: 5%;
	}

	div.info-section > div:nth-child(3)
	{
		width: 100%;
		margin-left: 0%;
	}

	@media mobile
	{
		#content-section
		{
			padding-top: 30px;
			padding-bottom: 30px;
		}

		.container
		{
			max-width: 100%;
			padding-left: 1.876em;
			padding-right: 1.876em;
			max-height: 300px;
		}

		.hero-content-background
		{
			padding: 0px;
			background: linear-gradient(62.8deg,transparent 45%,transparent 45%);
			background-color: #d3d3d3;
		}

		div.topic-hero	/*This is the first Hero/Banner on the Home Page - To replace the banner image with your own, change background-image property*/
		{
			padding-bottom: 5px;
			padding-top: 5px;
			background-size: cover;
			background-repeat: no-repeat;
			/* Create the parallax scrolling effect */
			background-attachment: fixed;
			background-position: center 0;
			background-image: none;
			background-color: #d3d3d3;
		}

		div.search-container
		{
			margin-bottom: 50px;
		}

		p.tile-title
		{
			font-size: 1.2em;
		}

		p.info-title
		{
			font-size: 2em;
		}

		p.info-content
		{
			font-size: 1em;
		}

		div.home-tiles > div
		{
			margin-top: 2%;
		}

		div.home-tiles > div:nth-child(1)
		{
			width: 90%;
			margin-left: 5%;
		}

		div.home-tiles > div:nth-child(2)
		{
			width: 90%;
			margin-left: 5%;
		}

		div.home-tiles > div:nth-child(3)
		{
			width: 90%;
			margin-left: 5%;
		}

		div.info-section > div
		{
			text-align: center;
			padding: 0 20px;
		}

		div.info-section > div:nth-child(1)
		{
			width: 100%;
			margin-left: 0%;
			margin-bottom: 10%;
			margin-top: 5%;
		}

		div.info-section > div:nth-child(2)
		{
			width: 100%;
			margin-left: 0%;
			margin-bottom: 5%;
		}

		div.info-section > div:nth-child(3)
		{
			width: 100%;
			margin-left: 0%;
		}

		div.home-master-page-footer > div	/* Adds separators to the footer items when in mobile layout */
		{
			border-bottom: 1px solid #d3d3d3;
		}

		div.home-master-page-footer > div:nth-child(1)
		{
			width: 100%;
		}

		div.home-master-page-footer > div:nth-child(2)
		{
			width: 100%;
		}

		div.home-master-page-footer > div:nth-child(3)
		{
			width: 100%;
		}
	}

	div.global-tiles	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
	{
		mc-grid-row: true;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1%;
		margin-bottom: 1%;
		color: #002677;
	}

	div.global-tiles > div
	{
		float: left;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		background-color: #ffffff;
		transition: all 0.3s cubic-bezier(.25,.8,.25,1);
		/*Adds transition animation when switching between screen sizes*/
		/*	-moz-border-radius: 999x;
		-webkit-border-radius: 999px; */
		-moz-border-radius: 20x;
		-webkit-border-radius: 20px;
		border-radius: 20px;
		/*	border-radius: 999px; */
		border: 1px solid #d3d3d3;
		padding: 60px 10px;
		overflow: hidden;
	}

	div.global-tiles > div:hover	/*When hovering over a home-tile, these properties apply*/
	{
		box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
		color: #f42a4d;
		background-color: #ffffff;
		border: 1.5px solid #f42a4d;
		transform: scale(1.03);
	}

	div.global-tiles > div:nth-child(1)
	{
		width: 16.667%;
		margin-left: 24%;
	}

	div.global-tiles > div:nth-child(2)
	{
		width: 16.667%;
		margin-left: 1%;
	}

	div.global-tiles > div:nth-child(3)
	{
		width: 16.667%;
		margin-left: 1%;
	}

	/*=Elements for text contained within each home-tile=*/

	p.tile-title
	{
		text-align: center;
		font-size: 1.4em;
		color: #002677;
	}

	p.tile-content
	{
		text-align: center;
		font-size: 0.8em;
		color: #002677;
	}

	p.tile-items
	{
		font-size: 0.7em;
		text-align: center;
		color: #002677;
	}

	div.home-tiles a	/*Complex Selector: Any anchor (links) tags that are within div.home-tiles will have the following properties*/
	{
		text-decoration: none;
		color: #002677;
		transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	}

	a.product
	{
		border-bottom-color: transparent;
		border: none 2px transparent;
	}
}

@media only screen and (max-width: 767px)
{
	h1.hero
	{
		color: #002677;
		font-size: 1.25em;
	}

	.container
	{
		max-width: 100%;
		background-color: #d9f6fa;
	}

	.hero-content
	{
		text-align: center;
	}

	div.topic-hero	/*This is the first Hero/Banner on the Home Page - To replace the banner image with your own, change background-image property*/
	{
		height: 300px;
		background-image: none;
	}
}

div.BackgroundWarmWhite
{
	border-radius: 20px;
	overflow: hidden;
	Font-weight: bold;
	margin: 10px 1%;
	text-align: center;
	max-width: 300px;
	height: 200px;
	background-color: #faf8f2;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-style: solid;
	border-right-width: 1px;
	border-top-style: solid;
	border-top-width: 1px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

