@import url('https://fonts.googleapis.com/css?family=Montserrat:300,700'); /* import Montserrat font  */

* {
	box-sizing: border-box;
	height: auto;
}

body,
html {
	font-family: 'Montserrat', sans-serif;
	min-height: 100vh;
	margin: 0;
}

body {
	background: #f4f4f4 url('../assets/candlebg.svg') !important;
	background-size: cover;
}

#home-container {
	display: grid;
	grid-template-columns: 10px 1fr 10px; /* for left and right sections */
	grid-template-rows: 10px 1fr 1fr 10px;
	grid-gap: 20px;
	height: 100%;
	overflow-x: auto !important;
	margin-bottom: 20px !important;
}

#inner {
	grid-row: 2;
	grid-column: 2;
	align-self: center;
	justify-self: center;
}
#inner-compliancereport {
	grid-row: 1;
	grid-column: 2;
	align-self: flex-start;
	justify-self: center;
	padding-top: 70px;
}

#illustration {
	grid-row: 3;
	grid-column: 2;
	align-self: center;
	justify-self: center;
	width: 100%;
	padding: 10px;
}

@media (min-width: 768px) {
	#home-container {
		grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
		grid-template-rows: 1fr;
	}
	#inner {
		grid-column: 2;
		grid-row: 1;
	}

	#illustration {
		grid-column: 3;
		grid-row: 1;
	}
}

img#logo {
	width: 200px;
	margin-bottom: 1.6em;
}

h1 {
	font-size: 3em;
	text-transform: uppercase;
	color: #303030;
	margin-bottom: 0.2em;
	animation: monitorIn 0.5s ease-in-out forwards; /* assign animation to monitor with 'monitorIn' as keyframe name */
	opacity: 1;
}

p.subtitle {
	font-size: 2em;
	color: #797676;
	margin-top: 0;
	animation: monitorIn 0.7s ease-in-out forwards; /* assign animation to monitor with 'monitorIn' as keyframe name */
	opacity: 1;
}
.title-compliancereport {
	font-size: 2em;
	text-transform: uppercase;
	color: #303030;
	margin-bottom: 0.2em;
	animation: monitorIn 0.5s ease-in-out forwards; /* assign animation to monitor with 'monitorIn' as keyframe name */
	opacity: 1;
}
.subtitle-compliancereport {
	font-size: 1em;
	color: #797676;
	margin-top: 0;
	animation: monitorIn 0.7s ease-in-out forwards; /* assign animation to monitor with 'monitorIn' as keyframe name */
	opacity: 1;
	font-weight: bold;
}
.titlemain-compliancereport {
	margin-top: 50px;
	font-size: 1.5em;
	color: #000000;
}
#logo-compliancereport {
	margin-left: 30px;
	margin-top: 70px;
}

.cta {
	background-color: #d1a528;
	padding: 1em;
	color: #fff;
	font-weight: bold;
	margin-top: 2em;
	margin-right: 30px;
	display: inline-block;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 0 0 0 0 rgba(9, 187, 233, 0.2);
	opacity: 0.8;
}

.cta:hover,
.cta:focus {
	-webkit-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	-moz-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	-ms-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
}

@-webkit-keyframes pulse {
	to {
		box-shadow: 0 0 0 20px rgba(9, 187, 233, 0);
	}
}
@-moz-keyframes pulse {
	to {
		box-shadow: 0 0 0 20px rgba(9, 187, 233, 0);
	}
}
@-ms-keyframes pulse {
	to {
		box-shadow: 0 0 0 20px rgba(9, 187, 233, 0);
	}
}
@keyframes pulse {
	to {
		box-shadow: 0 0 0 20px rgba(9, 187, 233, 0);
	}
}

#monitor {
	animation: monitorIn 1s ease-in-out forwards; /* assign animation to monitor with 'monitorIn' as keyframe name */
	opacity: 0;
}

#test {
	margin-top: 2%;
	margin-left: 25%;
	animation: chatblips 0.5s ease-in-out 0.8s forwards; /* assign animation to iota with 'chatblips' as keyframe name */
	opacity: 0;
	z-index: 2;
	width: 130px;
}

@keyframes monitorIn {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes chatblips {
	/* taken from http://angrytools.com/css/animation/ for bounce-in animation*/
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.table-compliancereport tr td {
	padding: 4px;
}
.table-compliancereport tr td a {
	text-decoration: none;
	color: #000000;
}
.card-facultyprofile {
	margin-top: 60px !important;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
	margin: auto;
	text-align: center;
	border-radius: 5px;
	background-color: #f4f4f4;
	padding: 2px !important;
	width: 300px;
	height: auto;
}

.title-facultyprofile {
	color: grey;
	font-size: 12px;
	padding: 0px !important;
}

.button-facultyprofile {
	background-color: #d1a528;
	padding: 0.5em;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	display: inline-block;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 0 0 0 0 rgba(9, 187, 233, 0.2);
	opacity: 0.8;
	width: 100%;
}
.button-facultyprofile:hover,
.button-facultyprofile:focus {
	-webkit-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	-moz-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	-ms-animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
	animation: pulse 1.25s infinite cubic-bezier(0.5, 0, 0, 1);
}

.link-facultyprofile {
	text-decoration: none;
	font-size: 22px;
	color: black;
}

.button-facultyprofile:hover,
.link-facultyprofile:hover {
	opacity: 0.7;
}
.gridtest {
	display: grid;
	grid-template-columns: auto auto;
	gap: 40px;
	padding: 0px !important;
}
#logo-faculty {
	width: 100px;
	margin-left: 25px;
	margin-top: 35px;
}
.title-faculty {
	font-size: 40px;
}
.titlemain-faculty {
	font-size: 20px;
}
h2 {
	font-size: 1.3em;
	text-transform: uppercase;
	color: #303030;
	margin-bottom: 0.2em;
	animation: monitorIn 0.5s ease-out backwards !important;
	opacity: 1;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 80px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
	overflow-x: hidden !important;
}

/* Modal Content */
.modal-content {
	max-height: 100%;
	overflow: auto;
	text-align: center;
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 80%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}

	to {
		top: 0;
		opacity: 1;
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}

	to {
		top: 0;
		opacity: 1;
	}
}

/* The Close Button */
.close {
	color: white;
	float: right;
}
.modal-content p {
	margin-top: -15px !important;
}
.modal-content h4 {
	margin-top: 1px;
}
.img-faculty {
	height: 250px !important;
	width: 100% !important;
}

.modal-content h2 {
	font-size: 30px;
	font-weight: bold;
}
.modal-content h3 {
	font-size: 25px;
}
.modal-content p {
	font-size: 17px;
	text-decoration: underline;
}
.modal-content span {
	font-size: 17px;
	text-decoration: underline;
}
.modal-content h4 {
	font-size: 13px;
}
