@charset "UTF-8";
/* CSS Document */

:root {
	--color-primary: #00AFCA;
	--color-primary-dark: #009AB4;
	--color-primary-light: #E0F8FC;
	--color-link: #008DA6;
	--color-text: #333;
	--color-white: #FFFFFF;
	--color-background: #f0f0f0;
	--color-background-alt: #F3F3F3;
	--color-border: #eee;
	--font-serif: "Source Serif 4", "Droid Serif", serif;
	--font-sans: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	--font-serif-ar: "Times New Roman", Times, serif;
}

/* Text and classes for markdown */
.offWhite {
	color: var(--color-background-alt);
}

p {
	margin-bottom: 1.25em;
	margin-top: 1.25em;
}

body.AR p {
	padding-right: 10px;
}

a {
	color: var(--color-link);
	text-decoration: none;
	transition: color 0.25s ease-in-out;
}

a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

h1 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
}

h2 {
	font-size: 22px;
	line-height: 1.3;
	margin-top: 30px;
	font-weight: 700;
}

h3 {
	font-size: 18px;
	line-height: 36px;
	margin-top: 30px;
	font-weight: 700;
	font-style: italic;
}

body.AR h3 {
	font-style: normal;
}

h4 {
	font-size: 10px;
}

h5 {
	font-size: 8px;
}

hr {
	background-color: var(--color-border);
	color: var(--color-border);
	height: 1px;
	margin-bottom: 25px;
	border: none;
}

li ul,
li ul {
	margin-left: 25px;
}

li ul,
li ol {
	margin-bottom: 10px;
}

li br {
	display: none;
}

#regularPage p,
#regularPage ul,
#regularPage ol {
	max-width: 1400px;
	line-height: 26px;
}

body.embedMode #regularPage p,
body.embedMode #regularPage ul,
body.embedMode #regularPage ol {
	max-width: 100%;
}

#regularPage h2 {
	position: relative;
	border-bottom: var(--color-primary) solid 1px;
	padding-bottom: 10px;
	max-width: 1400px;
}

body.embedMode #regularPage h2 {
	max-width: 100%;
}

aside {
	display: block;
	float: right;
	width: 390px;
}

blockquote {
	border-left: .5em solid var(--color-border);
	padding: 0 2em;
	margin-left: 0;
	max-width: 476px;
	clear: both;
	/* Prevent text wrapping issues */
}

blockquote cite {
	font-size: 14px;
	line-height: 20px;
	color: #bfbfbf;
}

blockquote cite:before {
	content: '\2014 \00A0';
}

.rightAlign {
	text-align: right;
}

.marginTop25 {
	margin-top: 25px;
	position: relative;
}

.marginTop50 {
	margin-top: 50px;
}

.marginLeft25 {
	margin-left: 25px;
}

.marginLeft50 {
	margin-left: 50px;
}

.marginBottom25 {
	margin-bottom: 25px;
}

.marginBottom50 {
	margin-bottom: 50px;
}

.marginRight25 {
	margin-right: 25px;
}

.marginRight50 {
	margin-right: 50px;
}

body.AR ul,
body.AR ol {
	margin-right: 31px
}

/* Structure */
body {
	background-color: var(--color-background);
	font-family: var(--font-serif);
	color: var(--color-text);
	font-size: 17px;
	line-height: 1.6;
	min-width: 300px;
}

body.AR {
	font-family: var(--font-serif-ar);
	font-size: 26px;
}

body.embedMode {
	min-width: 1px;
	background-color: var(--color-background-alt);
}

#container {
	margin: 0px auto;
	background-color: var(--color-border);
	background-color: var(--color-background-alt);
	overflow: hidden;
	position: relative;
	width: 100%;
}

#contentEmbedArea {
	width: 90%;
	margin: 25px auto;
}

#logo {
	position: absolute;
	top: 20px;
	width: 365px;
	height: 55px;
	left: 25px;
	background-image: url('logo.svg');
	background-repeat: no-repeat;
	z-index: 2;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
	cursor: pointer;
}

body.AR #logo {
	left: auto;
	right: 25px;
}

#navBarSpace {
	position: relative;
	height: 95px;
	width: 100%;
	background-color: var(--color-primary);
}

#navBar,
#footer {
	color: var(--color-white);
	min-width: 300px;
	background-color: var(--color-primary);
}

#navBar {
	position: fixed;
	text-align: right;
	font-size: 16px;
	z-index: 500;
	width: 100%;
	height: 95px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

body.AR #navBar {
	font-size: 26px;
}

#navBar a {
	margin-right: 20px;
	color: var(--color-background-alt);
}

#navBarLinks {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999999;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 20px;
	box-sizing: border-box;
	pointer-events: none;
}

#navBarLinks a,
#navBarLinks .navDropdown {
	pointer-events: auto;
}

body.AR #navBarLinks {
	top: 50%;
	transform: translateY(-50%);
}

#navBar #languageSelect {
	color: var(--color-primary);
	background-color: var(--color-background-alt);
	padding: 2px;
	border-radius: 4px;
}

body.AR #navBar #languageSelect {
	margin-left: 15px;
}

/* More dropdown navigation */
.navDropdown {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	z-index: 10;
}

.navDropdownToggle .navDropdownToggle {
	cursor: pointer;
	user-select: none;
	padding: 10px 0;
	display: inline-block;
	z-index: 10;
}

.navDropdownMenu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 220px;
	max-width: 280px;
	background-color: var(--color-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	z-index: 9999;
	margin-top: 10px;
	padding: 8px 0;
}

/* Invisible bridge to prevent menu closing when hovering across gap */
.navDropdownMenu::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
	background: transparent;
}

.navDropdownMenu a {
	display: block;
	padding: 12px 20px;
	color: #333 !important;
	text-decoration: none;
	white-space: normal;
	word-wrap: break-word;
	transition: background-color 0.2s ease;
	margin: 0 !important;
	font-size: 16px;
	line-height: 1.4;
}

.navDropdownMenu a:hover {
	background-color: rgba(0, 175, 202, 0.15);
	color: var(--color-primary) !important;
}

/* Show dropdown on hover (desktop only - not on touch devices) */
@media (hover: hover) and (pointer: fine) {

	.navDropdown:hover .navDropdownMenu,
	.navDropdown .navDropdownToggle:hover+.navDropdownMenu,
	.navDropdownMenu:hover {
		display: block;
	}
}

/* Mobile tap support - works on all devices */
.navDropdown.active .navDropdownMenu {
	display: block;
}

body.AR .navDropdownMenu {
	left: 0;
	right: auto;
	text-align: right;
}

/* Midway breakpoint - hide nav buttons sooner to avoid logo clash */
@media only screen and (max-width: 1000px) {
	#navBarLinks a:not(.navDropdownToggle):not(#languageSelect) {
		display: none;
	}

	/* Change dropdown toggle to hamburger icon at same breakpoint */
	.navDropdownToggle::before {
		content: '☰';
		font-size: 24px;
		margin-right: 5px;
	}

	.navDropdownToggle {
		font-size: 0;
		/* Hide the text "More ▼" */
		padding: 8px 12px;
	}

	.navDropdown {
		margin-right: 5px;
	}

	#navBar a {
		margin-right: 10px;
	}

	.navDropdownMenu {
		min-width: 200px;
		max-width: calc(100vw - 40px);
		right: 10px;
		font-size: 15px;
		display: none;
	}

	.navDropdown.active .navDropdownMenu {
		display: block;
	}

	.navDropdownMenu a {
		padding: 10px 16px;
		font-size: 15px;
		margin-right: 0 !important;
		display: block !important;
	}

	/* Add main navigation items to mobile menu */
	.navMobileOnly {
		display: block !important;
		border-bottom: 1px solid rgba(0, 175, 202, 0.1);
		margin-bottom: 8px;
		padding-bottom: 8px;
		font-weight: 600;
		color: var(--color-primary) !important;
	}
}

/* Mobile adjustments for dropdown - keep for smaller screens */
@media only screen and (max-width: 800px) {
	/* Additional mobile-specific adjustments can go here if needed */
}


div.footerPrePadding {
	height: 50px;
}

#footer {
	height: 125px;
	width: 100%;
	overflow: hidden;
	position: relative;
	color: var(--color-primary-light);
	direction: ltr;
	font-size: 16px;
}

#footerLogo {
	position: relative;
	margin-left: 25px;
	margin-top: 25px;
}

a.JOQLink {
	color: inherit;
}

a.JOQLink:hover {
	text-decoration: underline;
}

#copyright,
#registered {
	position: absolute;
	width: 100%;
	top: 60px;
	height: 70px;
	left: 0px;
}

#registered {
	margin-left: 25px;
}

#copyright {
	text-align: right;
	margin-left: -25px;
}

#regularPage {
	padding: 25px;
}

/* Page images */
div.pageImages {
	margin-top: 25px;
	margin-bottom: 25px;
	position: relative;
	max-width: 1400px;
}

div.pageImages img.pageImage {
	display: inline-block;
}

div.pageImages.single img.pageImage {
	width: 100%;
}

div.pageImages.double img.pageImage {
	width: 50%;
}

div.pageImages.triple img.pageImage {
	width: 33.3333333%;
}

/* Home boxes */
.contentBox {
	position: relative;
	width: auto;
	padding: 25px 50px 50px 50px;
	overflow: hidden;
}

/* Home boxes - herobox */
div.herobox {
	height: 560px;
	background-color: #000;
	padding: 0px;
	position: relative;
}

div.herobox::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	opacity: 0.2;
	z-index: 1;
}

div.herobox .textArea {
	position: absolute;
	width: calc(100% - 50px);
	max-width: 450px;
	top: 25px;
	left: 25px;
	z-index: 2;
	padding-bottom: 80px;
}

div.herobox .title {
	font-size: 42px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	color: var(--color-white);
}

div.herobox .subtitle {
	font-size: 30px;
	margin-top: 25px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

div.parralaxHero {
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: right top 0px;
	background-attachment: fixed;
	z-index: 0;
}

html.no-js div.parralaxHero {
	background-attachment: scroll;
}

div.herobox a {
	display: inline-block;
	margin-top: 25px;
	margin-bottom: 0;
	padding: 12px 24px;
	background-color: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: background-color 0.3s ease;
	position: relative;
	z-index: 3;
}

div.herobox a::after {
	content: ' →';
	margin-left: 8px;
}

div.herobox a:hover {
	background-color: #008BA3;
}

/* Home boxes - quotebox */
div.quotebox h2 {
	font-size: 25px;
	line-height: 40px;
	font-style: italic;
	font-weight: 700;
	padding: 25px 50px 25px 50px;
	margin: 0px;
}

body.AR div.quotebox h2 {
	font-style: normal;
}

div.quotebox h3 {
	font-size: 25px;
	text-align: right;
	margin: 0px;
	font-weight: inherit;
	font-style: inherit;
}

div.quotebox img {
	margin-right: 25px;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

div.quotebox img.appeared {
	opacity: 1;
}

.expansionText {
	overflow: hidden;
	margin-top: -25px;
	padding-bottom: 25px;
	/* Add transition for smoother opening/closing */
	transition: all 0.4s ease-in-out;
}

.expansionText.hide {
	opacity: 0;
	height: 0px;
}

.expansionButton .expansionClose {
	display: none;
}

.expansionButton.active .expansionClose {
	display: inline;
}

.expansionButton.active .expansionOpen {
	display: none;
}

/* Home boxes - singlephotobox */
.singlePhoto {
	background-attachment: fixed;
	position: relative;
}

.singlePhoto::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	opacity: 0.2;
	z-index: 0;
}

html.no-js .singlePhoto {
	background-attachment: scroll;
	background-size: cover;
}

/* Home boxes - 2box */
div.content2box {
	height: 150px;
	width: 100%;
	position: relative;
	background-color: var(--color-primary);
	margin-bottom: -1px;
}

div.content2box1,
div.content2box2 {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

div.content2box2 {
	left: 50%;
}

div.content2box1.flip,
div.content2box2.flip {
	background-color: var(--color-primary-dark);
}

div.content2boxCentre {
	text-align: center;
	width: 350px;
	font-size: 25px;
	line-height: 28px;
	position: absolute;
	margin-left: -175px;
	margin-top: 20px;
	left: 50%;
}

div.content2boxCentre h1 {
	font-size: 45px;
	font-weight: bold;
	text-align: center;
	padding: 0;
	margin: 10px;
}

div.content2boxCentre h2 {
	font-size: 25px;
	line-height: 28px;
	font-weight: bold;
	font-style: italic;
	text-align: center;
	margin: 0;
	padding: 0;
}

body.AR div.content2boxCentre h2 {
	font-style: normal;
}

div.content2boxCentre h3 {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: var(--color-primary-light);
	margin: 0;
	padding: 0;
	font-style: inherit;
}

div.pieAnimation {
	width: 100px;
	height: 95px;
	background-position: 0px 0px;
	background-size: 100px;
}

/* Home boxes - categories */
a.categoryBoxLink {
	cursor: pointer;
	text-decoration: none;
}

span.categoryBoxItem {
	width: 32%;
	height: 200px;
	position: relative;
	background-size: cover;
	display: inline-block;
	color: var(--color-white);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
	font-size: 23px;
	line-height: 30px;
	margin: 0.5%;
	background-size: 100%;
	background-position: center center;
	border-color: var(--color-primary-dark);
	border-width: 2px;
	border-style: solid;
	cursor: pointer;
	background-repeat: no-repeat;
	background-color: #000000;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	vertical-align: top;
}

body.AR span.categoryBoxItem {
	font-size: 33px;
}

div.categoryBoxItems {
	margin: 50px auto 0px auto;
	position: relative;
	max-width: 1400px;
	text-align: center;
	font-size: 0;
}

span.categoryBoxItemText {
	position: absolute;
	margin-top: 20px;
	text-align: center;
	width: 260px;
	left: 50%;
	margin-left: -150px;
	z-index: 2;
	padding-left: 20px;
	padding-right: 20px;
}

span.blackOut {
	z-index: 1;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	opacity: 0.3;
	transition: opacity 0.4s ease-in-out;
}

span.categoryBoxItem:hover span.blackOut {
	opacity: 0.1;
}

span.categoryBoxItem:hover span.categoryBoxItemText {
	/* transform:scale(1.05); */
}

span.categoryBoxItem:hover {
	background-size: 105%;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
	border-color: var(--color-primary);
}

/* News date overlay */
span.categoryBoxDate {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 175, 202, 0.95);
	color: var(--color-white);
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	z-index: 3;
	text-shadow: none;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-in-out;
}

span.categoryBoxItem:hover span.categoryBoxDate {
	background-color: rgba(0, 175, 202, 1);
	transform: scale(1.05);
}

/* Home boxes - contact */
#contactBoxTextArea {
	position: relative;
	width: 100%;
	height: 250px;
	background-color: var(--color-white);
	margin-top: 25px;
}

.contactBoxSecondary {
	position: relative;
	width: 50%;
	height: 50px;
	background-color: var(--color-white);
	margin-top: 2px;
	display: inline-block;
}

#contactBoxSecondaryBuffer {
	display: none;
}

div.contactBoxInfo {
	width: 200px;
	height: 150px;
	position: relative;
	margin-top: -37px;
	float: left;
	margin-right: 50px;
	font-size: 18px;
	line-height: 21px;
	direction: ltr;
}

div.contactBoxInfo p {
	margin-top: 0px;
}

/* Contact Tabs */
.contactTabs {
	margin-top: 25px;
	clear: both;
}

.contactTabButtons {
	display: flex;
	justify-content: flex-start;
	/* Align tabs to the left */
	gap: 4px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 25px;
	align-items: flex-end;
}

.contactTabBtn {
	padding: 12px 24px;
	background: #e9ecef;
	border: 1px solid #ddd;
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	transition: all 0.3s ease;
	font-family: var(--font-sans);
	margin-bottom: -1px;
	text-align: center;
	text-decoration: none;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.contactTabBtn:hover {
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
}

.contactTabBtn.active {
	background: var(--color-white);
	color: var(--color-primary);
	border-color: #ddd;
	border-bottom: 1px solid var(--color-white);
}

.contact-options-link {
	background: var(--color-primary);
	color: var(--color-white);
	border: 1px solid var(--color-primary-dark);
	border-bottom: none;
	border-radius: 6px 6px 0 0;
	margin-left: auto;
	margin-bottom: -1px;
	box-shadow: none;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 12px 24px;
}

.contact-options-link:hover {
	background: var(--color-primary-dark);
	color: var(--color-white);
	transform: none;
	box-shadow: none;
}

.contactTabContent {
	display: none;
	animation: fadeIn 0.4s ease-in;
}

.contactTabContent.active {
	display: block;
}

.contact-columns {
	display: flex;
	gap: 40px;
}

.contact-column-address {
	flex: 1;
}

.contact-column-details {
	flex: 1;
}

.contact-detail-group {
	margin-bottom: 25px;
	padding-left: 20px;
	border-left: 3px solid var(--color-primary-light);
}

h3.contact-detail-heading {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-style: normal;
	line-height: 1;
}

.contact-detail-info {
	font-size: 17px;
	line-height: 1.6;
}

.contact-detail-info p {
	margin: 0;
}

.contact-detail-info a {
	color: var(--color-link);
	text-decoration: none;
}

.contact-detail-info a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

.contact-more-button-wrapper {
	margin-top: 20px;
	text-align: left;
}

.contact-more-button {
	display: inline-block;
	padding: 12px 24px;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	font-family: var(--font-sans);
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-more-button::after {
	content: ' →';
	margin-left: 4px;
}

.contact-more-button:hover {
	background: var(--color-primary-dark);
	color: var(--color-white);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Chunky Buttons */
span.chunkyButton {
	height: auto;
	width: auto;
	padding: 12px 18px;
	color: var(--color-white);
	position: relative;
	font-weight: bold;
	text-align: center;
	text-transform: none;
	cursor: pointer;
	font-size: 15px;
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	border-width: 2px;
	border-style: solid;
	display: inline-block;
	position: relative;
	font-family: var(--font-sans);
	font-weight: 300;
	border-radius: 5px;
	transition: all 0.25s ease-in-out;
	box-sizing: border-box;
	/* Ensures padding is included in width */
}

span.chunkyButton:hover,
span.chunkyButton.active {
	background-color: var(--color-white);
	color: var(--color-primary);
}

/* No JS */
html.no-js #navBar {
	position: absolute;
	width: 100%;
}

html.no-js .expansionButton {
	display: none;
}

/* Animations - animate.css https://daneden.me/animate  */
.animated,
.flipIn {
	animation-fill-mode: both;
	animation-duration: 0.8s;
}

.animated.hinge {
	animation-duration: 0.8s;
}

@keyframes flash {

	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	animation-name: flash;
}

@keyframes tada {
	0% {
		transform: scale(1);
	}

	10%,
	20% {
		transform: scale(0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg);
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		transform: scale(1) rotate(0);
	}
}

.tada {
	animation-name: tada;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.pulse {
	animation-name: pulse;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}

.bounce {
	animation-name: bounce;
}

@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotateX(-10deg);
	}

	70% {
		transform: perspective(400px) rotateX(10deg);
	}

	100% {
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flipInX,
.flipIn.appeared {
	backface-visibility: visible !important;
	animation-name: flipInX;
}

.flipIn {
	opacity: 0;
}

html.no-appear .flipIn,
html.no-js .flipIn {
	opacity: 1;
}

.appear {
	transition: all 0.8s ease-in-out;
}

html.no-js .appear {
	transition: none;
}

.fadeIn.appear {
	opacity: 0;
}

html.no-appear .fadeIn.appear,
html.no-js .fadeIn.appear,
.fadeIn.appeared {
	opacity: 1;
}

.trans1500 {
	transition: all 1.5s ease-in-out;
}

.trans1250 {
	transition: all 1.25s ease-in-out;
}

.trans1000 {
	transition: all 1s ease-in-out;
}

.trans500 {
	transition: all 0.5s ease-in-out;
}

.trans250 {
	transition: all 0.25s ease-in-out;
}

.delay0 {
	animation-delay: 0s;
	transition-delay: 0s;
}

.delay0p1 {
	animation-delay: 0.1s;
	transition-delay: 0.1s;
}

.delay0p2 {
	animation-delay: 0.2s;
	transition-delay: 0.2s;
}

.delay0p3 {
	animation-delay: 0.3s;
	transition-delay: 0.3s;
}

.delay0p4 {
	animation-delay: 0.4s;
	transition-delay: 0.4s;
}

.delay0p5 {
	animation-delay: 0.5s;
	transition-delay: 0.5s;
}

.delay0p6 {
	animation-delay: 0.6s;
	transition-delay: 0.6s;
}

.delay0p7 {
	animation-delay: 0.7s;
	transition-delay: 0.7s;
}

.delay0p8 {
	animation-delay: 0.8s;
	transition-delay: 0.8s;
}

.delay0p5 {
	animation-delay: 0.9s;
	transition-delay: 0.9s;
}

.delay1 {
	animation-delay: 1s;
	transition-delay: 1s;
}

.delay1p5 {
	animation-delay: 1.5s;
	transition-delay: 1.5s;
}

.delay2 {
	animation-delay: 2s;
	transition-delay: 2s;
}

.delay2p5 {
	animation-delay: 2.5s;
	transition-delay: 2.5s;
}

.delay3 {
	animation-delay: 3s;
	transition-delay: 3s;
}

/* YouTube videos */
div.video-container,
div.video-container iframe {
	max-width: 100%;
	width: 1200px;
	height: 450px;
	text-align: center;
}

div.video-container {
	margin-top: 25px;
	width: 100%;
}

/* Tick Lines */
ul.tickLines li:before {
	content: '✔ ';
	margin-left: -1em;
	margin-right: .100em;
}

ul.tickLines {
	padding-left: 20px;
	text-indent: 2px;
	list-style: none;
	list-style-position: outside;
}

#backArrow {
	display: none;
}

/* Mobile Modes */
@media only screen and (max-width: 800px) {

	/* Hide homepage navigation buttons on mobile, but keep More and Language */
	#navBarLinks a:not(.navDropdownToggle):not(#languageSelect) {
		display: none;
	}

	#navBar {
		display: block;
		height: 95px;
	}

	#navBarSpace {
		height: 95px;
		background-image: url('logo.svg');
		background-repeat: no-repeat;
		background-position-x: 20px;
		background-position-y: 20px;
		background-size: 190px;
	}

	#navBarLinks {
		top: 50%;
		transform: translateY(-50%);
		padding-right: 10px;
	}

	div.herobox .title {
		font-size: 32px;
	}

	div.herobox .textArea {
		padding-top: 50px;
	}

	div.herobox a {
		padding: 10px 18px;
		font-size: 14px;
		margin-top: 15px;
	}

	.contentBox {
		padding: 20px;
	}

	div.quotebox h2 {
		padding: 0px;
	}

	p {
		margin-top: 0.5em;
		margin-bottom: 0.5em;
	}

	h2,
	h3,
	div.quotebox h2 {
		font-size: 15px;
		line-height: 20px;
	}

	ul.tickLines {
		padding: 0px;
		line-height: 30px;
	}

	.expansionText {
		margin-top: -5px;
		/* Remove negative margin and add space */
		padding-bottom: 15px;
	}

	span.chunkyButton {
		width: 100%;
		/* Make button full width */
		text-align: center;
		/* Center the text inside button */
	}

	#expansionText1 {
		padding-bottom: 0px;
	}

	div.content2box {
		height: 300px;
		width: 100%;
		position: relative;
	}

	div.content2box1,
	div.content2box2 {
		width: 100%;
		height: 50%;
		position: relative;
		left: 0px;
	}

	/* 
	  Mobile Alternating Color Fix (nth-child method)
	  This manually creates the ABAB pattern for the first 6 stat boxes.
	  It overrides any desktop '.flip' logic.
	*/

	/* --- ROW 1 --- */
	/* Box 1 (A) - Dark */
	div.content2box:nth-child(1) div.content2box1 {
		background-color: var(--color-primary-dark) !important;
	}

	/* Box 2 (B) - Light */
	div.content2box:nth-child(1) div.content2box2 {
		background-color: var(--color-primary) !important;
	}

	/* --- ROW 2 --- */
	/* Box 3 (A) - Light */
	div.content2box:nth-child(2) div.content2box1 {
		background-color: var(--color-primary) !important;
	}

	/* Box 4 (B) - Dark */
	div.content2box:nth-child(2) div.content2box2 {
		background-color: var(--color-primary-dark) !important;
	}

	/* --- ROW 3 --- */
	/* Box 5 (A) - Dark */
	div.content2box:nth-child(3) div.content2box1 {
		background-color: var(--color-primary-dark) !important;
	}

	/* Box 6 (B) - Light */
	div.content2box:nth-child(3) div.content2box2 {
		background-color: var(--color-primary) !important;
	}

	div.categoryBoxItems {
		margin: 10px;
	}

	span.categoryBoxItem {
		width: 100%;
	}

	#homeContact {
		padding-top: 0px;
	}

	div.contactBoxInfo {
		margin-top: 0px;
	}

	#homeContact .marginTop25 {
		margin-top: 0px;
		height: 10px;
	}

	#copyright,
	#registered {
		width: 80%;
		position: relative;
		top: 0;
		height: auto;
		left: 0;
		margin-bottom: 10px;
		margin-left: 25px;
		text-align: left;
	}

	#footer {
		width: 100%;
		height: auto;
	}

	#regularPage p {
		text-align: left;
	}

	#contactBoxSecondaryBuffer {
		display: none;
	}

	#backArrow {
		top: 15px;
		position: absolute;
		height: 30px;
		left: 100%;
		margin-left: -45px;
		display: block;
	}

	div.video-container iframe {
		height: 200px;
	}

	div.video-container {
		height: 200px;
	}

	div.quotebox h3 {
		margin-top: 40px;
	}

	#heroFlag {
		width: 150px !important;
	}

}

@media screen and (max-width: 1024px) {
	.appear {
		transition: none;
	}
}

@media screen and (max-width: 767px) {
	#navBar {
		position: absolute;
		width: 100%;
	}
}

@media screen and (max-width: 1024px) {
	div.parralaxHero {
		background-position: left top 0px;
	}

	.parralax {
		display: none;
	}
}

/* Make sure this is in your stylesheet */
#heroFlag {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 300px;
	height: auto;
	z-index: 2;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* PDF Download Buttons */
.pdf-downloads {
	margin: 40px 0 30px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}

.pdf-download-button {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 28px;
	background: linear-gradient(135deg, var(--color-primary-light) 0%, #d0f0f6 100%);
	border: 3px solid var(--color-primary);
	border-radius: 12px;
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	flex: 1 1 45%;
	min-width: 320px;
	box-shadow: 0 2px 8px rgba(0, 175, 202, 0.15);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.pdf-download-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s;
}

.pdf-download-button:hover::before {
	left: 100%;
}

.pdf-download-button:hover {
	background: linear-gradient(135deg, var(--color-primary) 0%, #009AB4 100%);
	color: white;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 24px rgba(0, 175, 202, 0.35);
	border-color: var(--color-primary-dark);
}

.pdf-download-button:active {
	transform: translateY(-1px) scale(1.0);
	box-shadow: 0 4px 12px rgba(0, 175, 202, 0.3);
}

.pdf-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	position: relative;
}

.pdf-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.pdf-badge {
	position: absolute;
	bottom: -4px;
	right: -4px;
	background: var(--color-primary);
	color: white;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.pdf-download-button:hover .pdf-badge {
	background: white;
	color: var(--color-primary);
}

.pdf-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.pdf-filename {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	word-break: break-word;
}

.pdf-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	opacity: 0.8;
}

.pdf-size {
	font-weight: 600;
	padding: 2px 8px;
	background: rgba(0, 175, 202, 0.15);
	border-radius: 4px;
}

.pdf-download-button:hover .pdf-size {
	background: rgba(255, 255, 255, 0.25);
}

.pdf-action {
	font-weight: 500;
}

.pdf-download-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	opacity: 0.9;
	transition: transform 0.25s ease;
}

.pdf-download-button:hover .pdf-download-icon {
	transform: translateY(3px);
	opacity: 1;
}

@media (max-width: 640px) {
	.pdf-download-button {
		padding: 16px 20px;
		gap: 12px;
	}

	.pdf-filename {
		font-size: 14px;
	}

	.pdf-meta {
		font-size: 12px;
		flex-wrap: wrap;
	}

	.pdf-action {
		display: none;
	}
}