@charset "UTF-8";

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: #4d4949;
}

.page {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 120px 60px 1fr 60px;
	/*grid-template-rows: 120px 1fr 60px;*/
}

.header {
	grid-column: 1/13;
	grid-row: 1/2;
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	/*background-position: center;
	background-size: cover;*/
	background-position: center top;
	background-size: contain;
	background-color: #003399;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(2, 60px);
	row-gap: 10px;
}

/*.banner {
	grid-column: 1/12;
	grid-row: 1/3;
	width: 100%;
	position: absolute;
}*/

.logo {
	grid-column: 5/6;
	grid-row: 1/3;
	position: relative;
	margin: auto;
	/*border: 2px solid white;*/
}

.organisation-name {
	/*visibility: hidden;*/
	grid-column: 6/12;
	grid-row: 1/2;
	position: relative;
	width: 100%;
	margin-top: 25px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 40px;
	font-weight: bold;
	color: white;
	/* rgb(220, 236, 250);*/
	letter-spacing: 2px;
	/*border: 2px solid saddlebrown;*/
}

.organisation-tag {
	/*visibility: hidden;*/
	grid-column: 6/12;
	grid-row: 2/3;
	position: relative;
	width: 100%;
	margin: 4px 0 0 30px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: gainsboro;
	letter-spacing: 1px;
	/*border: 2px solid saddlebrown;*/
}

.top-scroll-container {
	grid-column: 1/13;
	grid-row: 2/3;
	background-color: #003399;
	/*width: 100%;*/
	overflow: hidden;
	/* Hide text that moves out of the container */
	position: relative;
	color: ghostwhite;
	display: flex;
	align-items: center;
	justify-content: center;
	border-width: 2px 0 0 0;
	border-style: solid;
	/*border-color: #1984de;*/
	border-color: rgb(223, 165, 21);
}

.scrolling-text {
	white-space: nowrap;
	position: absolute;
	/*animation: scroll-left 10s linear infinite;*/
	animation-duration: 12s;
	animation-direction: normal;
	animation-iteration-count: infinite;
	animation-name: scroll-left;
	animation-timing-function: linear;
}

/* Animation for scrolling from right to left */
@keyframes scroll-left {
	0% {
		transform: translateX(350%);
		/* Start from the right */
	}

	100% {
		transform: translateX(-350%);
		/* End at the left */
	}
}

.content {
	grid-column: 1/13;
	grid-row: 3/4;
	/*grid-row: 2/3;*/
	min-height: 100vh;
	height: auto;
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-template-rows: auto;
}

.side-nav {
	grid-column: 1/2;
	grid-row: 1/2;
	/*background-color: rgb(240, 238, 238);*/
	background-color: #003399;
	padding: 10px;
	/*border-width: 2px 0 0 0;
	border-style: solid;
	border-color: ghostwhite;*/
}

.side-nav a {
	float: left;
	text-align: left;
	padding: 10px;
	margin-top: 7px;
	display: block;
	width: 100%;
	color: white;
	text-decoration: none;
	font-size: 16px;
	background-color: #003399;
	border-width: 0 0 3px 0;
	border-color: rgb(223, 165, 21);
	border-style: solid;
	/*border-radius: 2px;*/
	border-radius: 15px;
}

.side-nav a:hover {
	color: cornflowerblue;
}

.side-nav a:active {
	color: rgb(132, 237, 100);
}

.main {
	grid-column: 2/13;
	grid-row: 1/2;
	background-color: white;
	padding: 40px;
	overflow: auto;
}

.main p {
	margin-top: 5px;
	margin-bottom: 10px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	/* font-size: 16px; */
	line-height: 30px;
	letter-spacing: 1px;
	text-align: justify;
	text-transform: none;
	word-wrap: break-word;
}

.main .align-left {
	text-align: left;
}

.main ul,
.main ol {
	margin-left: 30px;
}

.main li {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 1px;
	text-indent: 5px;
}

.main b {
	font-weight: bold;
}

.main h1 {
	margin: 5px 0 20px 0;
}

.main h4 {
	margin: 10px 0 10px 0;
}

.main table {
	border-style: solid;
	border-collapse: collapse;
	border-color: rgb(65, 61, 61);
}

.main table th {
	border-style: solid;
	/* text-align: left; */
	height: 40px;
	padding: 5px;
	background-color: rgb(231, 231, 231);
}

.main table td {
	border-style: solid;
	height: 40px;
	padding: 5px;
}

.text-align-center {
	text-align: center;
}

.text-align-left {
	text-align: left;
}

.text-intent {
	text-indent: 15px;
}

/*img {
	border: 2px solid rgb(87, 82, 82);
	border-radius: 8px;
}*/

/* Clear floats after the columns */
.image-row:after {
	content: "";
	display: table;
	clear: both;
}

.image-column {
	position: relative;
	float: left;
	width: 200px;
	height: 225px;
	padding: 10px;
}

.image-column img {
	width: 100%;
	opacity: 0.8;
	cursor: pointer;
}

.image-column img:hover {
	opacity: 1;
}

.image-column .image-text {
	position: absolute;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	text-align: center;
	font-size: 12px;
	bottom: 0px;
	width: 90%;
	padding: 10px;
}

blockquote {
	padding: 20px;
	background-color: lightgray;
	line-height: 30px;
	border-radius: 10px;
	height: auto;
	font-style: italic;
}

.blank-space {
	margin: 20px;
}

.bottom-nav a {
	background-color: #003399;
	color: ghostwhite;
	padding: 10px;
	text-decoration: none;
	letter-spacing: 0.75px;
}

.bottom-nav a:hover {
	color: cornflowerblue;
}

.bottom-nav .back {
	float: right;
	text-align: center;
}

/* .bottom-nav .top {
	float: left;
} */

.footer {
	grid-column: 1/13;
	grid-row: 4/5;
	/*grid-row: 3/4;*/
	background-color: #003399;
}

.footer-nav {
	padding: 10px;
}

.footer-nav a {
	color: white;
	text-decoration: none;
	padding: 10px;
	letter-spacing: 1px;
}

.footer-nav a:hover {
	color: cornflowerblue;
}

.footer-nav .top {
	float: right;
}

/* For small devices (phones) and medium devices (tablets) */
@media (min-width: 0px) and (max-width: 800px) {
	.header {
		background-image: none;
	}

	.logo {
		grid-column: 7/8;
	}

	.organisation-name {
		visibility: hidden;
	}

	.organisation-tag {
		visibility: hidden;
	}

	.content {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.side-nav {
		grid-column: 1/2;
		grid-row: 1/2;
	}

	.main {
		grid-column: 1/2;
		grid-row: 2/3;
	}

	.bottom-nav .back {
		float: right;
		text-align: center;
		width: 100%;
	}

	video {
		width: 100%;
	}
}

@media (min-width: 801px) and (max-width: 1024px) {
	.logo {
		grid-column: 7/8;
	}

	.organisation-name {
		visibility: hidden;
	}

	.organisation-tag {
		visibility: hidden;
	}

	.bottom-nav .back {
		float: right;
		text-align: center;
		width: 100%;
	}

	video {
		width: 400px;
	}
}

/* For large devices (desktops) */
@media (min-width: 1280px) {}