@charset "UTF-8";

:root {
	--text-colour-dark: #000000;
	--accent-colour-lightest: #e7dfec;
	--accent-colour-light: #b89fc6;
	--accent-colour: #895ea1;
	--accent-colour-dark: #523960;
	--accent-colour-darkest: #1b1320;
}

* {
	transition: all 0.2s linear;
}

/* Body */
body {
	font-family: 'Source Sans Pro', sans-serif;
	background-color: #f2f2f2;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
}

h1,
h2,
h3,
h4 {
	color: var(--accent-colour-dark);
}

.social {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.social>*:not(:first-of-type) {
	margin-left: 5px;
}

.social>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	/* border-radius: 50%; */
	color: white;
	text-decoration: none;
	font-size: 24px;
	filter: grayscale(100%);
}

.social>a:hover {
	filter: none;
}

.social>a.wordle {
	background: #6aaa64;
}

.social>a.fa-linkedin {
	background: #2867B2;
}

/* Container */
.container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #FFFFFF;
}

/* Navigation */
header {
	width: 100%;
	height: 5%;
	background-color: var(--accent-colour);
	border-bottom: 1px solid #421E62;
	z-index: 100;
}

.logo {
	color: #fff;
	font-weight: bold;
	text-align: undefined;
	width: 10%;
	float: left;
	margin-top: 15px;
	margin-left: 25px;
	letter-spacing: 4px;
}

nav {
	float: right;
	width: 50%;
	text-align: right;
	margin-right: 25px;
}

header nav ul {
	list-style: none;
	float: right;
}

nav ul li {
	float: left;
	color: #FFFFFF;
	font-size: 14px;
	text-align: left;
	margin-right: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	transition: all 0.3s linear;
}

ul li a {
	color: #FFFFFF;
	text-decoration: none;
}

ul li:hover a {
	color: #421E62;
}

.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
}

section {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 35px;
	display: inline-block;
	background-color: #FFFFFF;
	margin-top: 0px;
}

/* Hero Section */
.hero {
	display: block;
	text-align: center;
	padding-top: 150px;
	padding-bottom: 150px;
}

.text_box {
	background: rgba(0, 0, 0, 0.7);
	max-width: 50%;
	display: inline-block;
	backdrop-filter: blur(7px);
	padding: 10px;
	margin: auto;
}

.light {
	font-weight: bold;
	color: #717070;
}

.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* About Section */
.text_column {
	width: 29%;
	text-align: justify;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	color: var(--text-colour-dark);
}

/* Stats Gallery */
.stats {
	color: var(--accent-colour-light);
	margin-bottom: 5px;
}

.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #FFFFFF;
	/* [disabled]min-width: 400px;
*/
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}

.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 35px;
}

.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	color: var(--text-colour-dark);
}

/* Parallax Section */
.banner {
	height: 400px;
}

.parallax_image {
	background-color: var(--accent-colour);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

.parallax_image.top {
	background-position: top;
}

.parallax_image.bottom {
	background-position: bottom;
}

.parallax_image.center {
	background-position: center;
}

.parallax {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	padding-top: 110px;
	letter-spacing: 2px;
	margin-top: 0px;
}

.parallax_description {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	width: 30%;
	float: right;
	font-weight: lighter;
	line-height: 23px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* More info */
.more_info_column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}

.more_info_column h3 {
	color: #B3B3B3;
	text-align: center;
}

.more_info_column p {
	color: var(--text-colour-dark);
	background-color: #FFFFFF;
}

.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}

.more_info_column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	line-height: 25px;
	font-weight: lighter;
	margin-left: 20px;
	margin-right: 20px;
}

.image_button {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all 0.3s linear;
	padding: 10px;
}

.image_button:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}

.button:hover {
	background-color: #FEFEFE;
	color: #C4C4C4;
	cursor: pointer;
}

footer {
	background-color: var(--accent-colour-light);
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
}

.introduce {
	display: flex;
	flex-direction: column;
	align-items: center;
}

input[type="text"] {
	border: 1px solid black;
	outline: none;
	border-radius: 2em;
	padding: 5px 15px;
	margin: 2px;
	width: 200px;
}

input[type="submit"] {
	background-color: var(--accent-colour);
	color: white;
	border: none;
	outline: none;
	border-radius: 2em;
	padding: 5px 15px;
	margin-top: 2px;
	margin-bottom: 35px;
}

.hidden {
	display: none;
}

/* Mobile */
@media (max-width: 320px) {
	.logo {
		width: 100%;
		text-align: center;
		margin-top: 13px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
	}

	.container header nav {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		width: 100%;
		float: none;
		display: none;
	}

	nav ul li {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		width: 100%;
		text-align: center;
	}

	.text_column {
		width: 100%;
		text-align: justify;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}

	.thumbnail {
		width: 100%;
	}

	.more_info_column {
		width: 100%;
		margin-top: 0px;
	}

	.parallax {
		text-align: center;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		padding-top: 40%;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		width: 100%;
		font-size: 18px;
	}

	.parallax_description {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		width: 90%;
		margin-top: 25px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 12px;
		float: none;
		text-align: center;
	}

	.banner {
		background-color: var(--accent-colour);
		background-image: none;
	}

	.tagline {
		margin-top: 20px;
		line-height: 22px;
	}

	.hero_header {
		padding-left: 10px;
		padding-right: 10px;
		line-height: 22px;
		text-align: center;
	}
}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
	.logo {
		width: 100%;
		text-align: center;
		margin-top: 13px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		color: #043745;
	}

	.container header nav {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		width: 100%;
		float: none;
		overflow: auto;
		display: inline-block;
		background: var(--accent-colour);
	}

	header nav ul {
		padding: 0px;
		float: none;
	}

	nav ul li {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		width: 100%;
		text-align: center;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.text_column {
		width: 100%;
		text-align: left;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}

	.thumbnail {
		width: 100%;
	}

	.more_info_column {
		width: 100%;
		margin-top: 0px;
	}

	.parallax {
		text-align: center;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		padding-top: 40%;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		width: 100%;
		font-size: 18px;
	}

	.parallax_description {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		margin-top: 30%;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		float: none;
		width: 100%;
		text-align: center;
	}

	.thumbnail {
		width: 50%;
	}

	.parallax {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-top: 20%;
	}

	.parallax_description {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		width: 100%;
		padding-top: 30px;
	}

	.banner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.more_info_column {
		width: 100%;
	}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
	.text_column {
		width: 100%;
	}

	.thumbnail {
		width: 50%;
	}

	.text_column {
		width: 100%;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}

	.banner {
		margin-top: 0px;
		padding-top: 0px;
	}
}