﻿/*<meta />*/

/*===========================================================================================================================================================

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.

For help with MadCap Flare go to Help Ribbon > Topics Section > Open Help. Alternatively visit the Flare Online Help at help.madcapsoftware.com

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

===========================================================================================================================================================*/

/*==Home Page General Styles==*/

@font-face 
{
	font-family: 'Epilogue';
	src: url('../Fonts/Epilogue-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face 
{
	font-family: 'Epilogue SemiBold';
	src: url('../Fonts/Epilogue-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face 
{
	font-family: 'Work Sans';
	src: url('../Fonts/WorkSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face 
{
	font-family: 'Work Sans';
	src: url('../Fonts/WorkSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

body
{
	font-family: 'Epilogue', Arial, sans-serif;
	line-height: 1.12;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #210532;
}

.center
{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	float: none !important;
	text-align: center;
}

.off-canvas-content .main-section > .outer-row
{
	max-width: 100%;
	padding: 0;
}

/*==Home Tiles section 3 columns==*/

div.home-tiles3
{
	margin-top: 1.5%;
	margin-bottom: 1.5%;
	height: auto;
	display: flex;
	max-width: 100%;
}

div.home-tiles3::before
{
	content: ' ';
	display: table;
}

div.home-tiles3::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.home-tiles3 > div
{
	float: left;
	box-sizing: border-box;
	background-color: #F0E8FE;
	padding: 10px 10px;
	height: auto;
	overflow: hidden;
	border-radius: 24px;
}

div.home-tiles3 > div:hover
{
	background-color: #5d2bee;
	z-index: 1000;
	transition: background-color 0.25s ease-in-out;
}

div.home-tiles3 > div:hover p.tile-title
{
	color: #ffffff;
	transition: color 0.1s ease-in-out;
}

div.home-tiles3 > div:hover p.tile-subtitle
{
	color: #ffffff;
	transition: color 0.1s ease-in-out;
}

div.home-tiles3 > div:nth-child(1)
{
	width: 31.66%;
}

div.home-tiles3 > div:nth-child(2)
{
	width: 31.66%;
	margin-left: 2.5%;
}

div.home-tiles3 > div:nth-child(3)
{
	width: 31.66%;
	margin-left: 2.5%;
}

.image-container
{
	position: relative;
	width: auto;
	/* Specify the container's width */
	height: 45px;
	/* Specify the container's height */
	overflow: hidden;
	/* Hide overflow if needed */
	display: flex;
	/* Use flexbox for alignment */
	justify-content: center;
	/* Center the images horizontally */
	align-items: center;
	/* Center the images vertically */
	margin-top: 5%;
	margin-bottom: 5%;
}

.default-icon,
.hover-icon
{
	position: absolute;
	width: auto;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.1s ease-in-out;
	border: none;
}

.default-icon
{
	opacity: 1;
	z-index: 1;
}

.hover-icon
{
	opacity: 0;
	z-index: 0;
}

/* Images switch on hover of the specific .home-tiles3 div */

.home-tiles3 > div:hover .image-container .default-icon
{
	opacity: 0;
}

.home-tiles3 > div:hover .image-container .hover-icon
{
	opacity: 1;
}

/*=Elements for text contained within each home-tile=*/

p.tile-title
{
	text-align: center;
	font-size: 1.7em;
	color: #0A2191;
	font-family: 'Work Sans';
	font-weight: 600;
	margin-top: 2%;
	margin-bottom: 2%;
}

p.tile-subtitle
{
	text-align: center;
	font-size: 1em;
	color: #0A2191;
	font-family: 'Work Sans';
	font-weight: 600;
	margin-top: 2%;
	margin-bottom: 2%;
	padding-bottom: 5%;
}

/*===========================================================================================================================================================
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 only screen and (max-width: 767px)
{
	p.tile-title
	{
		font-size: 1.3em;
	}

	p.tile-subtitle
	{
		display: none;
	}

	img.StartPage
	{
		height: auto;
	}

	div.home-tiles3 > div
	{
		margin-top: 2%;
		min-width: 25%;
	}

	div.home-tiles3 > div:nth-child(1)
	{
		width: 90%;
		margin-left: 2%;
		margin-right: 2%;
	}

	div.home-tiles3 > div:nth-child(2)
	{
		width: 90%;
		margin-left: 2%;
		margin-right: 2%;
	}

	div.home-tiles3 > div:nth-child(3)
	{
		width: 90%;
		margin-left: 2%;
		margin-right: 2%;
	}
}
