/*<meta conditions="General.ImportOnly" />*/

@import url('TopicStyles.css');

@font-face 
{
	font-family: Roboto;
	src: url(../Fonts/Roboto/Roboto-Regular.ttf);
}

/*font-family: 'Overpass';
	src: url(../Fonts/Overpass/Overpass-VariableFont_wght.ttf);*/

:root	/* This lets us use variables to style easily across the project. It takes the format of var(--example) to replace anything we use a lot eg "var(--grellow)" can be used instead of #D7DF23) */
{
	/* Colours */
	--grellow: #D7DF23;
	--housePurple: #582D87;
	--contrastPurple: #C7B7D5;
	--houseBlue: #09A9E0;
	--linkBlue: #076685;
	--bgGrey: #f6f6f6;
}

html
{
	font-size: 18px;
}

body
{
	font-family: Roboto, 'Overpass', Calibri, sans-serif;
	font-size: 18px;
	color: #000000;
}

#mc-main-content	/* Keeps the footer in roughly the right place */
{
	min-height: calc(70vh - 100px);
}

.body-container > div:nth-child(1)
{
	/* removes inherited padding */
	padding-right: 0px;
}

.body-container
{
	background-color: #efefef;
}

/* // BASIC FONT STYLING // */

h1
{
	font-weight: bold;
	font-size: 2rem;
	margin: 15px auto;
	border-bottom: none;
}

h2
{
	font-weight: bold;
	font-size: 1.8rem;
}

h3
{
	font-weight: bold;
	font-size: 1.6rem;
}

h4
{
	font-weight: bold;
	font-size: 1.4rem;
}

/* // END OF BASIC FONT STYLING // */
/*// HOME CONTENT STYLING //*/

p a figcaption
{
	font-size: 1rem;
	font-family: Roboto, sans-serif;
	line-height: 1.5;
}

.homeTiles
{
	margin: 15px 5px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.homeTiles > a
{
	color: #000000;
}

/*
#homeBody
{
	text-align: center;
	margin: auto;
	max-width: 1200px;
}

.homeTiles
{
	margin: 10px auto 80px;
	box-sizing: border-box;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.homeTiles > a
{
	margin: 0 5px;
	flex: 0 1 0px;
}*/

.tile
{
	width: 25%;
	max-width: 300px;
	min-width: 275px;
	min-height: 220px;
	height: 240px;
	display: inline-block;
	border-radius: 10px;
	margin: 15px 30px 15px 30px;
	cursor: pointer;
	box-sizing: border-box;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
	padding: 0px 5px;
	background-color: #ffffff;
	box-shadow: 0px 1px 4px 0px #cccccc;
}

.tile:hover
{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	transition: all 0.8s cubic-bezier(.25,.8,.25,1);
}

.tile:active
{
	box-shadow: none;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	color: lightgrey;
}

.tileIcon
{
	height: 150px;
	min-height: auto;
	min-width: 100px;
}

.tile > figure
{
	margin: 15px 0px 35px;
}

.tile > figure > img
{
	padding: 0;
}

.tile > figure > figcaption
{
	font-size: 1.25rem;
	font-weight: bold;
	font-style: normal;
}

/*
.tile
{
	
	border-radius: 10px;
	margin: 10px 10px;
	cursor: pointer;
	box-sizing: border-box;
	text-align: center;
	vertical-align: middle;
	padding: 0px 10px;
	background-color: #ffffff;
	box-shadow: 0px 1px 4px 0px #cccccc;
	min-width: 350px;
	height: 90px;
}

.tile:hover
{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	transition: all 0.8s cubic-bezier(.25,.8,.25,1);
}

.tile:active
{
	box-shadow: none;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	color: lightgrey;
}

.tileIcon
{
	height: 60px;
	width: auto;
	max-width: 100%;
	margin: 15px 0;
}

.tile:nth-child(even)
{
	float: right;
}

.tile > figure
{
    margin: 0;
}

.tile > figure > img
{
	padding: 0;
}

.tile > figure > figcaption
{
	text-align: left;
	font-size: 1.15rem;
	font-weight: bold;
	font-style: normal;
}*/

.pdfTile
{
	width: 15%;
	min-width: 160px;
	height: 180px;
	display: inline-block;
	border-radius: 10px;
	margin: 5px 20px 5px 20px;
	cursor: pointer;
	box-sizing: border-box;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
	padding: 5px 5px 10px;
	background-color: #ffffff;
	box-shadow: 0px 1px 4px 0px #cccccc;
}

.pdfTile:hover
{
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	transition: all 0.8s cubic-bezier(.25,.8,.25,1);
}

.pdfTile:active
{
	box-shadow: none;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	color: lightgrey;
}

.pdfTile > figure
{
	margin: 10px 16px 15px;
}

.pdfTile > figure > figcaption
{
	padding: 5px 10px 0px 10px;
	font-style: normal;
	font-weight: bold;
}

.pdfTile p
{
	font-weight: bold;
	padding: 0px 5px 5px;
	margin: unset;
}

figure
{
	width: unset;
	padding: auto;
	justify-content: center;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	align-content: center;
}

.center
{
	align-items: center;
	text-align: center;
}

.bList
{
	list-style: none;
}

ul.bList > li::before
{
	content: "•";
	/* Insert content that looks like bullets */
	padding-right: 8px;
	color: #076685;
}

.home-head
{
	height: 90px;
	margin: 20px 0px 40px;
	background: url("../Images/Home/ProductHero.png");
	/* Replace Image in project with whichever one is needed. */
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.home-head > h1
{
	font-size: 3.5em;
	text-align: center;
	padding: 30px 5px 20px 5px;
	color: #ffffff;
	margin: 0px;
}

.search-bar
{
	right: -16px;
}

/*// END OF HOME CONTENT STYLING //*/
/*// FOOTER STYLING //*/

footer	/* Removes styling that doesn't work on the Home Page */
{
	position: relative;
	left: 0px;
}

.footerPadding	/* This keeps the footer from overlapping/being overlapped by other elements in the body/proxies */
{
	height: 60px;
}

#footerBG
{
	position: absolute;
	bottom: 0;
	height: 60px;
	width: 100%;
	background-color: #f6f6f6;
	z-index: 0;
	border-top: 1px solid lightgray;
}

/*// END OF FOOTER STYLING //*/
/* // MICRO CONTENT STYLING // */

.faqs > div
{
	min-width: 500px;
	margin: 5px auto 10px;
	width: 66.66666%;
	padding: 10px 10px 0px;
}

.micro-content-phrase
{
	text-align: left;
}

.micro-content-drop-down-button
{
	float: right;
}

div.micro-response pre > p
{
	padding-left: 15px;
}

/* // END OF MICRO CONTENT STYLING // */

@media screen and (min-width: 1280px)
{
	figure
	{
		text-align: center;
		padding: 0 0 0 0;
	}
}

@media only screen and (max-width: 1279px)
{
	.faqs > div	/* Makes the FAQs fit on smaller devices */
	{
		min-width: 100%;
	}

	figure	/* Makes the "quick link" tiles fit better */
	{
		margin: 16px 10px;
	}

	.tile
	{
		margin-left: 0px;
	}

	.homeTiles > a:nth-child(even) > .tile
	{
		margin-right: 0px;
	}

	.home-head	/* Adds side padding to the header image */
	{
		margin: 20px 5px;
	}
}

