@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic");


html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	html, body {
		background: #1c1d26;
	}

	body.is-preload *, body.is-preload *:before, body.is-preload *:after {
		-moz-animation: none !important;
		-webkit-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
		-moz-transition: none !important;
		-webkit-transition: none !important;
		-ms-transition: none !important;
		transition: none !important;
	}

	body, input, select, textarea {
		color: rgba(255, 255, 255, 0.75);
		font-family: "Inter", sans-serif;
		font-size: 15pt;
		font-weight: 200;
		line-height: 1.75em;
	}

	a {
		-moz-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
		border-bottom: dotted 1px;
		color: #e44c65;
		text-decoration: none;
	}

		a:hover {
			color: #1f3fa6 !important;
			border-bottom-color: transparent;
		}

	strong, b {
		color: #ffffff;
		font-weight: 400;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2em 0;
	}

	h1, h2, h3, h4, h5, h6 {
		color: #ffffff;
		font-weight: 300;
		line-height: 1em;
		margin: 0 0 1em 0;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			border: 0;
		}

	h1 {
    font-size: 2em;
    line-height: 1.5em;
    letter-spacing: -0.03em;
    font-weight: 500;
}
h2 {
		font-size: 1.75em;
		line-height: 1.5em;
		letter-spacing: -0.03em;
	}

	h3 {
		font-size: 1.35em;
		line-height: 1.5em;
	}

	h4 {
		font-size: 1.1em;
		line-height: 1.5em;
	}

	h5 {
		font-size: 0.9em;
		line-height: 1.5em;
	}

	h6 {
		font-size: 0.7em;
		line-height: 1.5em;
	}

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	hr {
		border: 0;
		border-bottom: solid 1px rgba(255, 255, 255, 0.3);
		margin: 3em 0;
	}

		hr.major {
			margin: 4em 0;
		}

	blockquote {
		border-left: solid 4px rgba(255, 255, 255, 0.3);
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	code {
		background: rgba(255, 255, 255, 0.075);
		border-radius: 4px;
		font-family: "Inter", monospace;
		font-size: 0.9em;
		margin: 0 0.25em;
		padding: 0.25em 0.65em;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Inter", monospace;
		font-size: 0.9em;
		margin: 0 0 2em 0;
	}

		pre code {
			display: block;
			line-height: 1.75em;
			padding: 1em 1.5em;
			overflow-x: auto;
		}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}

/* Loader */

	@-moz-keyframes spinner-show {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-webkit-keyframes spinner-show {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-ms-keyframes spinner-show {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@keyframes spinner-show {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-moz-keyframes spinner-hide {
		0% {
			color: rgba(255, 255, 255, 0.15);
			z-index: 100001;
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		99% {
			color: #1c1d26;
			z-index: 100001;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}

		100% {
			color: #1c1d26;
			z-index: -1;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}
	}

	@-webkit-keyframes spinner-hide {
		0% {
			color: rgba(255, 255, 255, 0.15);
			z-index: 100001;
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		99% {
			color: #1c1d26;
			z-index: 100001;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}

		100% {
			color: #1c1d26;
			z-index: -1;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}
	}

	@-ms-keyframes spinner-hide {
		0% {
			color: rgba(255, 255, 255, 0.15);
			z-index: 100001;
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		99% {
			color: #1c1d26;
			z-index: 100001;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}

		100% {
			color: #1c1d26;
			z-index: -1;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}
	}

	@keyframes spinner-hide {
		0% {
			color: rgba(255, 255, 255, 0.15);
			z-index: 100001;
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		99% {
			color: #1c1d26;
			z-index: 100001;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}

		100% {
			color: #1c1d26;
			z-index: -1;
			-moz-transform: scale(0.5) rotate(360deg);
			-webkit-transform: scale(0.5) rotate(360deg);
			-ms-transform: scale(0.5) rotate(360deg);
			transform: scale(0.5) rotate(360deg);
		}
	}

	@-moz-keyframes spinner-rotate {
		0% {
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		100% {
			-moz-transform: scale(1) rotate(360deg);
			-webkit-transform: scale(1) rotate(360deg);
			-ms-transform: scale(1) rotate(360deg);
			transform: scale(1) rotate(360deg);
		}
	}

	@-webkit-keyframes spinner-rotate {
		0% {
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		100% {
			-moz-transform: scale(1) rotate(360deg);
			-webkit-transform: scale(1) rotate(360deg);
			-ms-transform: scale(1) rotate(360deg);
			transform: scale(1) rotate(360deg);
		}
	}

	@-ms-keyframes spinner-rotate {
		0% {
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		100% {
			-moz-transform: scale(1) rotate(360deg);
			-webkit-transform: scale(1) rotate(360deg);
			-ms-transform: scale(1) rotate(360deg);
			transform: scale(1) rotate(360deg);
		}
	}

	@keyframes spinner-rotate {
		0% {
			-moz-transform: scale(1) rotate(0deg);
			-webkit-transform: scale(1) rotate(0deg);
			-ms-transform: scale(1) rotate(0deg);
			transform: scale(1) rotate(0deg);
		}

		100% {
			-moz-transform: scale(1) rotate(360deg);
			-webkit-transform: scale(1) rotate(360deg);
			-ms-transform: scale(1) rotate(360deg);
			transform: scale(1) rotate(360deg);
		}
	}

	@-moz-keyframes overlay-hide {
		0% {
			opacity: 1;
			z-index: 100000;
		}

		15% {
			opacity: 1;
			z-index: 100000;
		}

		99% {
			opacity: 0;
			z-index: 100000;
		}

		100% {
			opacity: 0;
			z-index: -1;
		}
	}

	@-webkit-keyframes overlay-hide {
		0% {
			opacity: 1;
			z-index: 100000;
		}

		15% {
			opacity: 1;
			z-index: 100000;
		}

		99% {
			opacity: 0;
			z-index: 100000;
		}

		100% {
			opacity: 0;
			z-index: -1;
		}
	}

	@-ms-keyframes overlay-hide {
		0% {
			opacity: 1;
			z-index: 100000;
		}

		15% {
			opacity: 1;
			z-index: 100000;
		}

		99% {
			opacity: 0;
			z-index: 100000;
		}

		100% {
			opacity: 0;
			z-index: -1;
		}
	}

	@keyframes overlay-hide {
		0% {
			opacity: 1;
			z-index: 100000;
		}

		15% {
			opacity: 1;
			z-index: 100000;
		}

		99% {
			opacity: 0;
			z-index: 100000;
		}

		100% {
			opacity: 0;
			z-index: -1;
		}
	}

	body.landing {
		text-decoration: none;
	}

		body.landing:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
		}

		body.landing:before {
			-moz-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-hide 0.25s ease-in-out forwards !important;
			-webkit-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-hide 0.25s ease-in-out forwards !important;
			-ms-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-hide 0.25s ease-in-out forwards !important;
			animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-hide 0.25s ease-in-out forwards !important;
			-moz-transform-origin: 50% 50%;
			-webkit-transform-origin: 50% 50%;
			-ms-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
			color: rgba(255, 255, 255, 0.15);
			content: '\f1ce';
			cursor: default;
			display: block;
			font-size: 2em;
			height: 2em;
			left: 50%;
			line-height: 2em;
			margin: -1em 0 0 -1em;
			opacity: 0;
			position: fixed;
			text-align: center;
			top: 50%;
			width: 2em;
			z-index: -1;
		}

		body.landing:after {
			-moz-animation: overlay-hide 1.5s ease-in forwards !important;
			-webkit-animation: overlay-hide 1.5s ease-in forwards !important;
			-ms-animation: overlay-hide 1.5s ease-in forwards !important;
			animation: overlay-hide 1.5s ease-in forwards !important;
			background: #1c1d26;
			content: '';
			display: block;
			height: 100%;
			left: 0;
			opacity: 0;
			position: fixed;
			top: 0;
			width: 100%;
			z-index: -1;
		}

		body.landing.is-preload:before {
			-moz-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
			-webkit-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
			-ms-animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
			animation: spinner-show 1.5s 1 0.25s ease forwards, spinner-rotate 0.75s infinite linear !important;
			z-index: 100001;
		}

		body.landing.is-preload:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			opacity: 1;
			z-index: 100000;
		}

	@media (-webkit-min-device-pixel-ratio: 2) {

		body.landing:before {
			line-height: 2.025em;
		}

	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: calc(100% - 4em);
		width: 70em;
	}

		.container.xsmall {
			width: 17.5em;
		}

		.container.small {
			width: 35em;
		}

		.container.medium {
			width: 52.5em;
		}

		.container.large {
			width: 87.5em;
		}

		.container.xlarge {
			width: 105em;
		}

		.container.max {
			width: 100%;
		}

		@media screen and (max-width: 1280px) {

			.container {
				width: 90%;
				max-width: 100%;
			}

		}

		@media screen and (max-width: 980px) {

			.container {
				width: 100% !important;
			}

		}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0;
			margin-left: 0em;
		}

			.row.gtr-0 > * {
				padding: 0 0 0 0em;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0em;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0em;
				}

		.row.gtr-25 {
			margin-top: 0;
			margin-left: -0.625em;
		}

			.row.gtr-25 > * {
				padding: 0 0 0 0.625em;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -0.625em;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 0.625em;
				}

		.row.gtr-50 {
			margin-top: 0;
			margin-left: -1.25em;
		}

			.row.gtr-50 > * {
				padding: 0 0 0 1.25em;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -1.25em;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 1.25em;
				}

		.row {
			margin-top: 0;
			margin-left: -2.5em;
		}

			.row > * {
				padding: 0 0 0 2.5em;
			}

			.row.gtr-uniform {
				margin-top: -2.5em;
			}

				.row.gtr-uniform > * {
					padding-top: 2.5em;
				}

		.row.gtr-150 {
			margin-top: 0;
			margin-left: -3.75em;
		}

			.row.gtr-150 > * {
				padding: 0 0 0 3.75em;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -3.75em;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 3.75em;
				}

		.row.gtr-200 {
			margin-top: 0;
			margin-left: -5em;
		}

			.row.gtr-200 > * {
				padding: 0 0 0 5em;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -5em;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 5em;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xlarge {
					order: -1;
				}

				.row > .col-1-xlarge {
					width: 8.33333%;
				}

				.row > .off-1-xlarge {
					margin-left: 8.33333%;
				}

				.row > .col-2-xlarge {
					width: 16.66667%;
				}

				.row > .off-2-xlarge {
					margin-left: 16.66667%;
				}

				.row > .col-3-xlarge {
					width: 25%;
				}

				.row > .off-3-xlarge {
					margin-left: 25%;
				}

				.row > .col-4-xlarge {
					width: 33.33333%;
				}

				.row > .off-4-xlarge {
					margin-left: 33.33333%;
				}

				.row > .col-5-xlarge {
					width: 41.66667%;
				}

				.row > .off-5-xlarge {
					margin-left: 41.66667%;
				}

				.row > .col-6-xlarge {
					width: 50%;
				}

				.row > .off-6-xlarge {
					margin-left: 50%;
				}

				.row > .col-7-xlarge {
					width: 58.33333%;
				}

				.row > .off-7-xlarge {
					margin-left: 58.33333%;
				}

				.row > .col-8-xlarge {
					width: 66.66667%;
				}

				.row > .off-8-xlarge {
					margin-left: 66.66667%;
				}

				.row > .col-9-xlarge {
					width: 75%;
				}

				.row > .off-9-xlarge {
					margin-left: 75%;
				}

				.row > .col-10-xlarge {
					width: 83.33333%;
				}

				.row > .off-10-xlarge {
					margin-left: 83.33333%;
				}

				.row > .col-11-xlarge {
					width: 91.66667%;
				}

				.row > .off-11-xlarge {
					margin-left: 91.66667%;
				}

				.row > .col-12-xlarge {
					width: 100%;
				}

				.row > .off-12-xlarge {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 2.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3.75em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3.75em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3.75em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3.75em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 5em;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-large {
					order: -1;
				}

				.row > .col-1-large {
					width: 8.33333%;
				}

				.row > .off-1-large {
					margin-left: 8.33333%;
				}

				.row > .col-2-large {
					width: 16.66667%;
				}

				.row > .off-2-large {
					margin-left: 16.66667%;
				}

				.row > .col-3-large {
					width: 25%;
				}

				.row > .off-3-large {
					margin-left: 25%;
				}

				.row > .col-4-large {
					width: 33.33333%;
				}

				.row > .off-4-large {
					margin-left: 33.33333%;
				}

				.row > .col-5-large {
					width: 41.66667%;
				}

				.row > .off-5-large {
					margin-left: 41.66667%;
				}

				.row > .col-6-large {
					width: 50%;
				}

				.row > .off-6-large {
					margin-left: 50%;
				}

				.row > .col-7-large {
					width: 58.33333%;
				}

				.row > .off-7-large {
					margin-left: 58.33333%;
				}

				.row > .col-8-large {
					width: 66.66667%;
				}

				.row > .off-8-large {
					margin-left: 66.66667%;
				}

				.row > .col-9-large {
					width: 75%;
				}

				.row > .off-9-large {
					margin-left: 75%;
				}

				.row > .col-10-large {
					width: 83.33333%;
				}

				.row > .off-10-large {
					margin-left: 83.33333%;
				}

				.row > .col-11-large {
					width: 91.66667%;
				}

				.row > .off-11-large {
					margin-left: 91.66667%;
				}

				.row > .col-12-large {
					width: 100%;
				}

				.row > .off-12-large {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 2.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3.75em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3.75em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3.75em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3.75em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 5em;
						}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-medium {
					order: -1;
				}

				.row > .col-1-medium {
					width: 8.33333%;
				}

				.row > .off-1-medium {
					margin-left: 8.33333%;
				}

				.row > .col-2-medium {
					width: 16.66667%;
				}

				.row > .off-2-medium {
					margin-left: 16.66667%;
				}

				.row > .col-3-medium {
					width: 25%;
				}

				.row > .off-3-medium {
					margin-left: 25%;
				}

				.row > .col-4-medium {
					width: 33.33333%;
				}

				.row > .off-4-medium {
					margin-left: 33.33333%;
				}

				.row > .col-5-medium {
					width: 41.66667%;
				}

				.row > .off-5-medium {
					margin-left: 41.66667%;
				}

				.row > .col-6-medium {
					width: 50%;
				}

				.row > .off-6-medium {
					margin-left: 50%;
				}

				.row > .col-7-medium {
					width: 58.33333%;
				}

				.row > .off-7-medium {
					margin-left: 58.33333%;
				}

				.row > .col-8-medium {
					width: 66.66667%;
				}

				.row > .off-8-medium {
					margin-left: 66.66667%;
				}

				.row > .col-9-medium {
					width: 75%;
				}

				.row > .off-9-medium {
					margin-left: 75%;
				}

				.row > .col-10-medium {
					width: 83.33333%;
				}

				.row > .off-10-medium {
					margin-left: 83.33333%;
				}

				.row > .col-11-medium {
					width: 91.66667%;
				}

				.row > .off-11-medium {
					margin-left: 91.66667%;
				}

				.row > .col-12-medium {
					width: 100%;
				}

				.row > .off-12-medium {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 2.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3.75em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3.75em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3.75em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3.75em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 5em;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-small {
					order: -1;
				}

				.row > .col-1-small {
					width: 8.33333%;
				}

				.row > .off-1-small {
					margin-left: 8.33333%;
				}

				.row > .col-2-small {
					width: 16.66667%;
				}

				.row > .off-2-small {
					margin-left: 16.66667%;
				}

				.row > .col-3-small {
					width: 25%;
				}

				.row > .off-3-small {
					margin-left: 25%;
				}

				.row > .col-4-small {
					width: 33.33333%;
				}

				.row > .off-4-small {
					margin-left: 33.33333%;
				}

				.row > .col-5-small {
					width: 41.66667%;
				}

				.row > .off-5-small {
					margin-left: 41.66667%;
				}

				.row > .col-6-small {
					width: 50%;
				}

				.row > .off-6-small {
					margin-left: 50%;
				}

				.row > .col-7-small {
					width: 58.33333%;
				}

				.row > .off-7-small {
					margin-left: 58.33333%;
				}

				.row > .col-8-small {
					width: 66.66667%;
				}

				.row > .off-8-small {
					margin-left: 66.66667%;
				}

				.row > .col-9-small {
					width: 75%;
				}

				.row > .off-9-small {
					margin-left: 75%;
				}

				.row > .col-10-small {
					width: 83.33333%;
				}

				.row > .off-10-small {
					margin-left: 83.33333%;
				}

				.row > .col-11-small {
					width: 91.66667%;
				}

				.row > .off-11-small {
					margin-left: 91.66667%;
				}

				.row > .col-12-small {
					width: 100%;
				}

				.row > .off-12-small {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 2.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3.75em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3.75em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3.75em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3.75em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 5em;
						}

		}

		@media screen and (max-width: 480px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xsmall {
					order: -1;
				}

				.row > .col-1-xsmall {
					width: 8.33333%;
				}

				.row > .off-1-xsmall {
					margin-left: 8.33333%;
				}

				.row > .col-2-xsmall {
					width: 16.66667%;
				}

				.row > .off-2-xsmall {
					margin-left: 16.66667%;
				}

				.row > .col-3-xsmall {
					width: 25%;
				}

				.row > .off-3-xsmall {
					margin-left: 25%;
				}

				.row > .col-4-xsmall {
					width: 33.33333%;
				}

				.row > .off-4-xsmall {
					margin-left: 33.33333%;
				}

				.row > .col-5-xsmall {
					width: 41.66667%;
				}

				.row > .off-5-xsmall {
					margin-left: 41.66667%;
				}

				.row > .col-6-xsmall {
					width: 50%;
				}

				.row > .off-6-xsmall {
					margin-left: 50%;
				}

				.row > .col-7-xsmall {
					width: 58.33333%;
				}

				.row > .off-7-xsmall {
					margin-left: 58.33333%;
				}

				.row > .col-8-xsmall {
					width: 66.66667%;
				}

				.row > .off-8-xsmall {
					margin-left: 66.66667%;
				}

				.row > .col-9-xsmall {
					width: 75%;
				}

				.row > .off-9-xsmall {
					margin-left: 75%;
				}

				.row > .col-10-xsmall {
					width: 83.33333%;
				}

				.row > .off-10-xsmall {
					margin-left: 83.33333%;
				}

				.row > .col-11-xsmall {
					width: 91.66667%;
				}

				.row > .off-11-xsmall {
					margin-left: 91.66667%;
				}

				.row > .col-12-xsmall {
					width: 100%;
				}

				.row > .off-12-xsmall {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.625em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.625em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.625em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.625em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -1.25em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 1.25em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -1.25em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 1.25em;
						}

				.row {
					margin-top: 0;
					margin-left: -2.5em;
				}

					.row > * {
						padding: 0 0 0 2.5em;
					}

					.row.gtr-uniform {
						margin-top: -2.5em;
					}

						.row.gtr-uniform > * {
							padding-top: 2.5em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -3.75em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 3.75em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -3.75em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 3.75em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -5em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 5em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -5em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 5em;
						}

		}

/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header p {
		color: #ffffff;
		position: relative;
		margin: 0 0 1.5em 0;
	}

	header h2 + p {
		font-size: 1.25em;
		margin-top: -1em;
		line-height: 1.75em;
	}

	header h3 + p {
		font-size: 1.1em;
		margin-top: -0.8em;
		line-height: 1.75em;
	}

	header h4 + p,
	header h5 + p,
	header h6 + p {
		font-size: 0.9em;
		margin-top: -0.6em;
		line-height: 1.5em;
	}

	header.major {
		margin: 0 0 4em 0;
		position: relative;
		text-align: center;
	}

		header.major:after {
			background: #1f3fa6;
			content: '';
			display: inline-block;
			height: 3px;
			max-width: 700px;
			width: 60%;
			margin-top: 1.2em;
		}

	footer.major {
		margin: 4em 0 0 0;
	}

/* Form */

	form {
		margin: 0 0 2em 0;
	}

		form.cta {
			max-width: 35em;
			margin-left: auto;
			margin-right: auto;
		}

	label {
		color: #ffffff;
		display: block;
		font-size: 0.9em;
		font-weight: 300;
		margin: 0 0 1em 0;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: border-color 0.2s ease-in-out;
		-webkit-transition: border-color 0.2s ease-in-out;
		-ms-transition: border-color 0.2s ease-in-out;
		transition: border-color 0.2s ease-in-out;
		background: transparent;
		border-radius: 4px;
		border: solid 1px rgba(255, 255, 255, 0.3);
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1em;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: none;
		}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		select:focus,
		textarea:focus {
			border-color: #e44c65;
		}

	select {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.3)' /%3E%3C/svg%3E");
		background-size: 1.25rem;
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		height: 3em;
		padding-right: 3em;
		text-overflow: ellipsis;
	}

		select option {
			color: #ffffff;
			background: #1c1d26;
		}

		select:focus::-ms-value {
			background-color: transparent;
		}

		select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 3em;
	}

	textarea {
		padding: 0.75em 1em;
	}

	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2em;
		opacity: 0;
		width: 1em;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			color: rgba(255, 255, 255, 0.75);
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 100;
			padding-left: 2.55em;
			padding-right: 0.75em;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				border-radius: 4px;
				border: solid 1px rgba(255, 255, 255, 0.3);
				content: '';
				display: inline-block;
				font-size: 0.8em;
				height: 2.25em;
				left: 0;
				line-height: 2.25em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.25em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: rgba(255, 255, 255, 0.25);
			color: #ffffff;
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			border-color: #e44c65;
		}

	input[type="checkbox"] + label:before {
		border-radius: 4px;
	}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

/* Box */

	.box {
		border-radius: 4px;
		border: solid 1px rgba(255, 255, 255, 0.3);
		margin-bottom: 2em;
		padding: 1.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900 !important;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands' !important;
		}

		.icon.alt {
			text-decoration: none;
		}

			.icon.alt:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 400;
			}

			.icon.alt:before {
				color: #1c1d26 !important;
				text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff, 0 -1px 0 #ffffff;
			}

		.icon.major {
			background: #272833;
			border-radius: 100%;
			cursor: default;
			display: inline-block;
			height: 6em;
			line-height: 5.65em;
			margin: 0 0 2em 0;
			text-align: center;
			width: 6em;
		}

			.icon.major:before {
				font-size: 2.25em;
			}

			.icon.major.alt {
				text-decoration: none;
			}

				.icon.major.alt:before {
					-moz-osx-font-smoothing: grayscale;
					-webkit-font-smoothing: antialiased;
					display: inline-block;
					font-style: normal;
					font-variant: normal;
					text-rendering: auto;
					line-height: 1;
					text-transform: none !important;
					font-family: 'Font Awesome 5 Free';
					font-weight: 400;
				}

				.icon.major.alt:before {
					color: #272833 !important;
					text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff, 0 -1px 0 #ffffff;
				}

/* Image */

	.image {
		border-radius: 4px;
		border: 0;
		display: inline-block;
		position: relative;
		overflow: hidden;
	}

		.image:before {
			content: '';
			display: block;
			position: absolute;
			left: 0;
			top: 0;
			background-image: url("images/overlay.png");
			width: 100%;
			height: 100%;
			z-index: 1;
		}

		.image img {
			border-radius: 4px;
			display: block;
		}

		.image.left {
			float: left;
			margin: 0 1.5em 1em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 1em 1.5em;
			top: 0.25em;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}

/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px rgba(255, 255, 255, 0.3);
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

	dl {
		margin: 0 0 2em 0;
	}

/* Icons */

	ul.icons {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

		ul.icons li {
			display: inline-block;
			height: 2.5em;
			line-height: 2.5em;
			padding: 0 0.5em;
		}

			ul.icons li .icon {
				font-size: 0.8em;
			}

				ul.icons li .icon:before {
					font-size: 2em;
				}

/* Actions */

	ul.actions {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1em;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1em;
			vertical-align: middle;
		}

		ul.actions.special {
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			-moz-flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1.3em 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1em);
		}

			ul.actions.fit li {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-moz-flex-shrink: 1;
				-webkit-flex-shrink: 1;
				-ms-flex-shrink: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

		@media screen and (max-width: 480px) {

			ul.actions:not(.fixed) {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				margin-left: 0;
				width: 100% !important;
			}

				ul.actions:not(.fixed) li {
					-moz-flex-grow: 1;
					-webkit-flex-grow: 1;
					-ms-flex-grow: 1;
					flex-grow: 1;
					-moz-flex-shrink: 1;
					-webkit-flex-shrink: 1;
					-ms-flex-shrink: 1;
					flex-shrink: 1;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions:not(.fixed) li > * {
						width: 100%;
					}

					ul.actions:not(.fixed) li:first-child {
						padding-top: 0;
					}

					ul.actions:not(.fixed) li input[type="submit"],
					ul.actions:not(.fixed) li input[type="reset"],
					ul.actions:not(.fixed) li input[type="button"],
					ul.actions:not(.fixed) li button,
					ul.actions:not(.fixed) li .button {
						width: 100%;
					}

						ul.actions:not(.fixed) li input[type="submit"].icon:before,
						ul.actions:not(.fixed) li input[type="reset"].icon:before,
						ul.actions:not(.fixed) li input[type="button"].icon:before,
						ul.actions:not(.fixed) li button.icon:before,
						ul.actions:not(.fixed) li .button.icon:before {
							margin-left: -0.5em;
						}

		}

/* Table */

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table {
		margin: 0 0 2em 0;
		width: 100%;
	}

		table tbody tr {
			border: solid 1px rgba(255, 255, 255, 0.3);
			border-left: 0;
			border-right: 0;
		}

			table tbody tr:nth-child(2n + 1) {
				background-color: rgba(255, 255, 255, 0.075);
			}

		table td {
			padding: 0.75em 0.75em;
		}

		table th {
			color: #ffffff;
			font-size: 0.9em;
			font-weight: 300;
			padding: 0 0.75em 0.75em 0.75em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 1px rgba(255, 255, 255, 0.3);
		}

		table tfoot {
			border-top: solid 1px rgba(255, 255, 255, 0.3);
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px rgba(255, 255, 255, 0.3);
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
		background-color: transparent;
		border-radius: 4px;
		border: 0;
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
		color: #ffffff !important;
		cursor: pointer;
		display: inline-block;
		font-weight: 300;
		height: 3em;
		line-height: 3em;
		padding: 0 2.25em;
		text-align: center;
		text-decoration: none;
		white-space: nowrap;
	}

		input[type="submit"]:hover, input[type="submit"]:active,
		input[type="reset"]:hover,
		input[type="reset"]:active,
		input[type="button"]:hover,
		input[type="button"]:active,
		.button:hover,
		.button:active {
			box-shadow: inset 0 0 0 1px #e44c65;
			color: #e44c65 !important;
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		.button:active {
			background-color: rgba(228, 76, 101, 0.15);
		}

		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		.button.icon:before {
			margin-right: 0.5em;
		}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit,
		.button.fit {
			width: 100%;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		.button.small {
			font-size: 0.8em;
		}

		input[type="submit"].large,
		input[type="reset"].large,
		input[type="button"].large,
		.button.large {
			font-size: 1.35em;
		}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		.button.primary {
			background-color: #e44c65;
			box-shadow: none;
			color: #ffffff !important;
		}

			input[type="submit"].primary:hover,
			input[type="reset"].primary:hover,
			input[type="button"].primary:hover,
			.button.primary:hover {
				background-color: #e76278;
			}

			input[type="submit"].primary:active,
			input[type="reset"].primary:active,
			input[type="button"].primary:active,
			.button.primary:active {
				background-color: #e13652;
			}

		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		.button.disabled,
		.button:disabled {
			background-color: rgba(255, 255, 255, 0.3) !important;
			box-shadow: none !important;
			color: #ffffff !important;
			cursor: default;
			opacity: 0.25;
		}

/* Goto Next */

	.goto-next {
		border: 0;
		bottom: 0;
		display: block;
		height: 5em;
		left: 50%;
		margin: 0 0 0 -5em;
		overflow: hidden;
		position: absolute;
		text-indent: 10em;
		white-space: nowrap;
		width: 10em;
		z-index: 1;
	}

		.goto-next:before {
			background-image: url("images/arrow.svg");
			background-position: center center;
			background-repeat: no-repeat;
			background-size: contain;
			content: '';
			display: block;
			height: 2.5em;
			left: 50%;
			margin: -0.1em 0 0 -1em;
			position: absolute;
			top: 50%;
			width: 2em;
			z-index: 1;
		}

/* Spotlight */

	.spotlight {
		background-attachment: fixed;
		background-position: center center;
		background-size: cover;
		box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.25);
		height: auto;
		min-height: 100vh;
		overflow: hidden;
		position: relative;
	}

		.spotlight:nth-last-of-type(1) {
			z-index: 1;
		}

		.spotlight:nth-last-of-type(2) {
			z-index: 2;
		}

		.spotlight:nth-last-of-type(3) {
			z-index: 3;
		}

		.spotlight:nth-last-of-type(4) {
			z-index: 4;
		}

		.spotlight:nth-last-of-type(5) {
			z-index: 5;
		}

		.spotlight:nth-last-of-type(6) {
			z-index: 6;
		}

		.spotlight:nth-last-of-type(7) {
			z-index: 7;
		}

		.spotlight:nth-last-of-type(8) {
			z-index: 8;
		}

		.spotlight:nth-last-of-type(9) {
			z-index: 9;
		}

		.spotlight:nth-last-of-type(10) {
			z-index: 10;
		}

		.spotlight:nth-last-of-type(11) {
			z-index: 11;
		}

		.spotlight:nth-last-of-type(12) {
			z-index: 12;
		}

		.spotlight:nth-last-of-type(13) {
			z-index: 13;
		}

		.spotlight:nth-last-of-type(14) {
			z-index: 14;
		}

		.spotlight:nth-last-of-type(15) {
			z-index: 15;
		}

		.spotlight:nth-last-of-type(16) {
			z-index: 16;
		}

		.spotlight:nth-last-of-type(17) {
			z-index: 17;
		}

		.spotlight:nth-last-of-type(18) {
			z-index: 18;
		}

		.spotlight:nth-last-of-type(19) {
			z-index: 19;
		}

		.spotlight:nth-last-of-type(20) {
			z-index: 20;
		}

		.spotlight:before {
			background-image: url("images/overlay.png");
			content: '';
			display: block;
			height: 100%;
			left: 0;
			top: 0;
			width: 100%;
		}

		.spotlight .image.main {
			display: none;
		}

			.spotlight .image.main img {
				position: relative;
			}

		.spotlight .content {
			-moz-transform: translate(0,0);
			-webkit-transform: translate(0,0);
			-ms-transform: translate(0,0);
			transform: translate(0,0);
			-moz-transition: -moz-transform 1s ease, opacity 1s ease;
			-webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
			-ms-transition: -ms-transform 1s ease, opacity 1s ease;
			transition: transform 1s ease, opacity 1s ease;
			background: rgba(23, 24, 32, 0.95);
			border-style: solid;
			opacity: 1;
			position: absolute;
			height: auto;
		}

		.spotlight .goto-next {
			-moz-transform: translate(0,0);
			-webkit-transform: translate(0,0);
			-ms-transform: translate(0,0);
			transform: translate(0,0);
			-moz-transition: -moz-transform 0.75s ease, opacity 1s ease-in;
			-webkit-transition: -webkit-transform 0.75s ease, opacity 1s ease-in;
			-ms-transition: -ms-transform 0.75s ease, opacity 1s ease-in;
			transition: transform 0.75s ease, opacity 1s ease-in;
			-moz-transition-delay: 0.5s;
			-webkit-transition-delay: 0.5s;
			-ms-transition-delay: 0.5s;
			transition-delay: 0.5s;
			opacity: 1;
		}

		.spotlight.top .content, .spotlight.bottom .content {
			left: 0;
			padding: 5.1em 0 3.1em 0;
			width: 100%;
		}

		.spotlight.top .content {
			border-bottom-width: 0.35em;
			top: 0;
		}

		.spotlight.bottom .content {
			border-top-width: 0.35em;
			bottom: 0;
		}

		.spotlight.left .content, .spotlight.right .content {
			height: 100%;
			padding: 3em 3em;
			top: 0;
			width: 30em;
		}

		.spotlight.left .content {
			border-right-width: 0.35em;
			left: 0;
		}

		.spotlight.right .content {
			border-left-width: 0.35em;
			right: 0;
		}

		.spotlight.style1 .content {
			border-color: #e44c65;
		}

		.spotlight.style2 .content {
			border-color: #5480f1;
		}

		.spotlight.style3 .content {
			border-color: #39c088;
		}

		.spotlight.inactive .content {
			opacity: 0;
		}

		.spotlight.inactive .goto-next {
			-moz-transform: translate(0,1.5em);
			-webkit-transform: translate(0,1.5em);
			-ms-transform: translate(0,1.5em);
			transform: translate(0,1.5em);
			opacity: 0;
		}

		.spotlight.inactive.top .content {
			-moz-transform: translate(0,-5em);
			-webkit-transform: translate(0,-5em);
			-ms-transform: translate(0,-5em);
			transform: translate(0,-5em);
		}

		.spotlight.inactive.bottom .content {
			-moz-transform: translate(0,5em);
			-webkit-transform: translate(0,5em);
			-ms-transform: translate(0,5em);
			transform: translate(0,5em);
		}

		.spotlight.inactive.left .content {
			-moz-transform: translate(-5em,0);
			-webkit-transform: translate(-5em,0);
			-ms-transform: translate(-5em,0);
			transform: translate(-5em,0);
		}

		.spotlight.inactive.right .content {
			-moz-transform: translate(5em,0);
			-webkit-transform: translate(5em,0);
			-ms-transform: translate(5em,0);
			transform: translate(5em,0);
		}

	body.is-touch .spotlight {
		background-attachment: scroll;
	}



/* Wrapper */

	.wrapper {
		padding: 2em 0 2em 0;
	}

		.wrapper.style2 {
			background: #e44c65;
		}

			.wrapper.style2 input[type="text"]:focus,
			.wrapper.style2 input[type="password"]:focus,
			.wrapper.style2 input[type="email"]:focus,
			.wrapper.style2 select:focus,
			.wrapper.style2 textarea:focus {
				border-color: rgba(255, 255, 255, 0.5);
			}

			.wrapper.style2 input[type="submit"]:hover, .wrapper.style2 input[type="submit"]:active,
			.wrapper.style2 input[type="reset"]:hover,
			.wrapper.style2 input[type="reset"]:active,
			.wrapper.style2 input[type="button"]:hover,
			.wrapper.style2 input[type="button"]:active,
			.wrapper.style2 .button:hover,
			.wrapper.style2 .button:active {
				background-color: rgba(255, 255, 255, 0.075) !important;
				box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
				color: #ffffff !important;
			}

			.wrapper.style2 input[type="submit"]:active,
			.wrapper.style2 input[type="reset"]:active,
			.wrapper.style2 input[type="button"]:active,
			.wrapper.style2 .button:active {
				background-color: rgba(255, 255, 255, 0.25) !important;
			}

			.wrapper.style2 input[type="submit"].primary,
			.wrapper.style2 input[type="reset"].primary,
			.wrapper.style2 input[type="button"].primary,
			.wrapper.style2 .button.primary {
				background-color: #ffffff;
				color: #e44c65 !important;
			}

				.wrapper.style2 input[type="submit"].primary:hover, .wrapper.style2 input[type="submit"].primary:active,
				.wrapper.style2 input[type="reset"].primary:hover,
				.wrapper.style2 input[type="reset"].primary:active,
				.wrapper.style2 input[type="button"].primary:hover,
				.wrapper.style2 input[type="button"].primary:active,
				.wrapper.style2 .button.primary:hover,
				.wrapper.style2 .button.primary:active {
					background-color: rgba(255, 255, 255, 0.075) !important;
					box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
					color: #ffffff !important;
				}

				.wrapper.style2 input[type="submit"].primary:active,
				.wrapper.style2 input[type="reset"].primary:active,
				.wrapper.style2 input[type="button"].primary:active,
				.wrapper.style2 .button.primary:active {
					background-color: rgba(255, 255, 255, 0.25) !important;
				}

		.wrapper.fade-down > .container {
			-moz-transform: translate(0,0);
			-webkit-transform: translate(0,0);
			-ms-transform: translate(0,0);
			transform: translate(0,0);
			-moz-transition: -moz-transform 1s ease, opacity 1s ease;
			-webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
			-ms-transition: -ms-transform 1s ease, opacity 1s ease;
			transition: transform 1s ease, opacity 1s ease;
			opacity: 1;
		}

		.wrapper.fade-down.inactive > .container {
			-moz-transform: translate(0,-1em);
			-webkit-transform: translate(0,-1em);
			-ms-transform: translate(0,-1em);
			transform: translate(0,-1em);
			opacity: 0;
		}

		.wrapper.fade-up > .container {
			-moz-transform: translate(0,0);
			-webkit-transform: translate(0,0);
			-ms-transform: translate(0,0);
			transform: translate(0,0);
			-moz-transition: -moz-transform 1s ease, opacity 1s ease;
			-webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
			-ms-transition: -ms-transform 1s ease, opacity 1s ease;
			transition: transform 1s ease, opacity 1s ease;
			opacity: 1;
		}

		.wrapper.fade-up.inactive > .container {
			-moz-transform: translate(0,1em);
			-webkit-transform: translate(0,1em);
			-ms-transform: translate(0,1em);
			transform: translate(0,1em);
			opacity: 0;
		}

		.wrapper.fade > .container {
			-moz-transition: opacity 1s ease;
			-webkit-transition: opacity 1s ease;
			-ms-transition: opacity 1s ease;
			transition: opacity 1s ease;
			opacity: 1;
		}

		.wrapper.fade.inactive > .container {
			opacity: 0;
		}

/* Dropotron */

	.dropotron {
		background: rgba(39, 40, 51, 0.965);
		border-radius: 4px;
		box-shadow: 0 0.075em 0.35em 0 rgba(0, 0, 0, 0.125);
		list-style: none;
		margin-top: calc(-0.25em + 1px);
		min-width: 12em;
		padding: 0.25em 0;
	}

		.dropotron > li {
			border-top: solid 1px rgba(255, 255, 255, 0.035);
			padding: 0;
		}

			.dropotron > li a, .dropotron > li span {
				border: 0;
				color: rgba(255, 255, 255, 0.75);
				display: block;
				padding: 0.1em 1em;
				text-decoration: none;
			}

			.dropotron > li:first-child {
				border-top: 0;
			}

			.dropotron > li.active > a, .dropotron > li.active > span {
				color: #e44c65;
			}

		.dropotron.level-0 {
			font-size: 0.8em;
			margin-top: 1em;
		}

			.dropotron.level-0:before {
				-moz-transform: rotate(45deg);
				-webkit-transform: rotate(45deg);
				-ms-transform: rotate(45deg);
				transform: rotate(45deg);
				background: #272833;
				content: '';
				display: block;
				height: 1em;
				position: absolute;
				right: 1.5em;
				top: -0.5em;
				width: 1em;
			}

	body.landing .dropotron.level-0 {
		margin-top: 0;
	}

/* Header */

	#page-wrapper {
		padding-top: 3.5em;
	}

	#header {
		background: rgba(39, 40, 51, 0.965);
		box-shadow: 0 0 0.25em 0 rgba(0, 0, 0, 0.25);
		cursor: default;
		height: 3.5em;
		left: 0;
		line-height: 3.5em;
		position: static;
		top: 0;
		width: 100%;
		z-index: 100;
	}

		#header #logo {
			height: inherit;
			left: 1.25em;
			line-height: inherit;
			margin: 0;
			position: absolute;
			top: 0;
		}

		#header nav {
			position: absolute;
			right: 1em;
			top: 0;
		}

			#header nav ul {
				margin: 0;
			}

				#header nav ul li {
					display: inline-block;
					margin-left: 1em;
				}

					#header nav ul li a, #header nav ul li span {
						border: 0;
						color: inherit;
						display: inline-block;
						height: inherit;
						line-height: inherit;
						outline: 0;
					}

						#header nav ul li a.button, #header nav ul li span.button {
							height: 2em;
							line-height: 2em;
							padding: 0 1.25em;
						}

						#header nav ul li a:not(.button):before, #header nav ul li span:not(.button):before {
							margin-right: 0.5em;
						}

					#header nav ul > li.active > a, #header nav ul > li.active > span {
						color: #1f3fa6;
					}

					#header nav ul li > ul {
						display: none;
					}

	body.landing #page-wrapper {
		padding-top: 0;
	}

	body.landing #header {
		background: transparent;
		box-shadow: none;
		position: absolute;
	}



/* Footer */

	#footer {
		background: #272833;
		padding: 6em 0;
		text-align: center;
	}

		#footer .icons .icon.alt {
			text-decoration: none;
		}

			#footer .icons .icon.alt:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 400;
			}

			#footer .icons .icon.alt:before {
				color: #272833 !important;
				text-shadow: 1px 0 0 rgba(255, 255, 255, 0.5), -1px 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 0 rgba(255, 255, 255, 0.5);
			}

		#footer .copyright {
			color: rgba(255, 255, 255, 0.5);
			font-size: 0.8em;
			line-height: 1em;
			margin: 2em 0 0 0;
			padding: 0;
			text-align: center;
		}

			#footer .copyright li {
				border-left: solid 1px rgba(255, 255, 255, 0.3);
				display: inline-block;
				list-style: none;
				margin-left: 1.5em;
				padding-left: 1.5em;
			}

				#footer .copyright li:first-child {
					border-left: 0;
					margin-left: 0;
					padding-left: 0;
				}

				#footer .copyright li a {
					color: inherit;
				}



/* XLarge */

	@media screen and (max-width: 1680px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 13pt;
			}

	}

/* Large */

	@media screen and (max-width: 1280px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 11.5pt;
			}

		/* Spotlight */

			.spotlight.top .content {
				padding: 3.825em 0 1.825em 0;
			}

			.spotlight.bottom .content {
				padding: 3.825em 0 2.95em 0;
			}

			.spotlight.left .content, .spotlight.right .content {
				padding: 4.5em 2.5em;
				width: 25em;
			}

		/* Wrapper */

			.wrapper {
				padding: 4.5em 0 2.5em 0;
			}

		/* Dropotron */

			.dropotron.level-0 {
				font-size: 1em;
			}

		/* Banner */

			#banner .content {
				padding: 4.5em;
			}

		/* Footer */

			#footer {
				padding: 4.5em 0;
			}

	}

/* Medium */

	@media screen and (max-width: 980px) {

		/* Basic */

			body, input, select, textarea {
				font-size: 12pt;
			}

		/* Spotlight */

			.spotlight {
				background-attachment: scroll;
				height: auto;
			}

				.spotlight .image.main {
					display: block;
					margin: 0;
					max-height: 40vh;
					overflow: hidden;
				}

				.spotlight .content {
					background-color: #1c1d26;
					border-width: 0 !important;
					border-top-width: 0.35em !important;
					bottom: auto !important;
					left: auto !important;
					padding: 4.5em 2.5em 2.5em 2.5em !important;
					position: relative;
					right: auto !important;
					text-align: center;
					top: auto !important;
					width: 100% !important;
				}

					.spotlight .content ul.actions {
						-moz-justify-content: center;
						-webkit-justify-content: center;
						-ms-justify-content: center;
						justify-content: center;
						width: 100%;
						margin-left: 0;
					}

						.spotlight .content ul.actions li:first-child {
							padding-left: 0;
						}

				.spotlight .goto-next {
					display: none;
				}

		/* Wrapper */

			.wrapper {
				padding: 4.5em 2.5em 2.5em 2.5em;
			}

		/* Banner */

			#banner {
				background-attachment: scroll;
			}

				#banner .goto-next {
					height: 7em;
				}

				#banner .content {
					padding: 9em 0;
					text-align: center;
				}

					#banner .content header {
						display: block;
						margin: 0 0 2em 0;
						text-align: center;
					}

					#banner .content .image {
						margin: 0;
					}

		/* Footer */

			#footer {
				padding: 4.5em 0;
			}

	}

/* Small */

	#navPanel, #titleBar {
		display: none;
	}

	@media screen and (max-width: 736px) {

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

			body, input, select, textarea {
				font-size: 12pt;
			}

			h2 {
				font-size: 1.5em;
			}

			h3 {
				font-size: 1.2em;
			}

			h4 {
				font-size: 1em;
			}

		/* Section/Article */

			header p br {
				display: none;
			}

			header h2 + p {
				font-size: 1em;
			}

			header h3 + p {
				font-size: 1em;
			}

			header h4 + p,
			header h5 + p,
			header h6 + p {
				font-size: 0.9em;
			}

			header.major {
				margin: 0 0 2em 0;
			}

		/* Goto Next */

			.goto-next:before {
				height: 0.8em;
				margin: -0.4em 0 0 -0.6em;
				width: 1.2em;
			}

		/* Spotlight */

			.spotlight {
				box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.25);
			}

				.spotlight .image.main {
					max-height: 60vh;
				}

				.spotlight .content {
					border-top-width: 0.2em !important;
					padding: 3.25em 1.5em 1.25em 1.5em !important;
				}

		/* Wrapper */

			.wrapper {
				padding: 3.25em 1.5em 1.25em 1.5em;
			}

		/* Header */

			#header {
				display: none;
			}

		/* Banner */

			#banner {
				box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.25);
				min-height: calc(100vh - 44px);
			}

				#banner:before {
					height: calc(100vh - 44px);
				}

				#banner .content {
					padding: 1.5em 1.5em 2.4375em 1.5em;
				}

					#banner .content header h2 {
						font-size: 1.5em;
					}

					#banner .content .image {
						height: 9em;
						width: 9em;
					}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
				padding-top: 44px !important;
			}

			#titleBar {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 44px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				background: #272833;
				box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
			}

				#titleBar .title {
					color: #ffffff;
					display: block;
					font-weight: 300;
					height: 44px;
					line-height: 44px;
					text-align: center;
				}

					#titleBar .title a {
						color: inherit;
						border: 0;
					}

				#titleBar .toggle {
					text-decoration: none;
					height: 60px;
					left: 0;
					position: absolute;
					top: 0;
					width: 90px;
					outline: 0;
					border: 0;
				}

					#titleBar .toggle:before {
						-moz-osx-font-smoothing: grayscale;
						-webkit-font-smoothing: antialiased;
						display: inline-block;
						font-style: normal;
						font-variant: normal;
						text-rendering: auto;
						line-height: 1;
						text-transform: none !important;
						font-family: 'Font Awesome 5 Free';
						font-weight: 900;
					}

					#titleBar .toggle:before {
						background: #1f3fa6;
						color: rgba(255, 255, 255, 0.5);
						content: '\f0c9';
						display: block;
						font-size: 18px;
						height: 44px;
						left: 0;
						line-height: 44px;
						position: absolute;
						text-align: center;
						top: 0;
						width: 54px;
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateX(-275px);
				-webkit-transform: translateX(-275px);
				-ms-transform: translateX(-275px);
				transform: translateX(-275px);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 100%;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 275px;
				z-index: 10002;
				background: #181920;
				padding: 0.75em 1.25em;
			}

				#navPanel .link {
					border: 0;
					border-top: solid 1px rgba(255, 255, 255, 0.05);
					color: rgba(255, 255, 255, 0.75);
					display: block;
					height: 3em;
					line-height: 3em;
					text-decoration: none;
				}

					#navPanel .link:hover {
						color: inherit !important;
					}

					#navPanel .link:first-child {
						border-top: 0;
					}

					#navPanel .link.depth-0 {
						color: #ffffff;
						font-weight: 300;
					}

					#navPanel .link .indent-1 {
						display: inline-block;
						width: 1.25em;
					}

					#navPanel .link .indent-2 {
						display: inline-block;
						width: 2.5em;
					}

					#navPanel .link .indent-3 {
						display: inline-block;
						width: 3.75em;
					}

					#navPanel .link .indent-4 {
						display: inline-block;
						width: 5em;
					}

					#navPanel .link .indent-5 {
						display: inline-block;
						width: 6.25em;
					}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #titleBar {
				-moz-transform: translateX(275px);
				-webkit-transform: translateX(275px);
				-ms-transform: translateX(275px);
				transform: translateX(275px);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}

		/* Footer */

			#footer {
				padding: 3.25em 1.5em;
			}

	}

/* XSmall */

	@media screen and (max-width: 480px) {

		/* Basic */

			html, body {
				min-width: 320px;
			}

			body, input, select, textarea {
				font-size: 12pt;
			}

		/* Button */

			input[type="submit"],
			input[type="reset"],
			input[type="button"],
			.button {
				padding: 0;
			}

		/* Spotlight */

			.spotlight .image.main {
				max-height: 50vh;
			}

			.spotlight .content {
				padding: 3em 1.25em 1em 1.25em !important;
			}

		/* Wrapper */

			.wrapper {
				padding: 3em 1.25em 1em 1.25em;
			}

		/* Banner */

			#banner .content {
				padding: 1.75em 1.5em 2.25em 1.5em;
			}

		/* Footer */

			#footer {
				padding: 3em 1.25em;
			}

				#footer .copyright {
					line-height: inherit;
				}

					#footer .copyright li {
						border-left: 0;
						display: block;
						margin: 0;
						padding: 0;
					}

	}


/* Remove overlay only for section one */
#one.spotlight:before {
    background: none !important;
}



/* =========================
   Footer Columns Layout
========================= */

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1100px;
    margin: 3em auto 0 auto;
    padding: 0 2em;
    gap: 3em;
    text-align: left;
}

/* Individual Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Column Headings */
.footer-column h4 {
color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1em;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

/* Subtle Divider Under Heading */
.footer-column h4 {
    display: flex;
    flex-direction: column;
}

.footer-column h4::after {
    content: "";
    width: 35px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

html[dir="rtl"] .footer-column h4 {
    align-items: flex-end;
}


/* Links */
.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 0.7em;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

/* Hover Effect */
.footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* =========================
   Mobile Adjustments
========================= */

@media screen and (max-width: 768px) {

    .footer-columns {
        gap: 2em;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column a:hover {
        transform: none; /* disable slide animation on mobile */
    }
}

/* ================================= */
/* WHY CHOOSE US - BENEFITS SECTION  */
/* ================================= */

/* Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* Bottom row (2 centered cards) */
.benefits-grid.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
  margin-top: -10px;
  gap: 28px;
}

/* Individual Card */
.benefit-card {
  background: #272833;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;

  border: 1px solid #e44c65;

  /* Glow + depth shadow */
  box-shadow:
    0 0 8px rgba(228, 76, 101, 0.6),
    0 0 18px rgba(228, 76, 101, 0.35),
    0 12px 36px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover 3D Lift */
.benefit-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 0 14px rgba(228, 76, 101, 0.9),
    0 0 28px rgba(228, 76, 101, 0.6),
    0 20px 48px rgba(0, 0, 0, 0.45);
}

/* Icon Styling */
.benefit-card .icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media screen and (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid.bottom-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 0;
  }
}


/* ================================= */
/* BENEFITS SECTION (SHARED STYLE)   */
/* ================================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.benefits-grid.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
  margin-top: -10px;
  gap: 28px;
}

.benefit-card {
  background: #272833;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;

  border: 1px solid var(--card-accent);

  /* Premium soft depth */
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.35);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);

  /* Subtle accent halo on hover only */
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 14px var(--card-accent);
}

.benefit-card .icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media screen and (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid.bottom-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-top: 0;
  }
}

/* ================================= */
/* PAGE ACCENT COLORS                */
/* ================================= */

.education-page {
  --card-accent: #e44c65;
}

.immigration-page {
  --card-accent: #5480f1;
}

.career-page {
  --card-accent: #39c088;
}


/* ===================================== */
/* FORM VALIDATION – ACCENT COLOR SYSTEM */
/* ===================================== */

/* Field-level error message */
.field-error {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Step-level error message */
.step-error {
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Consent error */
.consent-error {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Consent switch outline override */
.consent-error-outline {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

/* ================================= */
/* Study Overview Grid (Two Columns) */
/* ================================= */

.study-overview .study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 80px 0;
}

.study-card {
  background: #272833;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

/* Desktop default */
.study-item .section-title {
  text-align: left;
  position: relative;
}

/* Underline */
.study-item .section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* Study List */
.study-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.study-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #3a3b47;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}


.study-list li:last-child {
  border-bottom: none;
}

/* Hover lift only */
.study-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: #2f303d;
}

/* Icon */
.study-list .icon {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Description text */
.study-list li p {
  margin: 4px 0 0 0;
  font-size: 14px;
  transition: color 0.2s ease;
}


/* ================================================= */
/* PAGE-SPECIFIC COLORS (Controlled via body class) */
/* ================================================= */


/* ================== EDUCATION ================== */

.education-page .study-item .section-title::after {
  background: #e44c65;
}

.education-page .study-list li:hover h3,
.education-page .study-list li:hover p {
  color: #e44c65;
}

.education-page .study-list .icon {
  background: rgba(228, 76, 101, 0.15);
  color: #e44c65;
}


/* ================== IMMIGRATION ================== */

.immigration-page .study-item .section-title::after {
  background: #5480f1;
}

.immigration-page .study-list li:hover h3,
.immigration-page .study-list li:hover p {
  color: #5480f1;
}

.immigration-page .study-list .icon {
  background: rgba(84, 128, 241, 0.15);
  color: #5480f1;
}


/* ================== CAREER ================== */

.career-page .study-item .section-title::after {
  background: #39c088;
}

.career-page .study-list li:hover h3,
.career-page .study-list li:hover p {
  color: #39c088;
}

.career-page .study-list .icon {
  background: rgba(57, 192, 136, 0.15);
  color: #39c088;
}


/* Responsive */
@media screen and (max-width: 900px) {
  .study-overview .study-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* ========================= */
/* Page Accent Colors */
/* ========================= */

body.education-page {
  --accent-color: #e44c65;
}

body.immigration-page {
  --accent-color: #5480f1;
}

body.career-page {
  --accent-color: #39c088;
}

/* ================================================= */
/* PAGE ACCENT COLORS (AUTO SWITCH BY BODY CLASS)   */
/* ================================================= */

body.education-page {
  --accent-color: #e44c65;
}

body.immigration-page {
  --accent-color: #5480f1;
}

body.career-page {
  --accent-color: #39c088;
}


/* ================================================= */
/* EUROPEAN-STYLE VERTICAL TIMELINE SYSTEM          */
/* ================================================= */

.process-section {
  padding: 110px 20px;
  text-align: center;
}

.process-section h2 {
  margin-bottom: 60px;
}

/* Timeline wrapper */
.timeline {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding-left: 50px;
}

/* Vertical line (matches page accent softly) */
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent-color);
  opacity: 0.25; /* soft premium look */
}

/* Each item */
.timeline-item {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}

/* Step number marker */
.timeline-marker {
  position: absolute;
  left: 4px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 2;
}

/* Content box */
.timeline-content {
  background: #272833;
  padding: 30px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* Title */
.timeline-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Description */
.timeline-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Homepage Process Custom Styling */
.homepage-process {
  --accent-color: #1f3c88; /* corporate blue */
}

.homepage-process .timeline-content {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepage-process .timeline-item:hover .timeline-content {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}


/* ========================= */
/* CTA SECTION STYLING */
/* ========================= */

.cta-section {
  text-align: center;
  background: transparent;   /* no background */
  padding: 110px 20px 120px 20px;
  margin: 100px auto 0 auto;
}

.cta-section .container {
  text-align: center;
}

.cta-section h2 {
  font-size: 2.3em;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.4px;
}

.cta-section p {
  font-size: 1.05em;
  max-width: 720px;
  margin: 0 auto 45px auto;
  opacity: 0.85;
  line-height: 1.7;
}

.cta-section .button.primary {
  min-width: 340px;
  height: 3.4em;
  letter-spacing: 0.5px;
}


/* ===================================== */
/* Accent Color System */
/* ===================================== */

:root {
  --accent-color: #e44c65; /* fallback */
}

body.education-page {
  --accent-color: #e44c65;
}

body.immigration-page {
  --accent-color: #5480f1;
}

body.career-page {
  --accent-color: #39c088;
}

/* ===================================== */
/* CTA Button */
/* ===================================== */

.cta-section .button.primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.cta-section .button.primary:hover {
  background: transparent;
  color: var(--accent-color) !important;
  transform: translateY(-3px);
}

/* ===================================== */
/* GLOBAL ACCENT COLOR SYSTEM */
/* ===================================== */

/* Default fallback */
:root {
  --accent-color: #e44c65;
}

/* Education Page */
body.education-page {
  --accent-color: #e44c65;
}

/* Immigration Page */
body.immigration-page {
  --accent-color: #5480f1;
}

/* Career Page */
body.career-page {
  --accent-color: #39c088;
}


/* ===================================== */
/* PRIMARY BUTTON OVERRIDE (SITE-WIDE) */
/* ===================================== */

.button.primary {
  background: var(--accent-color) !important;
  border: 2px solid var(--accent-color) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.button.primary:hover {
  background: transparent !important;
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color) !important;
  transform: translateY(-2px);
}


/* ==========================================
   FULLSCREEN HERO — CLEAN ARCHITECTURE
========================================== */

#banner {
    position: relative;
    height: 100vh;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    overflow: hidden;

    background-image: url("../../images/banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Disable parallax on touch devices */
body.is-touch #banner {
    background-attachment: scroll;
}

/* Overlay */
#banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 12, 25, 0.88) 0%,
        rgba(8, 12, 25, 0.85) 50%,
        rgba(8, 12, 25, 0.92) 100%
    );
    z-index: 0;
}

/* Content container */
#banner .content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 880px;

    padding: 2.5em 2em;
}

/* Logo */
#banner .content img {
    max-width: 360px;
    margin-bottom: 0.8em;
}

/* Tagline */
#banner h3 {
    font-size: 1.05em;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.2em;
    opacity: 0.9;
}

/* Main Title */
.hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1em;
}

.hero-title span {
    display: block;
    font-weight: 300;
    opacity: 0.9;
}

/* Paragraphs */
#banner p {
    font-size: 1.05em;
    line-height: 1.75;
    margin-bottom: 1em;
    opacity: 0.95;
}

/* CTA Button */
#banner .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 2.8em;
    height: 3em;

    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 6px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);

    transition: all 0.3s ease;
}

#banner .hero-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

#banner footer.major {
    margin-top: 1.8em;
}

@media screen and (max-width: 768px) {

    #banner {
        height: auto;
        min-height: 100vh;
        padding: 2em 0;
    }

    #banner .content {
        padding: 2em 1.2em;
    }

    #banner .content img {
        max-width: 260px;
    }

    .hero-title {
        font-size: 30px;
    }

    #banner p {
        font-size: 0.95em;
        line-height: 1.6;
    }

    #banner .hero-button {
        width: 100%;
        max-width: 320px;
        height: 3em;
    }
}

/* ===== Refined Header Rhythm ===== */

#main header.major {
    margin-bottom: 2.2em;
}

/* Reduce gap below main heading */
#main header.major h2 {
    margin-bottom: 0.6em;
font-size: 2.2em;
}

/* Tighten paragraph spacing */
#main header.major p {
    margin-bottom: 0.8em;
}

/* Control underline spacing */
#main header.major:after {
    margin-top: 1em;
    margin-bottom: 1.8em;
    width: 60%;
    max-width: 700px;
    height: 3px;
}

/* Control button spacing */
#main header.major .actions {
    margin-top: 0;
}


/* ===================================================== */
/* PREMIUM TYPOGRAPHY REFINEMENT (DEFAULT FONTS ONLY)   */
/* No font-family changes. No color changes.             */
/* Scoped to this page sections only.                    */
/* ===================================================== */


/* Improve font rendering for dark UI */
#content,
.study-overview {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}




/* ===================================== */
/* HEADER MAJOR LINE ACCENT MATCH */
/* ===================================== */

header.major:after {
  background: var(--accent-color) !important;
}

/* ===================================== */
/* Header Login Button */
/* ===================================== */

.header-login {
  background-color: #1f3fa6 !important;     /* corporate blue */
  color: #ffffff !important;                /* white text */
  box-shadow: inset 0 0 0 1px #ffffff !important; /* white frame */
  transition: all 0.3s ease;
}

/* Hover: soft blue background */
.header-login:hover {
  background-color: rgba(31, 63, 166, 0.08) !important; /* same as version 1 */
  color: #1f3fa6 !important;                /* blue text */
  box-shadow: inset 0 0 0 1px #1f3fa6 !important; /* blue frame */
}

/* ===================================== */
/* HEADER – CORPORATE BRAND CONTROL     */
/* ===================================== */

/* Keep parent item blue when dropdown is open */
#nav ul li.active > a,
#nav ul li.current > a {
  color: #1f3fa6 !important;
}

/* Dropdown default items */
#nav ul li ul li a {
  color: inherit !important;
  background: transparent !important;
}



/* ===================================== */
/* Custom Hero Button (Hover Turns Blue) */
/* ===================================== */

.hero-button {
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px #ffffff !important;
}

.hero-button:hover {
  color: #1f3fa6 !important;
  box-shadow: inset 0 0 0 1px #1f3fa6 !important;
  background-color: rgba(31, 63, 166, 0.08) !important;
}

/* ===================================== */
/* Education Spotlight – Specific Button */
/* ===================================== */

.education-hover:hover {
  color: #e44c65 !important;
  box-shadow: inset 0 0 0 1px #e44c65 !important;
  background-color: rgba(228, 76, 101, 0.08) !important;
}


/* ===================================== */
/* Immigration Spotlight Button Hover */
/* ===================================== */

.immigration-hover:hover {
  color: #5480f1 !important;
  box-shadow: inset 0 0 0 1px #5480f1 !important;
  background-color: rgba(84, 128, 241, 0.08) !important;
}


/* ===================================== */
/* Career Spotlight – Specific Button */
/* ===================================== */

.career-hover:hover {
  color: #39c088 !important;
  box-shadow: inset 0 0 0 1px #39c088 !important;
  background-color: rgba(57, 192, 136, 0.08) !important;
}


/* ===================================== */
/* Section #four – Blue Divider (Visible Premium) */
/* ===================================== */

#four header.major:after {
  background: #1f3fa6 !important;
  opacity: 0.8; /* visible but refined */
}


/* ===================================== */
/* Section #five – Clean Corporate Blue */
/* ===================================== */

.wrapper.style2#five {
  background-color: #1f3fa6;
}

/* Keep typography default — just ensure readability */
#five h2,
#five p,
#five label {
  color: #ffffff !important;
}

/* ===================================== */
/* #five – True Full Screen Section      */
/* ===================================== */


/* Keep container centered */
section#five .container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

/* Reduce header spacing */
section#five header {
    margin-bottom: 1.8em;
}

/* Glass form panel – framed & compact */
section#five form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.1em 2em;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

section#five textarea {
    min-height: 110px;
    max-height: 150px;
}

/* ===================================== */
/* MOBILE FIX – #five full screen        */
/* ===================================== */

@media screen and (max-width: 768px) {

  section#five.wrapper.style2.special {
    min-height: 100dvh;        /* better mobile viewport unit */
    height: auto;              /* prevent clipping */
    padding-top: 90px;         /* space for fixed header */
    align-items: flex-start;   /* keep layout consistent */
  }

}

/* ===================================== */
/* SECTION FOUR – MOBILE SPACING FIX */
/* ===================================== */

@media screen and (max-width: 736px) {


/* Reduce vertical padding inside each card */
    #four .row > section {
        padding: 1.5rem 1.25rem;
    }

    /* Remove forced height on headings */
    #four h3 {
        min-height: auto;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    /* Tighten icon spacing */
    #four .icon.major {
        margin-bottom: 0.75rem;
        font-size: 1.6rem;
    }

    /* Slightly tighten paragraph spacing */
    #four p {
        margin-bottom: 0;

    }

    /* Reduce gap between stacked columns */
    #four .row {
        margin-top: 1.5rem;
    }

}

/* ===================================== */
/* Section #five – Refined Button Behavior */
/* ===================================== */

/* Default button state */
#five .primary {
  background-color: #ffffff !important;
  color: #1f3fa6 !important;        /* blue text */
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* ===================================== */
/* Section #five – Force Button Control */
/* ===================================== */

/* Default */
.wrapper.style2#five input[type="submit"].primary {
  background-color: #ffffff !important;
  color: #16307d !important;
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* Hover */
.wrapper.style2#five input[type="submit"].primary:hover {
  background-color: rgba(255,255,255,0.85) !important;
  color: #1f3fa6 !important;
}

/* Active / Click */
.wrapper.style2#five input[type="submit"].primary:active {
  background-color: #1f3fa6 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  transform: translateY(1px);
}

/* ===================================== */
/* Section #five – Checkbox Corporate   */
/* ===================================== */

/* Default checkbox frame */
.wrapper.style2#five input[type="checkbox"] + label:before {
  border-color: #ffffff !important;
}

/* When checked – keep tick, change accent */
.wrapper.style2#five input[type="checkbox"]:checked + label:before {
  background-color: #1f3fa6 !important;   /* corporate blue */
  border-color: #ffffff !important;
  color: #ffffff !important;             /* tick color */
}

/* Remove red focus glow */
.wrapper.style2#five input[type="checkbox"]:focus + label:before {
  box-shadow: none !important;
}

/* ===================================== */
/* Section #five – Privacy Policy link   */
/* ===================================== */
#five small a,
#five small a:hover,
#five small a:focus,
#five small a:active {
    color: #ffffff !important;
    text-decoration: underline;
}

/* ===================================== */
/* Section #five – one screen size   */
/* ===================================== */
#five {
    min-height: 100vh;   /* allow it to grow */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;     /* breathing room top & bottom */
}

/* ===================================== */
/* Section #five – Mobile Fix Alignment */
/* ===================================== */

@media screen and (max-width: 768px) {

  #five {
    height: auto !important;        /* remove 100vh */
    min-height: 100vh;              /* allow full screen but flexible */
    display: block !important;      /* remove flex centering */
    padding: 4rem 1.5rem;           /* breathing space */
  }

  /* Optional: center text properly on mobile */
  #five .inner {
    width: 100%;
    text-align: center;
  }

  /* Make inputs full width on mobile */
  #five input[type="text"],
  #five input[type="email"],
  #five input[type="tel"],
  #five textarea {
    width: 100%;
  }

  /* Make submit button full width */
  #five input[type="submit"].primary {
    width: 100%;
  }

}


/* ===================================== */
/* FOOTER CORPORATE COLOR OVERRIDE      */
/* ===================================== */

/* Footer links hover */
#footer a:hover {
  color: #1f3fa6 !important;
}

/* Footer icons hover */
#footer .icons a:hover {
  color: #1f3fa6 !important;
  border-color: #1f3fa6 !important;
}

/* Footer small service links */
#footer div a:hover {
  color: #1f3fa6 !important;
}
/* ===================================== */
/* FOOTER – DEFAULT & HOVER COLOR        */
/* ===================================== */

/* Default footer link color */
#footer a {
  color: #1f3fa6 !important;
  transition: color 0.2s ease;
}

/* Hover state */
#footer a:hover {
  color: #16307d !important; /* slightly darker blue for premium feel */
}

/* ===================================================== */
/* MULTI STEP FORM SYSTEM (GLOBAL – used by all forms)  */
/* ===================================================== */

.multi-step-form .form-step {
  display: none;
  animation: fadeStep 0.4s ease;
}

.multi-step-form .form-step.active {
  display: block;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Premium Progress Bar Upgrade ===== */

.multi-step-form .progress-bar {
  height: 10px; /* thicker */
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  margin-bottom: 35px;
  overflow: hidden;
}

.multi-step-form .progress {
  height: 100%;
  width: 0%;
  background: var(--accent-color); /* keep your color */
  border-radius: 50px;
  transition: width 0.4s ease-in-out;
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

/* Breadcrumb */
.breadcrumb a {
  color: #1f3fa6;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.multi-step-form .progress {
  height: 100%;
  width: 0%;
  background: var(--accent-color);
  transition: width 0.4s ease;
}
/* Breadcrumb hover override */
body.education-page .breadcrumb a:hover,
body.immigration-page .breadcrumb a:hover,
body.career-page .breadcrumb a:hover {
  color: var(--accent-color) !important;
}

Extra Premium Touch

.multi-step-form .form-step {
  animation: fadeStep 0.3s ease;
}

@keyframes fadeStep {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================= */
/* PAGE ACCENT COLORS                */
/* ================================= */

body.education-page { --app-accent: #e44c65; }
body.immigration-page { --app-accent: #5480f1; }
body.career-page { --app-accent: #39c088; }



/* ================================= */
/* TEXT INPUTS / SELECT / TEXTAREA   */
/* Only when focused (active)        */
/* ================================= */

body.education-page input:focus,
body.education-page select:focus,
body.education-page textarea:focus,
body.immigration-page input:focus,
body.immigration-page select:focus,
body.immigration-page textarea:focus,
body.career-page input:focus,
body.career-page select:focus,
body.career-page textarea:focus {
  border-color: var(--app-accent) !important;
  outline: none;
  box-shadow: 0 0 0 1px var(--app-accent);
}

.multi-step-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ================================= */
/* CHECKBOX + RADIO FRAME COLOR      */
/* Only when checked                 */
/* ================================= */

body.education-page input[type="checkbox"]:checked + label:before,
body.education-page input[type="radio"]:checked + label:before,
body.immigration-page input[type="checkbox"]:checked + label:before,
body.immigration-page input[type="radio"]:checked + label:before,
body.career-page input[type="checkbox"]:checked + label:before,
body.career-page input[type="radio"]:checked + label:before {
  border-color: var(--app-accent) !important;
  background-color: transparent !important;
}



/* ---------------- MAIN SECTION TITLE ---------------- */

#content > h3 {
  font-weight: 500;          /* reduce heaviness */
  letter-spacing: 0.4px;     /* subtle premium spacing */
  margin-bottom: 2.2rem;
}


/* ---------------- SECTION HEADINGS ---------------- */

#content h3,
.study-card h3 {
  font-weight: 500;          /* less bold = more premium */
  letter-spacing: 0.3px;
}


/* ---------------- CARD TITLES ---------------- */

.benefit-card h4 {
  font-weight: 500;          /* refined emphasis */
  letter-spacing: 0.2px;
  margin-bottom: 0.9rem;
}


/* ---------------- BODY TEXT ---------------- */

.benefit-card p,
.study-list li,
.study-list p {
  font-weight: 400;
  line-height: 1.75;         /* better breathing space */
  letter-spacing: 0.2px;
}


/* ---------------- STRONG TEXT ---------------- */

.study-list strong {
  font-weight: 500;          /* avoid heavy bold look */
}


/* ---------------- BUTTON TEXT ---------------- */

button,
input[type="submit"],
a.button {
  font-weight: 500;
  letter-spacing: 0.3px;
}
/* ===================================================== */
/* PREMIUM TYPOGRAPHY REFINEMENT – ALL SERVICE PAGES    */
/* Default fonts only. No color changes.                 */
/* ===================================================== */


/* Improve rendering on dark backgrounds */
.wrapper.style1 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


/* ---------------- PAGE INTRO (MAJOR HEADER) ---------------- */

.major h2 {
  font-weight: 500;
  letter-spacing: 0.4px;
}

.major p {
  line-height: 1.75;
  letter-spacing: 0.2px;
}


/* ---------------- BENEFIT CARDS ---------------- */

.benefit-card h3,
.benefit-card h4 {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.benefit-card p {
  line-height: 1.75;
  letter-spacing: 0.2px;
}


/* ---------------- STUDY / CONTENT CARDS ---------------- */

.study-card h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.study-list li,
.study-list p {
  line-height: 1.75;
  letter-spacing: 0.2px;
}

.study-list strong {
  font-weight: 500;
}


/* ---------------- BUTTONS ---------------- */

button,
input[type="submit"],
a.button {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===================================================== */
/* Center ONLY the "Why Choose Our..." title             */
/* ===================================================== */

#content > h3:first-of-type {
  text-align: center;
}

/* ===================================================== */
/* PREMIUM PROCESS SECTION REFINEMENT                   */
/* No structure changes. No color changes.               */
/* ===================================================== */


/* Section breathing space */
.process-section {
  padding: 5rem 0;
}


/* Section title alignment + hierarchy */
.process-section h2 {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 3rem;
}


/* Timeline container spacing */
.process-section .timeline {
  margin-top: 2rem;
}


/* Individual timeline item spacing */
.process-section .timeline-item {
  margin-bottom: 3rem;
  align-items: flex-start;
}


/* Timeline marker refinement */
.process-section .timeline-marker {
  width: 42px;
  height: 42px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Timeline content spacing */
.process-section .timeline-content {
  padding-left: 1.2rem;
}


/* Step titles */
.process-section .timeline-content h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 0.8rem;
}


/* Step description text */
.process-section .timeline-content p {
  line-height: 1.75;
  letter-spacing: 0.2px;
}


/* Last item spacing correction */
.process-section .timeline-item:last-child {
  margin-bottom: 0;
}


/* ===================================================== */
/* PREMIUM PROCESS SECTION – VISUAL UPGRADE             */
/* No structure changes. No color changes.               */
/* ===================================================== */


/* Section spacing */
.process-section {
  padding: 6rem 0;
}


/* Section title */
.process-section h2 {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4rem;
}


/* Timeline vertical rhythm */
.process-section .timeline {
  max-width: 900px;
  margin: 0 auto;
}


/* Each step spacing */
.process-section .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}


/* Add subtle structural separation */
.process-section .timeline-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}


/* Marker refinement */
.process-section .timeline-marker {
  min-width: 50px;
  height: 50px;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Content block */
.process-section .timeline-content {
  max-width: 650px;
}


/* Step title */
.process-section .timeline-content h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
}


/* Step description */
.process-section .timeline-content p {
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* ===================================================== */
/* CENTERED PREMIUM PROCESS LAYOUT                      */
/* No structure changes. No color changes.               */
/* ===================================================== */


/* Section spacing */
.process-section {
  padding: 6rem 0;
}


/* Center section title */
.process-section h2 {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 4rem;
}


/* Center entire timeline block */
.process-section .timeline {
  max-width: 800px;
  margin: 0 auto;
}


/* Stack items vertically and center */
.process-section .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}


/* Remove previous borders if any */
.process-section .timeline-item:not(:last-child) {
  border-bottom: none;
}


/* Timeline marker (number circle) */
.process-section .timeline-marker {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  font-weight: 700; /* Bold numbers */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}


/* Content block */
.process-section .timeline-content {
  max-width: 600px;
}


/* Step title */
.process-section .timeline-content h3 {
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
}


/* Step description */
.process-section .timeline-content p {
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* ===================================================== */
/* BALANCED BODY TEXT SIZE – SERVICE PAGES              */
/* Default fonts. No color changes.                      */
/* ===================================================== */

.benefit-card p,
.study-card p,
.study-list li,
.process-section .timeline-content p {
  font-size: 1rem;
  line-height: 1.75;
}

/* ========================================= */
/* CLEAN SERVICE PAGE SPACING SYSTEM        */
/* ========================================= */

/* Base spacing (desktop) */
.wrapper.style1 section {
  padding: 60px 0;
  margin: 0;
}

/* First section slightly tighter */
.wrapper.style1 > .container > section:first-of-type {
  padding-top: 40px;
}

/* Process & CTA slightly tighter */
.process-section,
.cta-section {
  padding-top: 40px;
}

/* ---------- MOBILE OPTIMIZATION ---------- */
@media screen and (max-width: 980px) {

  .wrapper.style1 section {
    padding: 45px 0;
  }

  .wrapper.style1 > .container > section:first-of-type {
    padding-top: 30px;
  }

}

/* ===================================== */
/* SERVICE CTA BUTTON – MOBILE CENTER FIX */
/* ===================================== */

@media screen and (max-width: 980px) {

    /* Stop forcing full-width flex behavior */
    .actions.fit {
        display: block;
        text-align: center;
    }

    .actions.fit li {
        display: block;
    }

    .actions.fit .button.fit {
        width: auto;
        min-width: 85%;
        margin: 0 auto;
        display: inline-block;
    }

}

/* =====================================================
   CONSISTENT APPLICATION FORM WIDTH (All 3 Pages)
===================================================== */

body.education-page .multi-step-form,
body.immigration-page .multi-step-form,
body.career-page .multi-step-form {
  max-width: 850px;
  margin: 10px auto;
  width: 100%;
}

body.education-page .multi-step-form,
body.immigration-page .multi-step-form,
body.career-page .multi-step-form {
  padding: 40px 50px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

@media (min-width: 1600px) {
  body.education-page .multi-step-form,
  body.immigration-page .multi-step-form,
  body.career-page .multi-step-form {
    max-width: 750px;
  }
}

@media (max-width: 768px) {
  .multi-step-form {
    padding: 30px 20px;
  }
}

/* Force stacked full width inputs */
body.immigration-page .form-group select,
body.immigration-page .form-group input {
  display: block;
  width: 100%;
}

/* Add spacing between elements inside same group */
body.immigration-page .form-group select {
  margin-bottom: 16px;
}

/* =====================================================
   EDUCATION PAGE – MERGED HEADER + FORM CARD
===================================================== */

/* Remove extra spacing only on education page */
body.education-page #main.wrapper.style1,
body.immigration-page #main.wrapper.style1,
body.career-page #main.wrapper.style1 {
  padding-bottom: 0;
}

/* Pull form upward only on education page */
body.education-page .multi-step-form,
body.immigration-page .multi-step-form,
body.career-page .multi-step-form  {
  margin-top: -40px;
  padding: 50px 60px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
}

/* Header spacing refinement (education page only) */
body.education-page #main .major,
body.immigration-page #main .major,
body.career-page #main .major {
  margin-bottom: 30px;
}

body.education-page #main .major h1,
body.immigration-page #main .major h1,
body.career-page #main .major h1 {
  margin-bottom: 15px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  body.education-page .multi-step-form,
body.immigration-page .multi-step-form,
body.career-page .multi-step-form  {
    margin-top: -20px;
    padding: 35px 25px;
    border-radius: 16px;
  }
}

/* =====================================================
   APPLICATION FORM VISUAL REFINEMENT
===================================================== */
/* ===== Buttons Upgrade ===== */

.btn,
.btn-primary {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.btn:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

.form-step .btn,
.form-step .btn-primary {
  margin-top: 25px;
}

/* =========================================
   Improve Step Titles Hierarchy
========================================= */
.multi-step-form h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  margin-top: 10px;
  border-radius: 2px;
}

/* =========================================
   Proper Back / Next Alignment
========================================= */

.form-step .prev,
.form-step .next {
  margin-top: 25px;
}

/* Keep buttons on same row */
.form-step .prev,
.form-step .next {
  display: inline-block;
}

/* Push Next to the right */
.form-step .next {
  float: right;
}

/* Clear float after buttons */
.form-step::after {
  content: "";
  display: block;
  clear: both;
}



/* =====================================================
   APPLICATION CHECKBOX – CLEAN CARD STYLE
   (Works for education, immigration, career pages)
===================================================== */

/* ---------- GRID LAYOUT (if using multi-select) ---------- */

body.education-page .multi-select,
body.immigration-page .multi-select,
body.career-page .multi-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

/* ---------- HIDE NATIVE CHECKBOX ---------- */

body.education-page input[type="checkbox"],
body.immigration-page input[type="checkbox"],
body.career-page input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ---------- REMOVE TEMPLATE CHECKBOX PSEUDO ELEMENTS ---------- */

body.education-page input[type="checkbox"] + label::before,
body.education-page input[type="checkbox"] + label::after,
body.immigration-page input[type="checkbox"] + label::before,
body.immigration-page input[type="checkbox"] + label::after,
body.career-page input[type="checkbox"] + label::before,
body.career-page input[type="checkbox"] + label::after {
  content: none !important;
}

/* ---------- CARD STYLE LABEL ---------- */

body.education-page input[type="checkbox"] + label,
body.immigration-page input[type="checkbox"] + label,
body.career-page input[type="checkbox"] + label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 80px;
  line-height: 1.4;
}

/* ---------- SUBTLE HOVER ---------- */

body.education-page input[type="checkbox"] + label:hover,
body.immigration-page input[type="checkbox"] + label:hover,
body.career-page input[type="checkbox"] + label:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ---------- SELECTED STATE ---------- */

body.education-page input[type="checkbox"]:checked + label,
body.immigration-page input[type="checkbox"]:checked + label,
body.career-page input[type="checkbox"]:checked + label {
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.06);
}

/* ---------- FLOATING CHECKMARK ---------- */

body.education-page input[type="checkbox"]:checked + label::after,
body.immigration-page input[type="checkbox"]:checked + label::after,
body.career-page input[type="checkbox"]:checked + label::after {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--accent-color);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop 0.2s ease;
}

/* ---------- CHECKMARK POP ANIMATION ---------- */

@keyframes checkPop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =====================================================
   APPLICATION SUBMIT BUTTON – PAGE MATCHING COLORS
===================================================== */

/* ---------- Base Button Style (All 3 Pages) ---------- */

body.education-page button[type="submit"],
body.immigration-page button[type="submit"],
body.career-page button[type="submit"] {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 50px auto 0;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

/* =====================================================
   APPLICATION FORM GROUP STRUCTURE IMPROVEMENT
===================================================== */

.multi-step-form .form-group {
  margin-bottom: 24px;
}

.multi-step-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Ensure inputs visually match each other */
.multi-step-form input[type="text"],
.multi-step-form input[type="email"],
.multi-step-form input[type="file"],
.multi-step-form select,
.multi-step-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  transition: all 0.2s ease;
  font-size: 15px;
}

/* Subtle focus refinement */
.multi-step-form input:focus,
.multi-step-form select:focus,
.multi-step-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

/* =========================================
  Fix “Other Country” Floating Effect
========================================= */
.other-country-group input {
  background: rgba(255,255,255,0.02);
}

/* ---------- EDUCATION PAGE COLOR ---------- */

body.education-page button[type="submit"] {
  background: #e44c65;
  color: #fff;
}

body.education-page button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(39, 40, 51, 0.45);
}


/* ---------- IMMIGRATION PAGE COLOR ---------- */

body.immigration-page button[type="submit"] {
  background: #5480f1; 
  color: #fff;
}

body.immigration-page button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(39, 40, 51, 0.45);
}


/* ---------- CAREER PAGE COLOR ---------- */

body.career-page button[type="submit"] {
  background: #39c088; 
  color: #fff;
}

body.career-page button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(39, 40, 51, 0.45);
}

/* ===== Legal Page Styling ===== */

.legal-page #content {
    max-width: 850px;
    margin: 0 auto;
}

.legal-page h2 {
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 1.6em;
    font-weight: 600;
}

.legal-page h3 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    font-size: 0.95em;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1.5em;
}

.legal-page .section-block {
    margin-bottom: 3em;
}

/* LEGAL PAGE ACCENT OVERRIDE */
body.legal-page header.major:after {
    background: none;
    border-top: 4px solid #1f3fa6;
}


/* ===================================== */
/* Login Sections                         */
/* ===================================== */

body.login-page #client-login header.major:after,
body.login-page #partner-login header.major:after {
    background: none;
    border-top: 3px solid #1f3fa6;
}

#partner-login .container,
#client-login .container {
    max-width: 720px;
}

#partner-login label[for="remember-partner"],
#client-login label[for="remember-client"] {
    white-space: nowrap;
}

#partner-login.wrapper,
#client-login.wrapper {
    padding: 5em 0 !important;
}

#partner-login .container,
#client-login .container {
    max-width: 520px;
margin: 0 auto;
}

body.login-page section#partner-login,
body.login-page section#client-login {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    padding: 5em 0 !important;
}

/* ===================================== */
/* Login Sections – Force Button Control */
/* ===================================== */

.wrapper.style2#client-login input[type="submit"].primary,
.wrapper.style2#partner-login input[type="submit"].primary {
  background-color: #ffffff !important;
  color: #16307d !important;
  border: 2px solid #ffffff !important;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

/* Hover */
.wrapper.style2#client-login input[type="submit"].primary:hover,
.wrapper.style2#partner-login input[type="submit"].primary:hover {
  background-color: rgba(255,255,255,0.85) !important;
  color: #1f3fa6 !important;
}

/* Active */
.wrapper.style2#client-login input[type="submit"].primary:active,
.wrapper.style2#partner-login input[type="submit"].primary:active {
  background-color: #1f3fa6 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  transform: translateY(1px);
}

/* ===================================== */
/* Login Sections – Checkbox Corporate   */
/* ===================================== */

.wrapper.style2#client-login input[type="checkbox"] + label:before,
.wrapper.style2#partner-login input[type="checkbox"] + label:before {
  border-color: #ffffff !important;
}

.wrapper.style2#client-login input[type="checkbox"]:checked + label:before,
.wrapper.style2#partner-login input[type="checkbox"]:checked + label:before {
  background-color: #1f3fa6 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.wrapper.style2#client-login input[type="checkbox"]:focus + label:before,
.wrapper.style2#partner-login input[type="checkbox"]:focus + label:before {
  box-shadow: none !important;
}

/* ===================================== */
/* Login Sections – Links Styling        */
/* ===================================== */

#client-login a,
#client-login a:hover,
#client-login a:focus,
#client-login a:active,
#partner-login a,
#partner-login a:hover,
#partner-login a:focus,
#partner-login a:active {
    color: #ffffff !important;
    text-decoration: underline;
}

/* ===================================== */
/* Login Sections – Force Corporate Blue */
/* ===================================== */

.wrapper.style2#client-login,
.wrapper.style2#partner-login {
    background: #1f3fa6 !important;
    background-image: none !important;
}

/* Center both sections */
#client-login,
#partner-login {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0;
}

/**** LOGIN PAGE ****/

/* Match same layout behavior as section#five */
section#client-login.wrapper.style2.special,
section#partner-login.wrapper.style2.special {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: flex-start; 
}

/* Container same width logic */
section#client-login .container,
section#partner-login .container {
    width: 100%;
    max-width: 475px;
    margin: 0 auto;
}

/* Glass form panel (same as #five) */
section#client-login form,
section#partner-login form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5em 2em;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

/**** LOGIN PAGE HEADER MAJOR AFTER  *****/
body.login-page {
    --accent-color: #1f3fa6;
}

/* LOGIN PAGE ACCENT OVERRIDE */
body.login-page header.major:after {
  content: "";
  display: block;
  width: 60%;
  max-width: 700px;
  height: 3px;
  margin: 1.2em auto 0 auto;
  background-color: #1f3fa6 !important;
}

/* ==========================================
   LOGIN PAGES – MOBILE OPTIMIZATION
   Only affects devices <= 768px
========================================== */
@media screen and (max-width: 768px) {

  /* Reduce overall padding so form is visible immediately */
  #client-login.wrapper.style2.special,
  #partner-login.wrapper.style2.special {
    padding: 2rem 1rem !important;
    align-items: flex-start !important;
    min-height: auto !important;
    height: auto !important;
  }

  /* Center container and reduce width */
  #client-login .container,
  #partner-login .container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }

  /* Form adjustments */
  #client-login form,
  #partner-login form {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.5rem !important;
    box-sizing: border-box;
  }

  /* Inputs full width */
  #client-login input[type="text"],
  #client-login input[type="email"],
  #client-login input[type="password"],
  #partner-login input[type="text"],
  #partner-login input[type="email"],
  #partner-login input[type="password"] {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  /* Checkbox tick spacing */
  #client-login input[type="checkbox"],
  #partner-login input[type="checkbox"] {
    margin: 0;
  }

  /* Submit button full width */
  #client-login input[type="submit"].primary,
  #partner-login input[type="submit"].primary {
    width: 100% !important;
    font-size: 1rem;
    padding: 0.8rem 0 !important;
    box-sizing: border-box;
  }

  /* Header spacing smaller */
  body.login-page header.major {
    padding: 1rem 0 0.5rem 0 !important;
  }

  body.login-page header.major:after {
    width: 80% !important;
    margin: 0.8em auto 1em auto !important;
  }

  /* 1️⃣ Button text perfectly centered */
  #client-login input[type="submit"].primary,
  #partner-login input[type="submit"].primary {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    line-height: normal !important;
    padding: 0.8rem 0 !important;
  }

  /* 2️⃣ Partner login – stack checkbox & label to prevent overlap */
  #partner-login label[for="remember-partner"] {
    display: flex !important;
    flex-direction: column !important; /* stack checkbox & text */
    align-items: flex-start;
    gap: 0.2rem;
    white-space: normal !important;
  }

  #partner-login input[type="checkbox"] {
    margin: 0; /* remove extra margin */
  }

  #partner-login .forgot-password,
  #partner-login .partner-support {
    display: block;
    margin-top: 0.3rem;
    text-align: left;
  }

  /* 3️⃣ Client login – ensure checkbox label spacing is clean */
  #client-login label[for="remember-client"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0.2rem;
  }

  /* 4️⃣ Optional: smaller gap between checkbox and submit button */
  #client-login input[type="checkbox"] + label,
  #partner-login input[type="checkbox"] + label {
    margin-bottom: 0.5rem;
  }

}


/**** PARTNER US PAGE HEADER MAJOR AFTER  *****/
body.partner-us {
    --accent-color: #1f3fa6;
}

/* PARTNER US PAGE ACCENT OVERRIDE */
body.partner-us header.major:after {
  content: "";
  display: block;
  width: 60%;
  max-width: 700px;
  height: 3px;
  margin: 1.2em auto 0 auto;
  background-color: #1f3fa6 !important;
}

/**** ABOUT US PAGE HEADER MAJOR AFTER  *****/
body.about-us {
    --accent-color: #1f3fa6;
}

/* ABOUT US PAGE ACCENT OVERRIDE */
body.about-us header.major:after {
  content: "";
  display: block;
  width: 60%;
  max-width: 700px;
  height: 3px;
  margin: 1.2em auto 0 auto;
  background-color: #1f3fa6 !important;
}

/* ===================================== */
/* ABOUT PAGE CTA – MOBILE FIX */
/* ===================================== */

.process-cta {
    text-align: center;
    margin-top: 40px;
}

.process-cta .button {
    display: inline-block;
}

@media screen and (max-width: 980px) {

    .process-cta .button {
        display: block;
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        white-space: normal;     /* allow clean wrapping */
        word-break: keep-all;    /* prevent ugly letter breaks */
    }

    .process-cta .cta-note {
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
    }

}

/**** STORIES PAGE HEADER MAJOR AFTER  *****/
body.success-stories {
    --accent-color: #1f3fa6;
}

/* STORIES PAGE ACCENT OVERRIDE */
body.success-stories header.major:after {
  content: "";
  display: block;
  width: 60%;
  max-width: 700px;
  height: 3px;
  margin: 1.2em auto 0 auto;
  background-color: #1f3fa6 !important;
}

/******* CONSENT FOR APPLICATION *******/
.consent-toggle {
  display: inline-flex;
  align-items: baseline;
justify-content: center !important;
  gap: 12px;
  margin: 25px auto;
}

/* Smaller consent text */
.consent-text {
  font-size: 14px;
  color: #ffffff; /* adjust if needed */
margin: 0;
display: inline-block;
}

/* Corporate blue always */
.privacy-link {
  color: #1f3fa6;  /* corporate blue */
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
vertical-align: middle;
  transform: translateY(8px);
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider background */
.slider {
  position: absolute;
  inset: 0;
  background-color: #ccc;
  border-radius: 22px;
  transition: 0.3s;
}

/* Circle */
.slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background-color: #272833;
  border-radius: 50%;
  transition: 0.3s;
}

/* When checked */
.switch input:checked + .slider {
  background-color: #1f3fa6; /* change to your brand color */
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}


/* =====================================================
   CONSENT TOGGLE ALIGNMENT FIX
===================================================== */

.consent-toggle {
  display: flex;
  align-items: center;          /* vertical alignment fix */
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Text block */
.consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

/* Make link cleaner */
.consent-text .privacy-link {
  font-weight: 600;
  text-decoration: none;
}

.consent-text .privacy-link:hover {
  text-decoration: underline;
}

/* Switch wrapper alignment */
.consent-toggle .switch {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Error message spacing */
.consent-error {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .consent-toggle {
    padding: 22px 28px;
  }
}

/****** PARTNER INFO HTML DESIGN ******/
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-block {
  padding: 10px 0;
  background: rgba(255,255,255,0.02);
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.title-accent {
  width: 50px;
  height: 3px;
  background-color: #1f3fa6; /* your blue */
  margin-bottom: 24px;
}

.partner-us footer.major {
  padding: 80px 0 100px 0;
  text-align: center;
  background: rgba(255,255,255,0.02);
}

.partner-us footer.major .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-text {
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}


/**** LANGUAGE SWTICH *****/
.lang-switch {
	margin-right: 15px;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}

.lang-switch a {
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.lang-switch a:hover {
	opacity: 1;
}

.active-lang {
	font-weight: 550;
	opacity: 1;
	cursor: default;
}

/**** LANGUAGE WRITING DIRECTION *****/
html[dir="rtl"] {
	direction: rtl;
	text-align: right;
}

/* RTL Header Fix */
html[dir="rtl"] #header div {
	left: auto;
	right: 1.25em;
}

html[dir="rtl"] #header nav {
	right: auto;
	left: 1em;
}

html[dir="rtl"] #header nav ul li {
	margin-left: 0;
	margin-right: 1em;
}


/****** NAV LAYOUT ******/
#nav {
    display: flex;
    justify-content: space-between; /* breadcrumb left, language right */
    align-items: center;
    padding: 10px 20px; /* optional spacing inside nav */
}


/****** BREADCRUMB ******/
.breadcrumb {
    font-size: 0.9rem;
}

/**** HOME BUTTON GREY COLOR ****/
#logo a {
    color: rgba(255, 255, 255, 0.75);
    border-bottom: none;
}


/***** ONE TWO THREE BUTTON ALIGNMENT ****/
#one .actions,
#two .actions,
#three .actions {
    display: flex;
    justify-content: center;
}


/****** SECTION FOUR – EUROPEAN CORPORATE STYLE ******/

/* Typography */
#four h3 {
    min-height: 4.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#four p {
    text-align: left;              /* remove justify */
    line-height: 1.75;

}

/* Controlled column spacing */
#four .row {
    margin-top: 3rem;
}

#four .row > section {
    padding: 2.5rem 2rem;
}

/* Refined icon style */
#four .icon.major {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Better vertical rhythm */
#four header.major {
    margin-bottom: 4rem;
}


/* ================================= */
/* SECTION TITLE ACCENT              */
/* ================================= */

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--card-accent);
  border-radius: 2px;
}


/*** IMAGE ON SERVICE PAGES ***/
.image-break img {
  width: 100%;
  border-radius: 12px;
  margin: 3rem 0;
}

/* Education page image spacing control */
.education-page .image-break {
  margin: 0.25rem 0 0.5rem 0; /* fully controlled */
}

.education-page .image-break img {
  width: 100%;
  border-radius: 10px;
  display: block;
}


/*** BANNER WIDTH ******/
#banner .content {
    max-width: 100%;
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
}


/*** FORM STUDY OPTIONAL COUNTRY PREF ***/
.other-country-group {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.other-country-group.active {
  max-height: 100px; /* enough to fit input */
  opacity: 1;
  margin-top: 10px;
}


/*** THANK YOU PAGE ****/
.thank-you-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 30px;
}

.thank-you-box h1 {
  margin-bottom: 20px;
}

.thank-you-box .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.thank-you-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.85;
}

.contact-line {
  margin-top: 30px;
  font-weight: 500;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #4CAF50;
}

.thank-you-page header.major:after {
  background: #1f3fa6 !important;
}

.thank-you-page .corporate-btn {
  background-color: #1f3fa6;
  border-color: #1f3fa6;
  color: #ffffff !important;
}

.thank-you-page .actions.stacked {
  text-align: center;
}

.thank-you-page .return-text {
  margin-bottom: 20px;
}


/*** MOBILE ALIGNMENT ****/
@media screen and (max-width: 736px) {

    .row {
        margin-left: 0 !important;
    }

    .row > * {
        padding-left: 0 !important;
    }

    .container {
        padding-left: 1em;
        padding-right: 1em;
    }

}

/* ==========================================
   MOBILE FIX — DOES NOT TOUCH DESKTOP BANNER
========================================== */

@media screen and (max-width: 768px) {

    #banner {
        height: auto;
        min-height: 100svh; /* better than 100vh on mobile */
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #banner .content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #banner .content img {
        max-width: 260px;
        margin-top: 1rem;
    }

    #banner h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    #banner h3 {
        font-size: 1rem;
    }

    #banner p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    #banner .goto-next {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.5rem;
    }

}

@media screen and (max-width: 768px) {

  /* Reduce top space inside banner */
  #banner {
    padding-top: 2rem !important;   /* was 4rem */
  }

  /* Remove extra vertical centering effect */
  #banner .content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Move logo higher */
  #banner .content img {
    margin-top: 0 !important;
  }

  /* Center the CTA button properly */
  #banner .process-cta {
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-top: 1.5rem;
  }

  /* Perfectly center goto-next arrow */
  #banner .goto-next {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    bottom: 1.5rem;
  }

}

/*****************************************
 SUCCESS STORIES – FULLY FIXED VERSION
 Independent color system per service
******************************************/

/* =========================
   SERVICE COLORS
========================= */

:root {
  --study-accent: #e44c65;
  --immigration-accent: #5480f1;
  --career-accent: #39c088;
}


/* =========================
   TABS
========================= */

.tabs-container {
  margin-top: 40px;
  text-align: center;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 4px;
  cursor: pointer;
  color: #aaa;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  color: #fff;
}

/* Underline base */
.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: transparent;
}

/* ACTIVE TAB COLORS */
.study-tab.active::after {
  background: var(--study-accent);
}

.immigration-tab.active::after {
  background: var(--immigration-accent);
}

.career-tab.active::after {
  background: var(--career-accent);
}


/* =========================
   TAB CONTENT
========================= */

.tab-content {
  display: none;
  margin-top: 40px;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* =========================
   STORY GRID
========================= */

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}


/* =========================
   STORY CARD
========================= */

.story-card {
  position: relative;
  background: #1f2335;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}


/* =========================
   STORY HEADER ACCENT LINE
========================= */

.story-header {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid;
}

.study-card .story-header {
  border-color: var(--study-accent);
}

.immigration-card .story-header {
  border-color: var(--immigration-accent);
}

.career-card .story-header {
  border-color: var(--career-accent);
}


/* =========================
   BUTTON COLOR FIX
========================= */

.study-btn:hover {
  color: #e44c65 !important;
  box-shadow: inset 0 0 0 1px #e44c65 !important;
  background-color: rgba(228, 76, 101, 0.08) !important;
}

.immigration-btn:hover {
  color: #5480f1 !important;
  box-shadow: inset 0 0 0 1px #5480f1 !important;
  background-color: rgba(84, 128, 241, 0.08) !important;
}


.career-btn:hover {
  color: #39c088 !important;
  box-shadow: inset 0 0 0 1px #39c088 !important;
  background-color: rgba(57, 192, 136, 0.08) !important;
}

/* =========================
   BETTER BUTTON SEPARATION
========================= */

.success-stories .actions {
  margin-top: 45px;
  padding-top: 20px;
  position: relative;
}

.success-stories .actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}


/* =========================
   MOBILE FIX
========================= */

@media screen and (max-width: 768px) {

  .tabs {
    flex-wrap: wrap;
    gap: 15px;
  }

  .tab-btn {
    font-size: 15px;
  }

  .tab-content {
    margin-top: 25px;
  }

  .story-grid {
    gap: 20px;
    margin-top: 20px;
  }

  .story-card {
    padding: 22px;
    border-radius: 14px;
  }

}


/* ==========================================
   MOBILE FIX – PROCESS SECTION ONLY
   Desktop untouched
========================================== */

@media screen and (max-width: 768px) {


/* Remove vertical timeline line */
  .process-section .timeline::before {
    display: none;
  }

  /* Remove old left padding */
  .process-section .timeline {
    padding-left: 0;
  }

  /* Clean vertical stacked layout */
  .process-section .timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* Timeline number / marker */
  .process-section .timeline-marker {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 0.6rem; /* closer to heading */
  }

  /* Content card */
  .process-section .timeline-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  /* Mobile typography */
  .process-section .timeline-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
  }

  .process-section .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Improve button width (not edge-to-edge) */
  .process-section .actions .button,
  .process-section .button {
    width: 90%;
    max-width: 320px;
    margin: 1.5rem auto 0 auto;
    display: block;
  }

}

/* =====================================================
   STUDY APPLICATION FORM CHECKBOX ONLY STEP2
===================================================== */
/* Reset checkbox styling ONLY in Academic step */
.academic-step input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  display: inline-block !important;
  width: auto;
  height: auto;
  opacity: 1;
  position: static;
  cursor: pointer;
}

/* Align checkbox nicely */
.academic-step .inline-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Restore native checkbox ONLY for certificate checkbox */
body.education-page input.normal-checkbox {
  position: static !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 16px !important;
  height: 16px !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
}

/* Remove pseudo reset impact */
body.education-page input.normal-checkbox + label::before,
body.education-page input.normal-checkbox + label::after {
  content: unset !important;
}

/* Align checkbox and text properly */
.certificate-checkbox .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Make sure checkbox behaves normally */
body.education-page input.normal-checkbox {
  position: static !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
}

/* Remove red/error styling from certificate checkbox */
body.education-page input.normal-checkbox {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

body.education-page input.normal-checkbox:focus,
body.education-page input.normal-checkbox:checked,
body.education-page input.normal-checkbox:invalid {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}


/* ===================================== */
/* NAV PANEL – FIX OVERLAPPING LINKS */
/* ===================================== */

@media screen and (max-width: 980px) {

    #navPanel .link {
        height: auto;
        line-height: 1.6em;
        padding: 0.75em 0;
        display: block;
        white-space: normal;          /* allow proper wrapping */
        word-break: break-word;       /* prevent awkward overflow */

    }

    /* Remove indentation spacing */
    #navPanel .link .indent-1,
    #navPanel .link .indent-2,
    #navPanel .link .indent-3,
    #navPanel .link .indent-4,
    #navPanel .link .indent-5 {
        display: none;
    }

}

    #navPanel .link.depth-0 {
        font-weight: 400;
        padding-top: 1em;
    }

    #navPanel .link:not(.depth-0) {
        font-size: 0.95em;
        opacity: 0.85;
    }

}

/* ===================================== */
/* STUDY INFO PAGE - PREMIUM GLASS ACCORDION */
/* ===================================== */

.study-regions-accordion {
  padding: 60px 0;
}

/* Group Container (Section Block) */
.accordion-group {
  margin-bottom: 3.5rem;
  padding: 1.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Section Headings */
.accordion-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
}

/* Accent underline */
.accordion-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e44c65, #ff7a8d);
}

/* Accordion Button */
.accordion-btn {
  cursor: pointer;
  padding: 1rem 1.2rem;
  margin: 0.4rem 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  color: #ffffff;
}

/* Glass hover effect */
.accordion-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Chevron */
.accordion-btn::after {
  content: "▼";
  position: absolute;
  right: 1.2rem;
  font-size: 0.8rem;
  color: #e44c65;
  transition: transform 0.3s ease;
}

/* Active state */
.accordion-btn.active {
  background: rgba(228, 76, 101, 0.12);
  border-color: rgba(228, 76, 101, 0.4);
}

.accordion-btn.active::after {
  transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.2rem;
  margin-top: 0.2rem;
}

/* Inner content card feel */
.accordion-content ul {
  padding: 1.2rem 0;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Subtle left accent line */
.accordion-btn.active + .accordion-content {
  border-left: 3px solid #e44c65;
  padding-left: 1rem;
}

/* ===================================== */
/* STUDY INFO MOBILE OPTIMIZATION */
/* ===================================== */

@media screen and (max-width: 768px) {

  .study-regions-accordion {
    padding: 40px 0;
  }

  .accordion-group {
    padding: 1.2rem;
    border-radius: 14px;
  }

  .accordion-heading {
    font-size: 1.15rem;
  }

  .accordion-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
  }

  .accordion-content li {
    font-size: 0.88rem;
  }

}


/* ===================================== */
/* COSTS CENTER BUTTON CLEANLY on EDUCATION PAGE*/
/* ===================================== */

/* Center single button inside .actions */
.actions {
  display: flex;
  justify-content: center;
}

.actions li {
  margin: 0;
}


/* ===================================== */
/* COOKIES BANNER                             */
/* ===================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  z-index: 9999;
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.primary {
  background: #ffffff;
  color: #000;
}

.btn.secondary {
  background: #444;
  color: #fff;
}

.btn.link {
  background: transparent;
  color: #ccc;
  text-decoration: underline;
}


/* Simple Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(20, 20, 20, 0.95);
  color: #fff;
  font-size: 14px;
  padding: 12px 20px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  padding-right: 10px;
  flex: 1 1 auto;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  cursor: pointer;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
}

.btn.primary { background-color: #1f3fa6; color: white; }
.btn.secondary { background-color: #272833; color: white; }

@media(max-width:600px){
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-buttons { margin-top: 8px; justify-content: center; }
}


/* ===================================== */
/* reCAPTCHA                             */
/* ===================================== */
.captcha-center {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}