@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,800,900&display=swap");
@import url("fontawesome-all.min.css");

/* Floating Social Media */

	.floating-social {
		position: fixed;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 999;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.social-btn {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: #ffffff;
		font-size: 20px;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}

	.social-btn:hover {
		transform: scale(1.3);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	}

	.social-btn.facebook {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	}

	.social-btn.facebook:hover {
		background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	}

	.social-btn.instagram {
		background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	}

	.social-btn.instagram:hover {
		background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
	}

	.social-btn.linkedin {
		background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	}

	.social-btn.linkedin:hover {
		background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
	}

	@media screen and (max-width: 768px) {
		.floating-social {
			left: 15px;
			gap: 15px;
		}

		.social-btn {
			width: 40px;
			height: 40px;
			font-size: 16px;
		}
	}

/*
	Big Picture by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

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 */

	@-ms-viewport {
		width: device-width;
	}

	html {
		height: 100%;
	}

	html {
		box-sizing: border-box;
	}

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

	body {
		background: #1a252f;
		height: 100%;
		min-width: 320px;
		overflow-x: hidden;
	}

/* Type */

	body, input, textarea, select {
		font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		font-weight: 400;
		font-size: 18pt;
		line-height: 1.75em;
		color: #39454b;
		letter-spacing: 0.025em;
	}

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

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

		}

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

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

		}

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

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

		}

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

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

		}

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

			body, input, textarea, select {
				font-size: 12pt;
				line-height: 1.5em;
			}

		}

	h1, h2, h3, h4, h5, h6 {
		font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		font-weight: 700;
		color: inherit;
		letter-spacing: -0.0325em;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}

	h2 {
		font-size: 2.25em;
		line-height: 1.25em;
		letter-spacing: -0.05em;
	}

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

		h2 {
			font-size: 1.5em;
		}

	}

	strong, b {
		font-weight: 900;
		color: inherit;
	}

	em, i {
		font-style: italic;
	}

	a {
		-moz-transition: color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
		color: #98c593;
	}

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

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

	hr {
		border: 0;
		border-top: solid 1px #e5e6e7;
	}

	blockquote {
		border-left: solid 0.5em #e5e6e7;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}

	p, ul, ol, dl, table {
		margin-bottom: 1em;
	}

	.normal-text {
		font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		font-weight: 400;
		font-size: 1em;
		color: #ffffff;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.3);
	}

	.tagline {
		font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
		font-weight: 300;
		font-size: 1.2em;
		color: #2c3e50;
		letter-spacing: 0.05em;
		margin-top: 1em;
		text-transform: uppercase;
		text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.5), 0 0 8px rgba(0, 0, 0, 0.2);
	}



/* Box */

	.box {
		background: #ffffff;
		color: #39454b;
		padding: 2em;
	}

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

		.box.style2 {
			padding: 3.5em 2.5em 3.5em 2.5em;
		}

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

			.box {
				padding: 1em;
			}

				.box.style2 {
					padding: 1.5em 1.25em 1.5em 1.25em;
					background-color: rgba(255, 255, 255, 0.9);
				}

		}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	.button,
	button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border: 0;
		border-radius: 2.5em;
		color: #ffffff;
		cursor: pointer;
		display: inline-block;
		height: 3.5em;
		line-height: 3.5em;
		outline: 0;
		padding: 0 2em 0 2em;
		position: relative;
		text-align: center;
		text-decoration: none;
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
		font-weight: 600;
		letter-spacing: 0.5px;
	}

		input[type="button"].down,
		input[type="submit"].down,
		input[type="reset"].down,
		.button.down,
		button.down {
			width: 5em;
			height: 5em;
			line-height: 4.5em;
			padding: 0;
			background-image: url("../images/teal-arrow.svg");
			background-position: center center;
			background-repeat: no-repeat;
			text-indent: -10em;
			overflow: hidden;
		}

			input[type="button"].down.anchored,
			input[type="submit"].down.anchored,
			input[type="reset"].down.anchored,
			.button.down.anchored,
			button.down.anchored {
				bottom: 0;
				border-bottom: 0;
				border-radius: 3em 3em 0 0;
				height: 4.5em;
				margin-left: -2.5em;
			}

		input[type="button"].anchored,
		input[type="submit"].anchored,
		input[type="reset"].anchored,
		.button.anchored,
		button.anchored {
			position: absolute;
			left: 50%;
		}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		.button:hover,
		button:hover {
			background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
			box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
			transform: translateY(-2px);
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		.button:active,
		button:active {
			background: linear-gradient(135deg, #5a3d7a 0%, #5568d3 100%);
			box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
			transform: translateY(0);
		}

		input[type="button"].style2.down,
		input[type="submit"].style2.down,
		input[type="reset"].style2.down,
		.button.style2.down,
		button.style2.down {
			background-image: url("../images/arrow.svg");
		}

	.social-btn.email {
		background-color: #C9A961;
		border: solid 2px #C9A961;
		color: #ffffff;
	}

	.social-btn.whatsapp {
		background-color: #C9A961;
		border: solid 2px #C9A961;
		color: #ffffff;
	}

	.social-btn.whatsapp:hover {
		background-color: #A68860;
		border: solid 2px #A68860;
		transform: translateY(-2px);
	}

			input[type="reset"].style2:hover,
			.button.style2:hover,
			button.style2:hover {
				background-color: #C9A961;
				color: #ffffff;
				box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
				transform: translateY(-2px);
			}

			input[type="button"].style2:active,
			input[type="submit"].style2:active,
			input[type="reset"].style2:active,
			.button.style2:active,
			button.style2:active {
				background-color: rgba(229, 230, 231, 0.375);
			}

			input[type="button"].style2.down,
			input[type="submit"].style2.down,
			input[type="reset"].style2.down,
			.button.style2.down,
			button.style2.down {
				background-image: url("../images/arrow.svg");
			}

/* Form */

	form {
		margin: 0 0 2em 0;
	}

		form > :last-child {
			margin-bottom: 0;
		}

		form > .fields {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-flex-wrap: wrap;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			width: calc(100% + 3em);
			margin: -1.5em 0 2em -1.5em;
		}

			form > .fields > .field {
				-moz-flex-grow: 0;
				-webkit-flex-grow: 0;
				-ms-flex-grow: 0;
				flex-grow: 0;
				-moz-flex-shrink: 0;
				-webkit-flex-shrink: 0;
				-ms-flex-shrink: 0;
				flex-shrink: 0;
				padding: 1.5em 0 0 1.5em;
				width: calc(100% - 1.5em);
			}

				form > .fields > .field.half {
					width: calc(50% - 0.75em);
				}

				form > .fields > .field.third {
					width: calc(100%/3 - 0.5em);
				}

				form > .fields > .field.quarter {
					width: calc(25% - 0.375em);
				}

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

			form > .fields {
				width: calc(100% + 2em);
				margin: -1em 0 2em -1em;
			}

				form > .fields > .field {
					padding: 1em 0 0 1em;
					width: calc(100% - 1em);
				}

					form > .fields > .field.half {
						width: calc(100% - 1em);
					}

					form > .fields > .field.third {
						width: calc(100% - 1em);
					}

					form > .fields > .field.quarter {
						width: calc(100% - 1em);
					}

		}

	label {
		display: block;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	select,
	textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-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;
		color: #39454b;
		display: block;
		width: 100%;
		padding: 0.65em 0.75em;
		background: none;
		border: solid 2px #e5e6e7;
		color: inherit;
		border-radius: 0.5em;
		outline: none;
	}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		input[type="tel"]:focus,
		input[type="search"]:focus,
		input[type="url"]:focus,
		select:focus,
		textarea:focus {
			border-color: #9ac8e9;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	select {
		line-height: 1.35em;
	}

	textarea {
		min-height: 8em;
	}

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

	::-webkit-input-placeholder {
		opacity: 0.375;
	}

	:-moz-placeholder {
		opacity: 0.375;
	}

	::-moz-placeholder {
		opacity: 0.375;
	}

	:-ms-input-placeholder {
		opacity: 0.375;
	}

/* Icon */

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

		.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:before {
			line-height: inherit;
		}

		.icon > .label {
			display: none;
		}

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

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

/* Image */

	.image {
		position: relative;
		display: inline-block;
	}

		.image:before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.3);
		}

		.image img {
			display: block;
			width: 100%;
		}

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

		.image.fit {
			display: block;
			width: 100%;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
		}

		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

	.logo {
		width: 200px;
		height: auto;
		display: block;
		margin: 0 auto 0.5em;
	}

/* List */

	ul.default li {
		padding-left: 0.5em;
	}

	ul.menu {
		cursor: default;
	}

		ul.menu li {
			display: inline-block;
			line-height: 1em;
			border-left: solid 1px #e5e6e7;
			padding: 0 0 0 0.5em;
			margin: 0 0 0 0.5em;
		}

			ul.menu li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

	ol.default {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol.default li {
			padding-left: 0.25em;
		}

/* 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.5rem;
						}

		}

/* Icons */

	ul.icons {
		cursor: default;
	}

		ul.icons li {
			display: inline-block;
		}

		ul.icons a {
			display: inline-block;
			width: 2em;
			height: 2em;
			line-height: 2em;
			text-align: center;
			border: 0;
		}

/* Sections/Article */

	header {
		margin-bottom: 1em;
	}

		header p {
			display: block;
			margin: 1em 0 0 0;
			padding: 0 0 0.5em 0;
		}

	footer {
		margin-top: 2em;
	}

/* Table */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tbody tr:nth-child(2n+2) {
				background: rgba(229, 230, 231, 0.5);
			}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				text-align: left;
				font-weight: 900;
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default thead {
				background: #39454b;
				color: #ffffff;
			}

			table.default tfoot {
				background: #e5e6e7;
			}

/* Poptrox */

	.poptrox-popup {
		-moz-box-sizing: content-box;
		-webkit-box-sizing: content-box;
		-ms-box-sizing: content-box;
		box-sizing: content-box;
		background: #fff;
		padding-bottom: 3em;
		box-shadow: 0 0.1em 0.15em 0 rgba(0, 0, 0, 0.15);
	}

		.poptrox-popup .loader {
			position: absolute;
			top: 50%;
			left: 50%;
			margin: -1em 0 0 -1em;
			width: 2em;
			height: 2em;
			display: block;
			font-size: 2em;
		}

			.poptrox-popup .loader:before {
				-moz-animation: spinner-rotate 0.1s infinite linear !important;
				-webkit-animation: spinner-rotate 0.1s infinite linear !important;
				-ms-animation: spinner-rotate 0.1s infinite linear !important;
				animation: spinner-rotate 0.1s infinite linear !important;
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				font-family: FontAwesome;
				font-style: normal;
				font-weight: normal;
				text-transform: none !important;
				color: #e5e6e7;
				content: '\f1ce';
				cursor: default;
				display: block;
				height: 2em;
				left: 0;
				line-height: 2em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2em;
			}

		.poptrox-popup .caption {
			position: absolute;
			bottom: 0;
			left: 0;
			background: #ffffff;
			width: 100%;
			height: 3em;
			line-height: 2.8em;
			text-align: center;
			cursor: default;
			z-index: 1;
			font-size: 0.9em;
		}

		.poptrox-popup .nav-next,
		.poptrox-popup .nav-previous {
			-moz-transition: opacity 0.2s ease-in-out;
			-webkit-transition: opacity 0.2s ease-in-out;
			-ms-transition: opacity 0.2s ease-in-out;
			transition: opacity 0.2s ease-in-out;
			position: absolute;
			top: 0;
			width: 50%;
			height: 100%;
			opacity: 0;
			cursor: pointer;
			background: rgba(0, 0, 0, 0.01);
			-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
		}

		.poptrox-popup .nav-next:before,
		.poptrox-popup .nav-previous:before {
			content: '';
			position: absolute;
			width: 96px;
			height: 64px;
			background: url("../images/poptrox-nav.svg");
			top: calc(50% - 1.5em);
			margin: -32px 0 0 0;
		}

		.poptrox-popup:hover .nav-next,
		.poptrox-popup:hover .nav-previous {
			opacity: 0.5;
		}

		.poptrox-popup:hover .nav-next:hover,
		.poptrox-popup:hover .nav-previous:hover {
			opacity: 1.0;
		}

		.poptrox-popup .nav-previous:before {
			-moz-transform: scaleX(-1);
			-webkit-transform: scaleX(-1);
			-ms-transform: scaleX(-1);
			transform: scaleX(-1);
			-ms-filter: "FlipH";
			filter: FlipH;
		}

		.poptrox-popup .nav-next {
			right: 0;
		}

			.poptrox-popup .nav-next:before {
				right: 0;
			}

		.poptrox-popup .nav-previous {
			left: 0;
		}

			.poptrox-popup .nav-previous:before {
				left: 0;
			}

		.poptrox-popup .closer {
			-moz-transition: opacity 0.2s ease-in-out;
			-webkit-transition: opacity 0.2s ease-in-out;
			-ms-transition: opacity 0.2s ease-in-out;
			transition: opacity 0.2s ease-in-out;
			position: absolute;
			top: 0;
			right: 0;
			width: 64px;
			height: 64px;
			text-indent: -9999px;
			z-index: 2;
			opacity: 0;
			-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
		}

			.poptrox-popup .closer:before {
				content: '';
				display: block;
				position: absolute;
				right: 16px;
				top: 16px;
				width: 40px;
				height: 40px;
				border-radius: 100%;
				box-shadow: inset 0 0 0 2px #fff;
				background: url("../images/poptrox-closer.svg") center center;
				color: #ffffff !important;
			}

		.poptrox-popup:hover .closer {
			opacity: 0.5;
		}

			.poptrox-popup:hover .closer:hover {
				opacity: 1.0;
			}

		body.is-touch .poptrox-popup .nav-next,
		body.is-touch .poptrox-popup .nav-previous,
		body.is-touch .poptrox-popup .closer {
			opacity: 1.0 !important;
		}

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

			.poptrox-popup .nav-next:before,
			.poptrox-popup .nav-previous:before {
				width: 48px;
				height: 32px;
				background-size: contain;
				margin: -16px 0 0 0;
			}

			.poptrox-popup .closer:before {
				right: 12px;
				top: 12px;
				width: 20px;
				height: 20px;
				box-shadow: inset 0 0 0 1px #fff;
				background-size: contain;
				opacity: 0.65;
			}

		}

/* Gallery */

	.gallery {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 45em;
		max-width: 100%;
		margin: 0 auto 2em auto;
	}

		.gallery article {
			-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;
			-moz-transform: translateX(0);
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
			width: 50%;
			position: relative;
			opacity: 1.0;
		}

			.gallery article .image {
				margin: 0;
				display: block;
			}

			.gallery article:nth-last-child(1n) {
				-moz-transition-delay: 0.05s;
				-webkit-transition-delay: 0.05s;
				-ms-transition-delay: 0.05s;
				transition-delay: 0.05s;
			}

			.gallery article:nth-last-child(2n) {
				-moz-transition-delay: 0.05s;
				-webkit-transition-delay: 0.05s;
				-ms-transition-delay: 0.05s;
				transition-delay: 0.05s;
			}

			.gallery article:nth-last-child(2n) {
				-moz-transition-delay: 0.1s;
				-webkit-transition-delay: 0.1s;
				-ms-transition-delay: 0.1s;
				transition-delay: 0.1s;
			}

			.gallery article:nth-last-child(3n) {
				-moz-transition-delay: 0.1s;
				-webkit-transition-delay: 0.1s;
				-ms-transition-delay: 0.1s;
				transition-delay: 0.1s;
			}

			.gallery article:nth-last-child(3n) {
				-moz-transition-delay: 0.15s;
				-webkit-transition-delay: 0.15s;
				-ms-transition-delay: 0.15s;
				transition-delay: 0.15s;
			}

			.gallery article:nth-last-child(4n) {
				-moz-transition-delay: 0.15s;
				-webkit-transition-delay: 0.15s;
				-ms-transition-delay: 0.15s;
				transition-delay: 0.15s;
			}

			.gallery article:nth-last-child(4n) {
				-moz-transition-delay: 0.2s;
				-webkit-transition-delay: 0.2s;
				-ms-transition-delay: 0.2s;
				transition-delay: 0.2s;
			}

			.gallery article:nth-last-child(5n) {
				-moz-transition-delay: 0.2s;
				-webkit-transition-delay: 0.2s;
				-ms-transition-delay: 0.2s;
				transition-delay: 0.2s;
			}

			.gallery article:nth-last-child(5n) {
				-moz-transition-delay: 0.25s;
				-webkit-transition-delay: 0.25s;
				-ms-transition-delay: 0.25s;
				transition-delay: 0.25s;
			}

			.gallery article:nth-last-child(6n) {
				-moz-transition-delay: 0.25s;
				-webkit-transition-delay: 0.25s;
				-ms-transition-delay: 0.25s;
				transition-delay: 0.25s;
			}

			.gallery article:nth-last-child(6n) {
				-moz-transition-delay: 0.3s;
				-webkit-transition-delay: 0.3s;
				-ms-transition-delay: 0.3s;
				transition-delay: 0.3s;
			}

			.gallery article:nth-last-child(7n) {
				-moz-transition-delay: 0.3s;
				-webkit-transition-delay: 0.3s;
				-ms-transition-delay: 0.3s;
				transition-delay: 0.3s;
			}

			.gallery article:nth-last-child(7n) {
				-moz-transition-delay: 0.35s;
				-webkit-transition-delay: 0.35s;
				-ms-transition-delay: 0.35s;
				transition-delay: 0.35s;
			}

			.gallery article:nth-last-child(8n) {
				-moz-transition-delay: 0.35s;
				-webkit-transition-delay: 0.35s;
				-ms-transition-delay: 0.35s;
				transition-delay: 0.35s;
			}

			.gallery article:nth-last-child(8n) {
				-moz-transition-delay: 0.4s;
				-webkit-transition-delay: 0.4s;
				-ms-transition-delay: 0.4s;
				transition-delay: 0.4s;
			}

			.gallery article:nth-last-child(9n) {
				-moz-transition-delay: 0.4s;
				-webkit-transition-delay: 0.4s;
				-ms-transition-delay: 0.4s;
				transition-delay: 0.4s;
			}

			.gallery article:nth-last-child(9n) {
				-moz-transition-delay: 0.45s;
				-webkit-transition-delay: 0.45s;
				-ms-transition-delay: 0.45s;
				transition-delay: 0.45s;
			}

			.gallery article:nth-last-child(10n) {
				-moz-transition-delay: 0.45s;
				-webkit-transition-delay: 0.45s;
				-ms-transition-delay: 0.45s;
				transition-delay: 0.45s;
			}

			.gallery article:nth-last-child(10n) {
				-moz-transition-delay: 0.5s;
				-webkit-transition-delay: 0.5s;
				-ms-transition-delay: 0.5s;
				transition-delay: 0.5s;
			}

			.gallery article:nth-last-child(11n) {
				-moz-transition-delay: 0.5s;
				-webkit-transition-delay: 0.5s;
				-ms-transition-delay: 0.5s;
				transition-delay: 0.5s;
			}

			.gallery article:nth-last-child(11n) {
				-moz-transition-delay: 0.55s;
				-webkit-transition-delay: 0.55s;
				-ms-transition-delay: 0.55s;
				transition-delay: 0.55s;
			}

			.gallery article:nth-last-child(12n) {
				-moz-transition-delay: 0.55s;
				-webkit-transition-delay: 0.55s;
				-ms-transition-delay: 0.55s;
				transition-delay: 0.55s;
			}

			.gallery article:nth-last-child(12n) {
				-moz-transition-delay: 0.6s;
				-webkit-transition-delay: 0.6s;
				-ms-transition-delay: 0.6s;
				transition-delay: 0.6s;
			}

			.gallery article:nth-last-child(13n) {
				-moz-transition-delay: 0.6s;
				-webkit-transition-delay: 0.6s;
				-ms-transition-delay: 0.6s;
				transition-delay: 0.6s;
			}

			.gallery article:nth-last-child(13n) {
				-moz-transition-delay: 0.65s;
				-webkit-transition-delay: 0.65s;
				-ms-transition-delay: 0.65s;
				transition-delay: 0.65s;
			}

			.gallery article:nth-last-child(14n) {
				-moz-transition-delay: 0.65s;
				-webkit-transition-delay: 0.65s;
				-ms-transition-delay: 0.65s;
				transition-delay: 0.65s;
			}

			.gallery article:nth-last-child(14n) {
				-moz-transition-delay: 0.7s;
				-webkit-transition-delay: 0.7s;
				-ms-transition-delay: 0.7s;
				transition-delay: 0.7s;
			}

			.gallery article:nth-last-child(15n) {
				-moz-transition-delay: 0.7s;
				-webkit-transition-delay: 0.7s;
				-ms-transition-delay: 0.7s;
				transition-delay: 0.7s;
			}

			.gallery article:nth-last-child(15n) {
				-moz-transition-delay: 0.75s;
				-webkit-transition-delay: 0.75s;
				-ms-transition-delay: 0.75s;
				transition-delay: 0.75s;
			}

			.gallery article:nth-last-child(16n) {
				-moz-transition-delay: 0.75s;
				-webkit-transition-delay: 0.75s;
				-ms-transition-delay: 0.75s;
				transition-delay: 0.75s;
			}

			.gallery article:nth-last-child(16n) {
				-moz-transition-delay: 0.8s;
				-webkit-transition-delay: 0.8s;
				-ms-transition-delay: 0.8s;
				transition-delay: 0.8s;
			}

			.gallery article:nth-last-child(17n) {
				-moz-transition-delay: 0.8s;
				-webkit-transition-delay: 0.8s;
				-ms-transition-delay: 0.8s;
				transition-delay: 0.8s;
			}

			.gallery article:nth-last-child(17n) {
				-moz-transition-delay: 0.85s;
				-webkit-transition-delay: 0.85s;
				-ms-transition-delay: 0.85s;
				transition-delay: 0.85s;
			}

			.gallery article:nth-last-child(18n) {
				-moz-transition-delay: 0.85s;
				-webkit-transition-delay: 0.85s;
				-ms-transition-delay: 0.85s;
				transition-delay: 0.85s;
			}

			.gallery article:nth-last-child(18n) {
				-moz-transition-delay: 0.9s;
				-webkit-transition-delay: 0.9s;
				-ms-transition-delay: 0.9s;
				transition-delay: 0.9s;
			}

			.gallery article:nth-last-child(19n) {
				-moz-transition-delay: 0.9s;
				-webkit-transition-delay: 0.9s;
				-ms-transition-delay: 0.9s;
				transition-delay: 0.9s;
			}

			.gallery article:nth-last-child(19n) {
				-moz-transition-delay: 0.95s;
				-webkit-transition-delay: 0.95s;
				-ms-transition-delay: 0.95s;
				transition-delay: 0.95s;
			}

			.gallery article:nth-last-child(20n) {
				-moz-transition-delay: 0.95s;
				-webkit-transition-delay: 0.95s;
				-ms-transition-delay: 0.95s;
				transition-delay: 0.95s;
			}

			.gallery article:nth-last-child(20n) {
				-moz-transition-delay: 1s;
				-webkit-transition-delay: 1s;
				-ms-transition-delay: 1s;
				transition-delay: 1s;
			}

			.gallery article:nth-last-child(21n) {
				-moz-transition-delay: 1s;
				-webkit-transition-delay: 1s;
				-ms-transition-delay: 1s;
				transition-delay: 1s;
			}

			.gallery article:nth-last-child(21n) {
				-moz-transition-delay: 1.05s;
				-webkit-transition-delay: 1.05s;
				-ms-transition-delay: 1.05s;
				transition-delay: 1.05s;
			}

			.gallery article:nth-last-child(22n) {
				-moz-transition-delay: 1.05s;
				-webkit-transition-delay: 1.05s;
				-ms-transition-delay: 1.05s;
				transition-delay: 1.05s;
			}

			.gallery article:nth-last-child(22n) {
				-moz-transition-delay: 1.1s;
				-webkit-transition-delay: 1.1s;
				-ms-transition-delay: 1.1s;
				transition-delay: 1.1s;
			}

			.gallery article:nth-last-child(23n) {
				-moz-transition-delay: 1.1s;
				-webkit-transition-delay: 1.1s;
				-ms-transition-delay: 1.1s;
				transition-delay: 1.1s;
			}

			.gallery article:nth-last-child(23n) {
				-moz-transition-delay: 1.15s;
				-webkit-transition-delay: 1.15s;
				-ms-transition-delay: 1.15s;
				transition-delay: 1.15s;
			}

			.gallery article:nth-last-child(24n) {
				-moz-transition-delay: 1.15s;
				-webkit-transition-delay: 1.15s;
				-ms-transition-delay: 1.15s;
				transition-delay: 1.15s;
			}

		.gallery.inactive article {
			opacity: 0;
		}

			.gallery.inactive article.from-left {
				-moz-transform: translateX(-14em);
				-webkit-transform: translateX(-14em);
				-ms-transform: translateX(-14em);
				transform: translateX(-14em);
			}

			.gallery.inactive article.from-right {
				-moz-transform: translateX(14em);
				-webkit-transform: translateX(14em);
				-ms-transform: translateX(14em);
				transform: translateX(14em);
			}

			.gallery.inactive article.from-top {
				-moz-transform: translateY(-7em);
				-webkit-transform: translateY(-7em);
				-ms-transform: translateY(-7em);
				transform: translateY(-7em);
			}

			.gallery.inactive article.from-bottom {
				-moz-transform: translateY(7em);
				-webkit-transform: translateY(7em);
				-ms-transform: translateY(7em);
				transform: translateY(7em);
			}

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

			.gallery {
				-moz-flex-wrap: nowrap;
				-webkit-flex-wrap: nowrap;
				-ms-flex-wrap: nowrap;
				flex-wrap: nowrap;
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
			}

				.gallery article {
					width: 100%;
				}

		}

/* Header */

	#header {
		position: fixed;
		z-index: 10000;
		left: 0;
		top: 0;
		width: 100%;
		background: transparent;
		height: 3em;
		line-height: 3em;
		box-shadow: none;
		transition: all 0.1s ease;
	}

	#header.scrolled {
		background: rgba(26, 37, 47, 0.8);
		backdrop-filter: blur(10px);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	}

		#header h1 {
			position: absolute;
			left: 1em;
			top: 0;
			height: 3em;
			line-height: 3em;
			cursor: default;
			color: #ffffff;
			text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
			transition: all 0.1s ease;
			z-index: 10001;
		}

			#header h1 a {
				font-size: 1.25em;
				color: inherit;
				text-decoration: none;
			}

		#header nav {
			position: absolute;
			right: 0.5em;
			top: 0;
			height: 3em;
			line-height: 3em;
		}

		#header nav ul {
			position: relative;
			margin: 0;
		}

			#header nav ul {
				margin: 0;
			}

				#header nav ul li {
					display: inline-block;
					margin-left: 0.5em;
					font-size: 0.9em;
				}

					#header nav ul li a {
						display: block;
						color: #ffffff;
						text-decoration: none;
						height: 3em;
						line-height: 3em;
						padding: 0 0.5em 0 0.5em;
						outline: 0;
						text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
						transition: all 0.2s ease;
						position: relative;
					}

					#header nav ul li a::after {
						content: '';
						position: absolute;
						bottom: 0;
						left: 50%;
						width: 0;
						height: 2px;
						background-color: #ff0000;
						transition: all 0.3s ease;
						transform: translateX(-50%);
					}

					#header nav ul li a:hover::after {
						width: 100%;
					}

				#header nav ul li a.active {
					color: #ffffff;
					font-weight: bold;
					background-color: rgba(255, 0, 0, 0.2);
					border-radius: 4px;
					text-shadow: none;

				#header h1 {
					text-align: center;
					position: relative;
					left: 0;
					top: 0;
					height: 2.5em;
					line-height: 2.5em;
				}

					#header h1 a {
						font-size: 1em;
					}

				#header nav {
					display: block;
				}

		}

	body {
		padding-top: 3em;
	}

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

			body {
				padding-top: 2.5em;
			}

		}

/* Slideshow Styles */

	.slideshow-container {
		position: relative;
		width: 100%;
		height: 100vh;
		overflow: hidden;
	}

	.slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 1s ease-in-out;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slide.active {
		opacity: 1;
		z-index: 1;
	}

	.slide-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}

	.slide .content {
		position: relative;
		z-index: 2;
		max-width: 1200px;
		padding: 0 2em;
		text-align: center;
	}

	.slideshow-dots {
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		display: flex;
		gap: 12px;
	}

	.dot {
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.5);
		cursor: pointer;
		transition: all 0.3s ease;
		border: 2px solid rgba(255, 255, 255, 0.8);
	}

	.dot.active {
		background: #C9A961;
		border-color: #C9A961;
		transform: scale(1.2);
	}

	.dot:hover {
		background: rgba(255, 255, 255, 0.8);
	}

	.slideshow-arrows {
		position: absolute;
		top: 50%;
		width: 100%;
		display: flex;
		justify-content: space-between;
		padding: 0 30px;
		transform: translateY(-50%);
		z-index: 10;
	}

	.arrow {
		background: rgba(255, 255, 255, 0.2);
		color: white;
		border: 2px solid rgba(255, 255, 255, 0.5);
		width: 50px;
		height: 50px;
		border-radius: 50%;
		font-size: 20px;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		backdrop-filter: blur(5px);
	}

	.arrow:hover {
		background: #C9A961;
		border-color: #C9A961;
		transform: scale(1.1);
	}

	@media screen and (max-width: 768px) {
		.slideshow-dots {
			bottom: 20px;
			gap: 8px;
		}

		.dot {
			width: 10px;
			height: 10px;
		}

		.slideshow-arrows {
			padding: 0 15px;
		}

		.arrow {
			width: 40px;
			height: 40px;
			font-size: 16px;
		}
	}

/* Main */

	.main {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		padding: 2em 0;
		position: relative;
		overflow-x: hidden;
		width: 100%;
		justify-content: center;
		align-items: center;
	}

		.main > .content {
			width: 100%;
			max-width: 1200px;
			margin: 0 auto;
			z-index: 2;
			padding: 0 2em;
			text-align: center;
		}

			.main > .content > :last-child {
				margin-bottom: 0;
			}

		
		.main.style1 {
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			text-align: center;
			padding: 2em 0;
			min-height: 100vh;
			display: flex;
			background: #1a252f;
		}

			.main.style1 h2 {
				font-size: 2.5em;
				line-height: 1em;
				margin: 0;
			}

			.main.style1 > .content {
				-moz-transition: opacity 0.8s ease;
				-webkit-transition: opacity 0.8s ease;
				-ms-transition: opacity 0.8s ease;
				transition: opacity 0.8s ease;
			}

			.main.style1 > .content > header {
				width: 100%;
				max-width: 1000px;
				margin: 0 auto;
				padding: 1em;
			}

			.main.style1 > .content > header > h2 {
				margin: 0;
			}

			.main.style1.inactive > .content {
				opacity: 0;
			}

		.main.style2 {
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			padding: 1.5em 0 1.5em 0;
			overflow: hidden;
			background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background.svg');
			background-size: cover;
			background-position: center;
			background-attachment: fixed;
			background-repeat: no-repeat;
		}

			.main.style2 > .content {
				-moz-transition: -moz-transform 0.8s ease;
				-webkit-transition: -webkit-transform 0.8s ease;
				-ms-transition: -ms-transform 0.8s ease;
				transition: transform 0.8s ease;
				-moz-transform: translateZ(0);
				-webkit-transform: translateZ(0);
				-ms-transform: translateZ(0);
				transform: translateZ(0);
				position: relative;
				width: 35%;
				margin: 0;
			}

			.main.style2.left {
				-moz-justify-content: -moz-flex-start;
				-webkit-justify-content: -webkit-flex-start;
				-ms-justify-content: -ms-flex-start;
				justify-content: flex-start;
			}

			.main.style2.right {
				-moz-justify-content: -moz-flex-end;
				-webkit-justify-content: -webkit-flex-end;
				-ms-justify-content: -ms-flex-end;
				justify-content: flex-end;
			}

			.main.style2.inactive.left > .content {
				-moz-transform: translateX(-100%);
				-webkit-transform: translateX(-100%);
				-ms-transform: translateX(-100%);
				transform: translateX(-100%);
			}

			.main.style2.inactive.right > .content {
				-moz-transform: translateX(100%);
				-webkit-transform: translateX(100%);
				-ms-transform: translateX(100%);
				transform: translateX(100%);
			}

		.main.style3 {
			text-align: center;
			padding: 6em 0 6em 0;
			min-height: 100vh;
			display: flex;
			align-items: center;
			justify-content: center;
		}

			.main.style3 .content > header {
				margin-bottom: 2em;
				max-width: 100%;
				width: 100%;
			}

			.main.style3.primary {
			background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/background.svg');
			background-size: cover;
			background-position: center;
			background-attachment: fixed;
			background-repeat: no-repeat;
		}

			.main.style3.primary h2 {
				color: #ffffff;
			}

			.main.style3.primary ul li {
				color: #ffffff;
			}

			.main.style3.secondary {
				background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
			}

		.main.dark {
			color: #ffffff;
		}

			.main.dark a {
				color: inherit;
			}

			.main.dark .button.style2 {
				border-color: #ffffff;
			}

				.main.dark .button.style2:hover {
					background-color: rgba(255, 255, 255, 0.125);
				}

				.main.dark .button.style2:active {
					background-color: rgba(255, 255, 255, 0.25);
				}

				.main.dark .button.style2.down {
					background-image: url("../images/dark-arrow.svg");
				}

		body.is-touch .main {
			background-attachment: scroll !important;
		}

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

			.main.style2 .content {
				width: 40%;
			}

		}

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

			.main.style2 .content {
				width: 50%;
			}

		}

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

			.main.style2 .content {
				width: 60%;
			}

		}

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

			.main > .content br {
				display: none;
			}

			.main.style1 {
				padding: 4em 15px 4em 15px;
			}

				.main.style1 h2 {
					font-size: 3em;
				}

			.main.style2 {
				padding: 6em 15px 6em 15px;
			}

				.main.style2:before, .main.style2:after {
					display: none !important;
				}

				.main.style2 .button.anchored {
					display: none;
				}

				.main.style2 .content {
					width: 100%;
					max-width: 100%;
					text-align: center;
					-moz-transform: none;
					-webkit-transform: none;
					-ms-transform: none;
					transform: none;
				}

			.main.style3 {
				padding: 1.5em 10px;
			}

		}

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

			.main > .content {
				max-width: calc(100% - 1.5em);
			}

		}

	/* Hide anchored buttons for all sections except contact */
	.main.style1 .button.anchored,
	.main.style2 .button.anchored,
	.main.style3.primary .button.anchored {
		display: none !important;
	}

/* Footer */

	#footer {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: space-between;
		-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		justify-content: space-between;
		position: relative;
		margin: 0;
		line-height: 1.1em;
		padding: 0.8em;
		background: #f5f5f5;
		color: #333333;
		font-weight: normal;
		font-size: 0.85em;
		overflow: hidden;
	}

		#footer > * {
			margin-bottom: 0;
		}

		#footer a {
			color: inherit;
		}

			#footer a:hover {
				color: #b9babb;
			}

		#footer ul.menu {
			margin: 0;
		}

			#footer ul.menu li {
				border-left-color: rgba(185, 186, 187, 0.2);
				font-size: 0.9em;
			}

		/* Footer Content Layout */
		.footer-content {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-justify-content: space-between;
			-webkit-justify-content: space-between;
			-ms-justify-content: space-between;
			justify-content: space-between;
			width: 100%;
			padding: 2em 3em;
		}

		.footer-left {
			text-align: center;
			flex: 1;
			padding: 0 1em;
		}

		.footer-center {
			text-align: center;
			flex: 1;
			padding: 0 1em;
		}

		.footer-right {
			text-align: center;
			flex: 1;
			padding: 0 1em;
		}

		.footer-center .fas,
		.footer-right .fas {
			color: #C9A961;
			margin-right: 0.3em;
			font-size: 0.9em;
		}

		.footer-line {
			display: block;
			line-height: 1.3em;
			font-weight: 600;
		}

		.small-text {
			font-size: 0.8em;
			font-weight: 400;
		}

		.footer-right .footer-line {
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}

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

			#footer {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				-moz-justify-content: center;
				-webkit-justify-content: center;
				-ms-justify-content: center;
				justify-content: center;
				line-height: 1.3em;
				text-align: center;
				padding: 1em 0.8em 1em 0.8em;
			}

				#footer > * {
					margin: 0 0 1em 0;
				}

		}

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

			#footer ul.menu li {
				border-left: none;
				display: block;
				line-height: inherit;
				margin: 0.25em 0 0 0;
				padding: 0.25em 0 0 0;
			}

				#footer ul.menu li:first-child {
					margin-top: 0;
					padding-top: 0;
				}

			.footer-content {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				gap: 1em;
			}

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

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

		}

/* Dynamic Background Styles */
	section.dynamic-bg {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}

/* Intro */

	#intro {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		padding: 4em 0;
	}

	#intro .content {
		position: relative;
		z-index: 2;
		max-width: 1200px;
		width: 100%;
		margin: 0 auto;
		padding: 0 1em;
		text-align: center;
	}

	#intro .content h4 {
		font-size: 1.5em;
		font-weight: 300;
		margin-bottom: 1em;
	}

	#intro .content h1 {
		font-size: 3.5em;
		font-weight: 700;
		margin-bottom: 1.5em;
		line-height: 1.2em;
		white-space: nowrap;
		text-align: left;
		margin-left: -50px;
	}

	#intro .content p {
		font-size: 1.2em;
		line-height: 1.6em;
		margin-bottom: 1em;
	}

	@media screen and (max-width: 736px) {
		#intro .content h1 {
			font-size: 2em;
		}
		
		#intro .content .logo {
			width: 120px;
		}
		
		#intro .content {
			padding: 2em 1em;
		}
	}

/* One */

	#one {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		padding: 4em 0;
	}


	#one .content {
		position: relative;
		z-index: 2;
	}

/* Two */

	#two {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		padding: 4em 0;
	}


	#two .content {
		position: relative;
		z-index: 2;
	}

/* Work/Services */

	#work {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		padding: 4em 0;
	}

	#work .content {
		position: relative;
		z-index: 2;
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	}

	#work h2 {
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
		font-weight: 700;
	}

	#work ul {
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
		list-style: none;
		padding-left: 0;
	}

	#work li {
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
		padding: 0.5em 0;
		font-size: 1.1em;
	}

/* Three/Process */

	#three {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		padding: 4em 0;
	}


	#three .content {
		position: relative;
		z-index: 2;
	}

/* Contact */

	#contact {
		position: relative;
		overflow: hidden;
		padding-bottom: 0;
	}


	#contact .content {
		position: relative;
		z-index: 2;
	}

		#contact .box {
			-moz-transition: -moz-transform 1s ease;
			-webkit-transition: -webkit-transform 1s ease;
			-ms-transition: -ms-transform 1s ease;
			transition: transform 1s ease;
			background: rgba(26, 37, 47, 0.8);
			border-radius: 0.5em;
			border: solid 2px rgba(201, 169, 97, 0.3);
			box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.1), inset 0 0 0.25em 0 rgba(201, 169, 97, 0.1);
			padding: 2em;
			position: relative;
		}

		#contact.inactive .box {
			-moz-transform: translateY(100%);
			-webkit-transform: translateY(100%);
			-ms-transform: translateY(100%);
			transform: translateY(100%);
		}

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

			#contact .box {
				padding: 1.5em 1.5em 2em 1.5em;
			}

		}

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

			#contact .box {
				padding: 1em 1em 2em 1em;
			}

		}

	/* Enhanced Contact Form Styling */
	#contact form .fields {
		display: flex;
		flex-wrap: wrap;
		gap: 1em;
	}

	#contact form .field {
		flex: 1 1 100%;
		margin-bottom: 0.5em;
	}

	#contact form .field.half {
		flex: 1 1 calc(50% - 0.5em);
	}

	#contact form label {
		display: block;
		margin-bottom: 0.3em;
		color: #ffffff;
		font-weight: 600;
		font-size: 0.85em;
	}

	#contact form input[type="text"],
	#contact form input[type="email"],
	#contact form input[type="tel"],
	#contact form input[type="date"],
	#contact form input[type="time"],
	#contact form select,
	#contact form textarea {
		width: 100%;
		padding: 0.6em;
		border: 1px solid rgba(255, 255, 255, 0.3);
		background: rgba(255, 255, 255, 0.1);
		color: #ffffff;
		border-radius: 5px;
		font-family: inherit;
		font-size: 0.9em;
		transition: all 0.3s ease;
	}

	#contact form input[type="text"]:focus,
	#contact form input[type="email"]:focus,
	#contact form input[type="tel"]:focus,
	#contact form input[type="date"]:focus,
	#contact form input[type="time"]:focus,
	#contact form select:focus,
	#contact form textarea:focus {
		outline: none;
		border-color: #C9A961;
		background: rgba(255, 255, 255, 0.15);
		box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.2);
	}

	#contact form select {
		cursor: pointer;
		appearance: none;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
		background-repeat: no-repeat;
		background-position: right 0.7em center;
		background-size: 1em;
		padding-right: 2.5em;
	}

	#contact form select option {
		background: #2c3e50;
		color: #ffffff;
		padding: 0.5em;
	}

	#contact form textarea {
		resize: vertical;
		min-height: 60px;
		line-height: 1.3;
	}

	#contact form .actions.special {
		justify-content: center;
		margin-top: 1em;
	}

	#contact form .actions.special li {
		margin: 0;
	}

	#contact form input[type="submit"] {
		background: #C9A961 !important;
		color: #ffffff !important;
		border: none !important;
		padding: 0.8em 1.5em !important;
		border-radius: 5px !important;
		font-weight: 600 !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		font-size: 0.9em !important;
		min-width: 120px !important;
		height: auto !important;
		line-height: 1.2 !important;
		text-align: center !important;
		text-transform: none !important;
		letter-spacing: normal !important;
		box-shadow: none !important;
	}

	#contact form input[type="submit"]:hover {
		background: #A68860 !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3) !important;
	}

	#contact form input[type="submit"]:active {
		transform: translateY(0) !important;
	}

	#contact form input[type="submit"]:focus {
		outline: none !important;
		box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.5) !important;
	}

	#contact form input[required]:invalid {
		border-color: #e74c3c;
	}

	#contact form input[required]:valid {
		border-color: #27ae60;
	}

	#contact form .field[style*="display: none"] {
		display: none !important;
	}

	#contact form .field[style*="display: block"] {
		display: block !important;
		animation: fadeIn 0.3s ease-in-out;
	}

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

	/* Service Grid Styling */
	.service-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5em;
		margin-top: 1em;
	}

	.service-item {
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(201, 169, 97, 0.2);
		border-radius: 8px;
		padding: 1.5em;
		transition: all 0.3s ease;
	}

	.service-item:hover {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(201, 169, 97, 0.4);
		transform: translateY(-2px);
	}

	.service-item h3 {
		color: #C9A961;
		font-size: 1.1em;
		margin-bottom: 0.6em;
		font-weight: 600;
	}

	.service-item p {
		color: #ffffff;
		line-height: 1.4;
		font-size: 0.85em;
		margin: 0;
	}

	/* Process Steps Styling */
	.process-steps {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5em;
		margin-top: 1em;
	}

	.step {
		background: rgba(255, 255, 255, 0.05);
		border-left: 3px solid #C9A961;
		border-radius: 0 8px 8px 0;
		padding: 1.5em;
		transition: all 0.3s ease;
	}

	.step:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: translateX(5px);
	}

	.step-icon {
		background: rgba(201, 169, 97, 0.1);
		border: 2px solid rgba(201, 169, 97, 0.3);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: all 0.3s ease;
		margin-bottom: 1em;
	}

	.step:hover .step-icon {
		background: rgba(201, 169, 97, 0.2);
		border-color: #C9A961;
		transform: scale(1.1);
	}

	.step-icon i {
		color: #C9A961;
		font-size: 1.2em;
	}

	.step-content {
		flex: 1;
	}

	.step h3 {
		color: #C9A961;
		font-size: 1em;
		margin-bottom: 0.4em;
		font-weight: 600;
	}

	.step p {
		color: #ffffff;
		line-height: 1.4;
		font-size: 0.85em;
		margin: 0;
	}

	/* Responsive Design for Service Grid */
	@media screen and (max-width: 768px) {
		.service-grid {
			grid-template-columns: 1fr;
			gap: 1em;
		}

		.service-item {
			padding: 1em;
		}

		.process-steps {
			gap: 1em;
		}

		.step {
			padding: 1em;
		}
	}

	/* Section Alignment for Instant Navigation */
	section {
		position: relative;
		scroll-margin-top: 0;
	}

	/* Magical Animations for Awe-Inspiring Experience */

	/* Intro Section - Complete Sequential Animation */
	#intro .logo {
		opacity: 0;
		animation: logoZoomIn 1.5s ease-out 0.5s forwards;
	}

	#intro h4 {
		opacity: 0;
		overflow: hidden;
		white-space: nowrap;
		width: 0;
		animation: typingReveal 3s linear 2s forwards, removeCursor 0.1s 4.9s forwards;
		border-right: 3px solid #ffffff;
		text-align: center;
		display: inline-block;
		max-width: fit-content;
		padding-right: 0.1em;
	}

	#intro h1 {
		opacity: 0;
		animation: titleFadeIn 2s ease-out 5.5s forwards;
	}

	#intro .normal-text {
		opacity: 0;
		animation: textFadeIn 1.5s ease-out 7.5s forwards;
	}

	#intro .normal-text:nth-child(2) {
		animation-delay: 8s;
	}

	/* About Section - Elegant Reveal */
	#one .service-item {
		opacity: 0;
		animation: elegantReveal 1s ease-out forwards;
	}

	#one .service-item:nth-child(1) { animation-delay: 0.2s; }
	#one .service-item:nth-child(2) { animation-delay: 0.4s; }
	#one .service-item:nth-child(3) { animation-delay: 0.6s; }
	#one .service-item:nth-child(4) { animation-delay: 0.8s; }

	/* Services Section - Dynamic Grid */
	#work .service-item {
		opacity: 0;
		transform: scale(0.8) rotateY(90deg);
		animation: dynamicReveal 1.2s ease-out forwards;
	}

	#work .service-item:nth-child(1) { animation-delay: 0.1s; }
	#work .service-item:nth-child(2) { animation-delay: 0.3s; }
	#work .service-item:nth-child(3) { animation-delay: 0.5s; }
	#work .service-item:nth-child(4) { animation-delay: 0.7s; }

	/* Philosophy Section - Ethereal Flow */
	#two .service-item {
		opacity: 0;
		transform: translateY(50px);
		animation: etherealFlow 1.5s ease-out forwards;
	}

	#two .service-item:nth-child(1) { animation-delay: 0.3s; }
	#two .service-item:nth-child(2) { animation-delay: 0.6s; }

	/* Process Section - Sequential Magic */
	#three .service-item {
		opacity: 0;
		transform: translateX(-100px) scale(0.9);
		animation: sequentialMagic 1.3s ease-out forwards;
	}

	#three .service-item:nth-child(1) { animation-delay: 0.1s; }
	#three .service-item:nth-child(2) { animation-delay: 0.3s; }
	#three .service-item:nth-child(3) { animation-delay: 0.5s; }
	#three .service-item:nth-child(4) { animation-delay: 0.7s; }

	/* Contact Section - Grand Finale */
	#contact .box {
		animation: grandEntrance 1.5s ease-out;
	}

	#contact h2 {
		color: #ffffff;
		animation: titleShimmer 2s ease-out 0.5s both;
	}

	#contact .consultation-text {
		color: #C9A961;
		font-size: 1.2em;
		font-weight: 500;
		font-style: italic;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
		animation: textGlow 2s ease-out 0.8s both;
		margin: 0.5em 0;
	}

	#contact form {
		animation: formFadeIn 1.5s ease-out 0.8s both;
	}

	/* Animation Keyframes */
	@keyframes logoZoomIn {
		0% {
			opacity: 0;
			transform: scale(0.1);
			filter: blur(10px);
		}
		50% {
			opacity: 0.8;
			transform: scale(1.2);
			filter: blur(2px);
		}
		100% {
			opacity: 1;
			transform: scale(1);
			filter: blur(0);
		}
	}

	@keyframes typingReveal {
		0% {
			opacity: 1;
			width: 0;
		}
		100% {
			opacity: 1;
			width: calc(100% + 0.1em);
		}
	}

	@keyframes removeCursor {
		0% {
			border-right: 3px solid #ffffff;
		}
		100% {
			border-right: 3px solid transparent;
		}
	}

	@keyframes titleFadeIn {
		0% {
			opacity: 0;
			transform: translateY(30px);
			filter: blur(5px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	@keyframes textFadeIn {
		0% {
			opacity: 0;
			transform: translateY(20px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes titleFadeIn {
		0% {
			opacity: 0;
			transform: translateY(30px);
			filter: blur(5px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
			filter: blur(0);
		}
	}

	@keyframes magicalEntrance {
		0% {
			opacity: 0;
			transform: scale(0.3) rotate(180deg);
			filter: blur(20px);
		}
		50% {
			opacity: 0.8;
			transform: scale(1.1) rotate(90deg);
			filter: blur(5px);
		}
		100% {
			opacity: 1;
			transform: scale(1) rotate(0deg);
			filter: blur(0);
		}
	}

	@keyframes logoFloat {
		0%, 100% {
			transform: translateY(0px);
		}
		50% {
			transform: translateY(-10px);
		}
	}

	@keyframes textGlow {
		0% {
			opacity: 0;
			text-shadow: 0 0 0 transparent;
		}
		50% {
			opacity: 0.8;
			text-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
		}
		100% {
			opacity: 1;
			text-shadow: 0 0 0 transparent;
		}
	}

	@keyframes slideInFade {
		0% {
			opacity: 0;
			transform: translateY(30px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes elegantReveal {
		0% {
			opacity: 0;
			transform: translateY(40px) scale(0.9);
		}
		100% {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	@keyframes dynamicReveal {
		0% {
			opacity: 0;
			transform: scale(0.8) rotateY(90deg);
		}
		100% {
			opacity: 1;
			transform: scale(1) rotateY(0deg);
		}
	}

	@keyframes etherealFlow {
		0% {
			opacity: 0;
			transform: translateY(50px) scale(0.95);
		}
		100% {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	@keyframes sequentialMagic {
		0% {
			opacity: 0;
			transform: translateX(-100px) scale(0.9);
		}
		100% {
			opacity: 1;
			transform: translateX(0) scale(1);
		}
	}

	@keyframes grandEntrance {
		0% {
			opacity: 0;
			transform: scale(0.5) rotateY(180deg);
		}
		100% {
			opacity: 1;
			transform: scale(1) rotateY(0deg);
		}
	}

	@keyframes titleShimmer {
		0% {
			opacity: 0;
			background-position: -200% center;
		}
		100% {
			opacity: 1;
			background-position: 200% center;
		}
	}

	@keyframes formFadeIn {
		0% {
			opacity: 0;
			transform: translateY(20px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Service Icon Styling */
	.service-icon {
		width: 60px;
		height: 60px;
		background: rgba(201, 169, 97, 0.2);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5em auto;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		border: 2px solid rgba(201, 169, 97, 0.3);
	}

	.service-icon i {
		font-size: 24px;
		color: #C9A961;
		transition: all 0.4s ease;
	}

	/* Hover Magic Effects */
	.service-item {
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.service-item:hover {
		transform: translateY(-10px) scale(1.02);
		box-shadow: 0 20px 40px rgba(201, 169, 97, 0.3);
		background: rgba(255, 255, 255, 0.15);
	}

	.service-item:hover .service-icon {
		transform: scale(1.1) rotate(5deg);
		background: rgba(201, 169, 97, 0.3);
		border-color: #C9A961;
		box-shadow: 0 10px 20px rgba(201, 169, 97, 0.4);
	}

	.service-item:hover .service-icon i {
		color: #fff;
		transform: scale(1.2);
	}

	.service-item:hover h3 {
		color: #fff;
		text-shadow: 0 0 20px rgba(201, 169, 97, 0.8);
	}

	/* Section Navigation Buttons */
	.section-nav {
		text-align: center;
		margin-top: 2em;
		padding-top: 1.5em;
		border-top: 1px solid rgba(201, 169, 97, 0.2);
	}

	.nav-btn {
		display: inline-block;
		padding: 0.8em 1.5em;
		background: rgba(201, 169, 97, 0.1);
		border: 2px solid rgba(201, 169, 97, 0.3);
		color: #C9A961;
		text-decoration: none;
		border-radius: 5px;
		font-weight: 600;
		font-size: 0.9em;
		transition: all 0.3s ease;
	}

	.nav-btn:hover {
		background: rgba(201, 169, 97, 0.2);
		border-color: #C9A961;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
	}

	/* Animations for new sections removed */

	/* Responsive adjustments */
	@media screen and (max-width: 768px) {
		.section-nav {
			margin-top: 1.5em;
		}

		.nav-btn {
			font-size: 0.8em;
			padding: 0.6em 1.2em;
		}
	}

	.main.style3 {
		text-align: left;
		padding: 2em 0;
		justify-content: flex-start;
		align-items: center;
	}

	.main.style3 .content {
		width: 100%;
		max-width: 1200px;
		margin: 0;
		padding: 0 1em;
		text-align: left;
	}

	/* Smooth scroll behavior */
	html {
		scroll-behavior: smooth;
	}

	/* Ensure consistent section heights */
	#one, #two, #three {
		min-height: 100vh;
		display: flex;
		align-items: center;
	}

	/* Box alignment fixes */
	.box.style2 {
		background: rgba(26, 37, 47, 0.8);
		border: 2px solid rgba(201, 169, 97, 0.3);
		border-radius: 10px;
		padding: 1.5em;
		backdrop-filter: blur(10px);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
		width: 100%;
		max-width: 100%;
		height: auto;
		max-height: 80vh;
		overflow-y: auto;
	}

	/* Content alignment within boxes */
	.box.style2 .content {
		text-align: left;
		color: #ffffff;
		width: 100%;
		height: 100%;
	}

	.box.style2 h2 {
		color: #C9A961;
		margin-bottom: 0.8em;
		font-size: 1.6em;
	}

	.box.style2 p {
		color: #ffffff;
		line-height: 1.5;
		margin-bottom: 0.8em;
		font-size: 0.95em;
	}

	.box.style2 p:last-child {
		margin-bottom: 0;
	}

	/* Animation consistency */
	.main.style3.primary {
		background: rgba(26, 37, 47, 0.8);
		backdrop-filter: blur(10px);
		border-radius: 10px;
		margin: 2em;
		padding: 3em;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	}

	.main.style3.primary h2 {
		color: #C9A961;
	}

	.main.style3.secondary {
		background: rgba(26, 37, 47, 0.8);
		backdrop-filter: blur(10px);
		border-radius: 10px;
		margin: 2em;
		padding: 3em;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	}

	.main.style3.secondary h2 {
		color: #C9A961;
	}

	/* Sub-sections styling */
	.about-sections {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5em;
		margin-top: 1em;
	}

	.about-subsection {
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(201, 169, 97, 0.2);
		border-radius: 8px;
		padding: 1.2em;
		transition: all 0.3s ease;
	}

	.about-subsection:hover {
		background: rgba(255, 255, 255, 0.1);
		border-color: rgba(201, 169, 97, 0.4);
		transform: translateY(-2px);
	}

	.about-subsection h3 {
		color: #C9A961;
		font-size: 1.1em;
		margin-bottom: 0.6em;
		font-weight: 600;
	}

	.about-subsection p {
		color: #ffffff;
		line-height: 1.5;
		font-size: 0.9em;
		margin: 0;
	}

	/* Philosophy content styling */
	.philosophy-content {
		text-align: center;
		padding: 1em 0;
	}

	.philosophy-content h3 {
		color: #C9A961;
		font-size: 1.3em;
		margin-bottom: 1em;
		font-weight: 600;
		font-style: italic;
	}

	.philosophy-content p {
		color: #ffffff;
		line-height: 1.6;
		font-size: 1em;
		margin: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	/* Responsive design for sub-sections */
	@media screen and (max-width: 768px) {
		.about-sections {
			grid-template-columns: 1fr;
			gap: 1em;
		}

		.about-subsection {
			padding: 1em;
		}

		.philosophy-content {
			padding: 0.5em 0;
		}

		.philosophy-content h3 {
			font-size: 1.1em;
		}

		.philosophy-content p {
			font-size: 0.9em;
		}

		.service-grid {
			grid-template-columns: 1fr;
			gap: 1em;
		}

		.service-item {
			padding: 1em;
		}

		.process-steps {
			grid-template-columns: 1fr;
			gap: 1em;
		}

		.step {
			padding: 1em;
		}

		.main {
			padding: 1.5em 0.5em 1.5em 0.5em;
		}

		.main > .content {
			padding: 0 1em;
		}

		.box.style2 {
			padding: 1em;
			max-height: 85vh;
		}
	}

	@media screen and (max-width: 480px) {
		.main {
			padding: 1em 0.3em 1em 0.3em;
		}

		.main > .content {
			padding: 0 0.5em;
		}

		.box.style2 {
			padding: 0.8em;
			max-height: 90vh;
		}

		.about-sections, .philosophy-sections {
			gap: 0.8em;
		}

		.service-grid {
			gap: 0.8em;
		}

		.process-steps {
			gap: 0.8em;
		}
	}

	/* Compact 2-column contact form layout */
	#contact form .fields {
		display: flex;
		flex-direction: column;
		gap: 0.8em;
	}

	#contact form .field-row {
		display: flex;
		gap: 1em;
		align-items: flex-start;
	}

	#contact form .field-row .field {
		flex: 1;
		margin-bottom: 0;
	}

	#contact form .field.full-width {
		flex: 1 1 100%;
		margin-bottom: 0;
	}

	#contact form .field-row .field,
	#contact form .field.full-width {
		margin-bottom: 0;
	}

	#contact form .field label {
		margin-bottom: 0.2em;
		font-size: 0.8em;
	}

	#contact form .field input,
	#contact form .field select,
	#contact form .field textarea {
		padding: 0.5em;
		font-size: 0.85em;
	}

	#contact form .field textarea {
		min-height: 50px;
		resize: vertical;
	}

	#contact form .field.full-width textarea {
		min-height: 60px;
	}

	/* Responsive design for 2-column layout */
	@media screen and (max-width: 768px) {
		#contact form .field-row {
			flex-direction: column;
			gap: 0.5em;
		}

		#contact form .field-row .field {
			flex: 1 1 100%;
		}

		#contact form .field {
			margin-bottom: 0.3em;
		}
	}

	@media screen and (max-width: 480px) {
		#contact form .field input,
		#contact form .field select,
		#contact form .field textarea {
			padding: 0.4em;
			font-size: 0.8em;
		}
	}

	/* Hero Section Enhancements */
	.hero-highlights {
		display: flex;
		justify-content: center;
		gap: 2em;
		margin: 2em 0;
		text-align: center;
	}

	.highlight-item {
		background: rgba(0, 0, 0, 0.3);
		border: 1px solid rgba(201, 169, 97, 0.3);
		border-radius: 8px;
		padding: 1.2em;
		max-width: 200px;
		transition: all 0.3s ease;
	}

	.highlight-item:hover {
		background: rgba(0, 0, 0, 0.5);
		border-color: rgba(201, 169, 97, 0.5);
		transform: translateY(-5px);
	}

	.highlight-item h5 {
		color: #C9A961;
		font-size: 1.1em;
		margin-bottom: 0.5em;
		font-weight: 600;
	}

	.highlight-item p {
		color: #ffffff;
		font-size: 0.85em;
		line-height: 1.4;
		margin: 0;
	}

	.hero-cta {
		text-align: center;
		margin-top: 2em;
	}

	.hero-tagline {
		color: #ffffff;
		font-size: 1.1em;
		margin-bottom: 1.5em;
		font-style: italic;
		opacity: 0.9;
	}

	.hero-buttons {
		display: flex;
		justify-content: center;
		gap: 1em;
		flex-wrap: wrap;
	}

	.hero-btn {
		display: inline-block;
		padding: 0.8em 1.5em;
		border-radius: 5px;
		text-decoration: none;
		font-weight: 600;
		font-size: 0.9em;
		transition: all 0.3s ease;
		border: 2px solid transparent;
	}

	.hero-btn.primary {
		background: #C9A961;
		color: #ffffff;
	}

	.hero-btn.primary:hover {
		background: #A68860;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
	}

	.hero-btn.secondary {
		background: transparent;
		color: #C9A961;
		border-color: #C9A961;
	}

	.hero-btn.secondary:hover {
		background: rgba(201, 169, 97, 0.1);
		transform: translateY(-2px);
	}

	/* Responsive design for hero enhancements */
	@media screen and (max-width: 768px) {
		.hero-highlights {
			flex-direction: column;
			gap: 1em;
			align-items: center;
		}

		.highlight-item {
			max-width: 250px;
		}

		.hero-buttons {
			flex-direction: column;
			align-items: center;
			gap: 0.8em;
		}

		.hero-btn {
			width: 200px;
			text-align: center;
		}
	}

	@media screen and (max-width: 480px) {
		.hero-highlights {
			margin: 1.5em 0;
		}

		.highlight-item {
			padding: 1em;
			max-width: 200px;
		}

		.highlight-item h5 {
			font-size: 1em;
		}

		.highlight-item p {
			font-size: 0.8em;
		}

		.hero-tagline {
			font-size: 1em;
		}

		.hero-btn {
			font-size: 0.85em;
			padding: 0.7em 1.2em;
		}
	}