@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");
@import url("fontawesome-all.min.css");

/*
	Miniport by HTML5 UP — customized color palette
	Unified theme: teal/slate
*/

:root {
	--color-accent: #0d9488;
	--color-accent-hover: #0f766e;
	--color-accent-light: #5eead4;
	--color-dark: #131c31;
	--color-dark-soft: #1e293b;
	--color-dark-muted: #334155;
	--color-bg-hero: #f0fdfa;
	--color-bg-section: #f8fafc;
	--color-bg-section-alt: #f1f5f9;
	--color-text: #334155;
	--color-text-strong: #1e293b;
	--color-border: #e2e8f0;
	--color-card: #ffffff;
	--color-muted: #64748b;
	color-scheme: light;
}

html[data-theme="dark"] {
	--color-accent: #2dd4bf;
	--color-accent-hover: #5eead4;
	--color-accent-light: #99f6e4;
	--color-bg-hero: #0f172a;
	--color-bg-section: #1e293b;
	--color-bg-section-alt: #334155;
	--color-text: #cbd5e1;
	--color-text-strong: #f1f5f9;
	--color-border: #475569;
	--color-card: #1e293b;
	--color-muted: #94a3b8;
	color-scheme: dark;
}

html[data-theme="dark"] body {
	background: linear-gradient(
		120deg,
		var(--color-bg-hero) 0%,
		#1a2332 25%,
		#0f2430 50%,
		#134e4a 75%,
		var(--color-bg-section) 100%
	);
}

html[data-theme="dark"] .wrapper {
	background-color: rgba(30, 41, 59, 0.82);
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .wrapper.style1 {
	background-color: rgba(15, 23, 42, 0.75);
}

html[data-theme="dark"] .wrapper.style2 {
	background-color: rgba(30, 41, 59, 0.85);
}

html[data-theme="dark"] .wrapper.style3 {
	background-color: rgba(51, 65, 85, 0.85);
}

html[data-theme="dark"] form input[type=text]:focus,
html[data-theme="dark"] form input[type=email]:focus,
html[data-theme="dark"] form input[type=password]:focus,
html[data-theme="dark"] form select:focus,
html[data-theme="dark"] form textarea:focus {
	background: var(--color-dark-soft);
}

html[data-theme="dark"] #cv-chat-messages .cv-msg-user {
	background: rgba(45, 212, 191, 0.16);
}

html[data-theme="dark"] #cv-chat-messages .cv-msg-bot,
html[data-theme="dark"] #cv-chat-messages .cv-lang-pick {
	background: rgba(15, 23, 42, 0.45);
}

html[data-theme="dark"] #cv-chat-messages .cv-msg-typing-dot {
	background: rgba(226, 232, 240, 0.55);
}

html[data-theme="dark"] .box {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28), 0 0 0 1px var(--color-border);
}

html[data-theme="dark"] #cv-chat-panel {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--color-border);
}

html[data-theme="dark"] input[type="button"].alt,
html[data-theme="dark"] input[type="submit"].alt,
html[data-theme="dark"] input[type="reset"].alt,
html[data-theme="dark"] button.alt,
html[data-theme="dark"] .button.alt {
	background-color: rgba(15, 23, 42, 0.55);
	border: 2px solid var(--color-accent-light);
	box-shadow: 0 0 0 1px rgba(153, 246, 228, 0.35), 0 4px 18px rgba(45, 212, 191, 0.18);
}

html[data-theme="dark"] input[type="button"].alt:hover,
html[data-theme="dark"] input[type="submit"].alt:hover,
html[data-theme="dark"] input[type="reset"].alt:hover,
html[data-theme="dark"] button.alt:hover,
html[data-theme="dark"] .button.alt:hover {
	background-color: rgba(45, 212, 191, 0.14);
	border-color: #ccfbf1;
	box-shadow: 0 0 0 1px rgba(204, 251, 241, 0.45), 0 6px 22px rgba(45, 212, 191, 0.28);
}

html[data-theme="dark"] input[type="button"].alt:active,
html[data-theme="dark"] input[type="submit"].alt:active,
html[data-theme="dark"] input[type="reset"].alt:active,
html[data-theme="dark"] button.alt:active,
html[data-theme="dark"] .button.alt:active {
	background-color: rgba(45, 212, 191, 0.22);
	border-color: var(--color-accent-light);
}

body,
.wrapper,
.box,
#cv-chat-panel {
	transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#cv-theme-toggle {
	box-sizing: border-box;
	width: 2.25em;
	height: 2.25em;
	min-width: 2.25em;
	min-height: 2.25em;
	padding: 0;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	box-shadow: none;
	transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	line-height: 1;
	vertical-align: middle;
}

#cv-theme-toggle:hover {
	transform: scale(1.06);
	border-color: var(--color-accent-light);
	background: var(--color-dark-soft);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#cv-theme-toggle .cv-theme-icon-sun {
	display: none;
}

#cv-theme-toggle.is-dark .cv-theme-icon-moon {
	display: none;
}

#cv-theme-toggle.is-dark .cv-theme-icon-sun {
	display: block;
}

/* Animated gradient (переливание) */
@keyframes gradient-flow {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

@keyframes section-enter {
	from { opacity: 0.85; }
	to { opacity: 1; }
}

.wrapper.is-visible {
		animation: section-enter 0.5s ease forwards;
	}

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;
	}

	body {
		padding-top: 3.5em;
		min-height: 100%;
		background: linear-gradient(
			120deg,
			var(--color-bg-hero) 0%,
			#e0f2fe 25%,
			#f0fdfa 50%,
			#ccfbf1 75%,
			var(--color-bg-section) 100%
		);
		background-size: 200% 200%;
		background-attachment: fixed;
		animation: gradient-flow 14s ease infinite;
	}

		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.is-preload {
			animation: none;
		}

	body, input, textarea, select {
		font-family: 'DM Sans', sans-serif;
		line-height: 1.85em;
		color: var(--color-text);
		font-weight: 400;
		font-size: 13pt;
	}

	a {
		-moz-transition: color .2s ease-in-out;
		-webkit-transition: color .2s ease-in-out;
		-ms-transition: color .2s ease-in-out;
		transition: color .2s ease-in-out;
		color: var(--color-accent);
		text-decoration: underline;
	}

		a:hover {
			color: var(--color-accent-hover) !important;
		}

		a img {
			border: 0;
		}

	b, strong {
		font-weight: 600;
		color: var(--color-text-strong);
	}

	i, em {
		font-style: italic;
	}

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

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

	blockquote {
		border-left: solid 0.75em var(--color-border);
		padding: 1em 0 1em 1.5em;
		font-style: italic;
	}

	h1, h2, h3, h4, h5, h6 {
		color: var(--color-text-strong);
		margin: 0 0 0.75em 0;
	}

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

	h2, h3, h4, h5, h6 {
		font-weight: 700;
	}

	h1 {
		font-size: 3.25em;
		letter-spacing: -0.025em;
		font-weight: 300;
	}

		h1 strong {
			font-weight: 700;
		}

	h2 {
		font-size: 2em;
		letter-spacing: -0.015em;
	}

	h3 {
		font-size: 1.5em;
		letter-spacing: -0.015em;
	}

	em, i {
		font-style: italic;
	}

	.nowrap {
		white-space: nowrap;
	}

	br.clear {
		clear: both;
	}

	hr {
		border: 0;
		border-top: solid 1px var(--color-border);
		height: 1px;
		margin: 3em 0;
	}

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

	header {
		margin: 0 0 3em 0;
	}

		header > p {
			font-size: 1.25em;
			margin: 0;
		}

	footer {
		margin: 3em 0 0 0;
	}

		footer > p {
			font-size: 1.25em;
		}

/* Container */

	.container {
		margin: 0 auto;
		max-width: calc(100% - 50px);
		width: 1200px;
	}

		.container.medium {
			width: 900px;
		}

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

			.container {
				width: 1200px;
			}

				.container.medium {
					width: 900px;
				}

		}

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

			.container {
				width: 960px;
			}

				.container.medium {
					width: 720px;
				}

		}

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

			.container {
				width: 100%;
			}

				.container.medium {
					width: 75%;
				}

		}

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

			.container {
				width: 100%;
				max-width: calc(100% - 30px);
			}

				.container.medium {
					width: 100%;
				}

		}

/* 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: 0px;
			margin-left: 0px;
		}

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

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

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

		.row.gtr-25 {
			margin-top: -6.25px;
			margin-left: -6.25px;
		}

			.row.gtr-25 > * {
				padding: 6.25px 0 0 6.25px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -6.25px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 6.25px;
				}

		.row.gtr-50 {
			margin-top: -12.5px;
			margin-left: -12.5px;
		}

			.row.gtr-50 > * {
				padding: 12.5px 0 0 12.5px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -12.5px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 12.5px;
				}

		.row {
			margin-top: -25px;
			margin-left: -25px;
		}

			.row > * {
				padding: 25px 0 0 25px;
			}

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

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

		.row.gtr-150 {
			margin-top: -37.5px;
			margin-left: -37.5px;
		}

			.row.gtr-150 > * {
				padding: 37.5px 0 0 37.5px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -37.5px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 37.5px;
				}

		.row.gtr-200 {
			margin-top: -50px;
			margin-left: -50px;
		}

			.row.gtr-200 > * {
				padding: 50px 0 0 50px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -50px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 50px;
				}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

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

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

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

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

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

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -6.25px;
					margin-left: -6.25px;
				}

					.row.gtr-25 > * {
						padding: 6.25px 0 0 6.25px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -6.25px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 6.25px;
						}

				.row.gtr-50 {
					margin-top: -12.5px;
					margin-left: -12.5px;
				}

					.row.gtr-50 > * {
						padding: 12.5px 0 0 12.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -12.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 12.5px;
						}

				.row {
					margin-top: -25px;
					margin-left: -25px;
				}

					.row > * {
						padding: 25px 0 0 25px;
					}

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

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

				.row.gtr-150 {
					margin-top: -37.5px;
					margin-left: -37.5px;
				}

					.row.gtr-150 > * {
						padding: 37.5px 0 0 37.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -37.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 37.5px;
						}

				.row.gtr-200 {
					margin-top: -50px;
					margin-left: -50px;
				}

					.row.gtr-200 > * {
						padding: 50px 0 0 50px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -50px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 50px;
						}

		}

		@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: 0px;
					margin-left: 0px;
				}

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

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

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

				.row.gtr-25 {
					margin-top: -3.75px;
					margin-left: -3.75px;
				}

					.row.gtr-25 > * {
						padding: 3.75px 0 0 3.75px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -3.75px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 3.75px;
						}

				.row.gtr-50 {
					margin-top: -7.5px;
					margin-left: -7.5px;
				}

					.row.gtr-50 > * {
						padding: 7.5px 0 0 7.5px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -7.5px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 7.5px;
						}

				.row {
					margin-top: -15px;
					margin-left: -15px;
				}

					.row > * {
						padding: 15px 0 0 15px;
					}

					.row.gtr-uniform {
						margin-top: -15px;
					}

						.row.gtr-uniform > * {
							padding-top: 15px;
						}

				.row.gtr-150 {
					margin-top: -22.5px;
					margin-left: -22.5px;
				}

					.row.gtr-150 > * {
						padding: 22.5px 0 0 22.5px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -22.5px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 22.5px;
						}

				.row.gtr-200 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-200 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 30px;
						}

		}

/* Form */

	form label {
		color: var(--color-text-strong);
		font-weight: 700;
		display: block;
		margin: 0 0 0.5em 0;
	}

	form input[type=text],
	form input[type=email],
	form input[type=password],
	form select,
	form textarea {
		-moz-transition: background .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
		-webkit-transition: background .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
		-ms-transition: background .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
		transition: background .2s ease-in-out, box-shadow .2s ease-in-out, border-color .2s ease-in-out;
		-webkit-appearance: none;
		display: block;
		border: 0;
		padding: 0.75em;
		font-size: 1em;
		border-radius: 8px;
		border: solid 1px var(--color-border);
		background: var(--color-card);
		color: var(--color-text);
		box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
		width: 100%;
	}

		form input[type=text]:focus,
		form input[type=email]:focus,
		form input[type=password]:focus,
		form select:focus,
		form textarea:focus {
			background: #fafafa;
			box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025), inset 0px 0px 2px 1px var(--color-accent);
		}

	form textarea {
		height: 15em;
	}

	form .actions:last-child {
		margin-bottom: 0;
	}

	form ::-webkit-input-placeholder {
		color: var(--color-muted) !important;
	}

	form :-moz-placeholder {
		color: var(--color-muted) !important;
	}

	form ::-moz-placeholder {
		color: var(--color-muted) !important;
	}

	form :-ms-input-placeholder {
		color: var(--color-muted) !important;
	}

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

/* Tables */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tr {
				border-top: solid 1px var(--color-border);
			}

				table.default tr:first-child {
					border-top: 0;
				}

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

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

			table.default thead {
				background: var(--color-dark);
				color: #fff;
			}

/* Section/Article */

	section, article {
		margin-bottom: 3em;
	}

	section > :last-child,
	article > :last-child,
	section:last-child,
	article:last-child {
		margin-bottom: 0;
	}

/* Image */

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

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

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

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

		.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;
			}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		background-image: url("images/bg.png"), -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
		background-image: url("images/bg.png"), -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
		background-image: url("images/bg.png"), -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
		background-image: url("images/bg.png"), linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
		-moz-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
		-webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
		-ms-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
		transition: background-color .2s ease-in-out, transform .2s ease-in-out;
		-webkit-appearance: none;
		position: relative;
		display: inline-block;
		color: #fff !important;
		text-decoration: none;
		font-weight: 700;
		border: 0;
		outline: 0;
		cursor: pointer;
		border-radius: 10px;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
		overflow: hidden;
		box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.35);
		background-color: var(--color-accent);
		padding: 1em 2.35em 1em 2.35em;
		font-size: 1.1em;
		max-width: 24em;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			background-color: var(--color-accent-hover);
			color: #fff !important;
			transform: translateY(-2px);
			box-shadow: 0 6px 20px 0 rgba(13, 148, 136, 0.4);
		}

		input[type="button"]:active,
		input[type="submit"]:active,
		input[type="reset"]:active,
		button:active,
		.button:active {
			background-color: var(--color-accent-hover);
			transform: translateY(0);
		}

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

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background-color: var(--color-dark);
			box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.25);
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background-color: var(--color-dark-soft);
				color: #fff !important;
			}

			input[type="button"].alt:active,
			input[type="submit"].alt:active,
			input[type="reset"].alt:active,
			button.alt:active,
			.button.alt:active {
				background-color: var(--color-dark-muted);
			}

/* List */

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

		ul li {
			padding-left: 0.5em;
		}

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

		ol li {
			padding-left: 0.25em;
		}

/* Social */

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

		ul.social li {
			position: relative;
			display: inline-block;
			margin: 0.25em;
			top: 0;
			padding-left: 0;
		}

			ul.social li a {
				-moz-transition: top .2s ease-in-out;
				-webkit-transition: top .2s ease-in-out;
				-ms-transition: top .2s ease-in-out;
				transition: top .2s ease-in-out;
				display: block;
				width: 48px;
				height: 48px;
				border-radius: 10px;
				top: 0;
				position: relative;
			}

				ul.social li a:before {
					background-color: var(--color-dark);
					border-radius: 10px;
					box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
					color: #fff !important;
					display: block;
					font-size: 26px;
					height: 48px;
					line-height: 48px;
					text-align: center;
					outline: 0;
					overflow: hidden;
					width: 48px;
					-moz-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
					-webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
					-ms-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
					transition: background-color .2s ease-in-out, transform .2s ease-in-out;
				}

				ul.social li a.fa-linkedin-in:before {
					background-color: #0a66c2;
				}

				ul.social li a.fa-github:before {
					background-color: var(--color-dark);
				}

				ul.social li a:hover {
					top: -5px;
				}

					ul.social li a:hover:before {
						background-color: var(--color-accent);
					}

/* Actions */

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

		ul.actions li {
			display: inline-block;
			margin: 0 0 0 1em;
			padding-left: 0;
		}

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

/* Box */

	.box {
		background: var(--color-card);
		box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--color-border);
		text-align: center;
		padding: 2em;
		border-radius: 12px;
	}

		.box.style1 {
			padding: 3em 2em 3.5em 2em;
		}

			.box.style1 h3 {
				margin-bottom: 0.5em;
			}

		#work .box.style1 {
			max-width: 88%;
			margin-left: auto !important;
			margin-right: auto !important;
		}

		#work .cv-work-role {
			opacity: 0.85;
			display: block;
		}

		#work .cv-work-role strong {
			font-weight: 700;
		}

		.box.style2 h3 {
			margin-bottom: 0.25em;
		}

		.box.style2 .image {
			position: relative;
			left: 2em;
			top: 2em;
			margin: -4em 0 4em -4em;
			width: auto;
		}

	/* Portfolio: equal-height project cards */
		#portfolio .row {
			align-items: stretch;
		}

		#portfolio .container > .row + .row {
			margin-top: 2.25em;
		}

		#portfolio .row > .col-6,
		#portfolio .row > .col-12 {
			display: flex;
		}

		#portfolio .row .box.style2 {
			flex: 1;
			display: flex;
			flex-direction: column;
			width: 100%;
			padding: 1.1em 1.1em 1.35em;
			overflow: hidden;
		}

		#portfolio .box.style2 .image.featured {
			position: relative;
			left: 0;
			top: 0;
			margin: -1.1em -1.1em 1em -1.1em;
			width: calc(100% + 2.2em);
			height: 320px;
			min-height: 320px;
			max-height: 320px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: var(--color-border);
			overflow: hidden;
		}

		#portfolio .box.style2 .image.featured img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

		#portfolio .box.style2 .image.featured.loopy-featured {
			padding: 0.4em 0.35em;
			gap: 6px;
			align-items: center;
			justify-content: center;
		}

		#portfolio .box.style2 .image.featured.loopy-featured img {
			flex: 1 1 calc(50% - 3px);
			width: 0;
			min-width: 0;
			height: 100%;
			max-height: 100%;
			object-fit: contain;
			object-position: center center;
		}

		#portfolio .project-actions {
			margin-top: auto;
			padding-top: 0.75em;
			display: flex;
			flex-wrap: wrap;
			gap: 0.5em 0.75em;
			justify-content: center;
			align-items: center;
		}

		#portfolio .project-actions .button {
			padding: 0.55em 1.15em;
			font-size: 0.82em;
			max-width: none;
		}

		#portfolio .project-body {
			max-width: 44em;
			margin: 0 auto;
			text-align: left;
		}

		#portfolio ul.project-highlights {
			margin: 0.35em 0 0 0;
			padding-left: 1.2em;
			font-size: 0.92em;
			line-height: 1.55;
			list-style: disc;
		}

		#portfolio ul.project-highlights li {
			margin-bottom: 0.5em;
			padding-left: 0.3em;
		}

		#portfolio ul.project-highlights code {
			font-size: 0.92em;
		}

/* Icons */

	.icon {
		text-decoration: none;
		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 {
			font-size: 1.25em;
		}

		.icon > .label {
			display: none;
		}

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

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

		.icon.featured {
			color: var(--color-accent);
			display: block;
			margin: 0 0 1.5em 0;
			cursor: default;
		}

			.icon.featured:before {
				font-size: 6em;
			}

/* Wrappers */

	.wrapper {
		background-color: rgba(248, 250, 252, 0.82);
		box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
		padding: 8em 0 8em 0;
		text-align: center;
	}

		.wrapper.style1 {
			background-color: rgba(240, 253, 250, 0.75);
		}

		.wrapper.style2 {
			background-color: rgba(248, 250, 252, 0.85);
			padding: 4em 0 8em 0;
		}

		.wrapper.style3 {
			background-color: rgba(241, 245, 249, 0.85);
			padding: 3em 0 8em 0;
		}

		.wrapper.style4 {
			background-color: var(--color-dark);
			color: #e2e8f0;
			text-shadow: none;
		}

			.wrapper.style4 h1, .wrapper.style4 h2, .wrapper.style4 h3, .wrapper.style4 h4, .wrapper.style4 h5, .wrapper.style4 h6 {
				color: #fff;
			}

			.wrapper.style4 a {
				color: var(--color-accent-light);
			}

				.wrapper.style4 a:hover {
					color: #99f6e4 !important;
				}

			.wrapper.style4 strong {
				color: #f1f5f9;
			}

			.wrapper.style4 form input[type=text],
			.wrapper.style4 form input[type=password],
			.wrapper.style4 form select,
			.wrapper.style4 form textarea {
				border: 1px solid var(--color-dark-muted);
				background: var(--color-dark-soft);
				color: #e2e8f0;
			}

				.wrapper.style4 form input[type=text]:focus,
				.wrapper.style4 form input[type=password]:focus,
				.wrapper.style4 form select:focus,
				.wrapper.style4 form textarea:focus {
					background: var(--color-dark-muted);
					border-color: var(--color-accent);
				}

/* Nav */

	#nav {
		background-color: var(--color-dark);
		text-align: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 10000;
		cursor: default;
		height: 3.5em;
		line-height: 3.5em;
		box-shadow: 0 2px 20px rgba(15, 23, 42, 0.3);
	}

		#nav ul {
			margin-bottom: 0;
			list-style: none;
			padding-left: 0;
		}

		#nav li {
			display: inline-block;
			padding-left: 0;
			vertical-align: middle;
		}

		#nav li.cv-nav-theme-item {
			margin-left: 0.35em;
		}

		#nav a {
			-moz-transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
			-webkit-transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
			-ms-transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
			transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
			position: relative;
			display: block;
			color: #fff;
			text-decoration: none;
			outline: 0;
			font-weight: 600;
			border-radius: 8px;
			color: #fff;
			height: 2.5em;
			line-height: 2.5em;
			padding: 0 1.25em;
		}

			#nav a:hover {
				color: #fff !important;
				background: var(--color-dark-soft);
				transform: translateY(-1px);
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
			}

			#nav a.active {
				background: var(--color-accent);
			}

				#nav a.active:before {
					content: '';
					display: block;
					position: absolute;
					bottom: -0.6em;
					left: 50%;
					margin-left: -0.75em;
					border-left: solid 0.75em transparent;
					border-right: solid 0.75em transparent;
					border-top: solid 0.6em var(--color-dark);
				}

	@keyframes nav-resume-nudge {
		0%, 82%, 100% {
			transform: translate3d(0, 0, 0);
		}
		86% {
			transform: translate3d(-4px, 0, 0);
		}
		90% {
			transform: translate3d(4px, 0, 0);
		}
		94% {
			transform: translate3d(-2px, 0, 0);
		}
		98% {
			transform: translate3d(0, 0, 0);
		}
	}

	#nav a.resume-attn {
		animation: nav-resume-nudge 1.5s ease-in-out infinite;
	}

		#nav a.resume-attn:hover {
			animation-play-state: paused;
		}

	@media (prefers-reduced-motion: reduce) {

		#nav a.resume-attn {
			animation: none;
		}

	}

/* Articles */

	body > article {
		margin-bottom: 0;
	}

	#top {
		padding: 6em 0 10em 0;
		text-align: left;
	}

		#top .image {
			border-radius: 100%;
			width: 20em;
			height: 20em;
			margin: 0;
			box-shadow: 0 20px 60px rgba(13, 148, 136, 0.15);
		}

			#top .image img {
				border-radius: 100%;
			}

		#top h1 {
			margin-top: 0.35em;
		}

		#top p {
			font-size: calc(1.5em - 1pt);
			line-height: 1.65em;
			margin-top: 0;
			margin-bottom: 0.45em;
		}

			#top p a {
				color: inherit;
			}

	#contact footer {
		font-size: 0.9em;
	}

/* Copyright */

	#copyright {
		color: var(--color-muted);
		font-size: 1em;
		line-height: 1em;
		list-style: none;
		padding-left: 0;
		margin-bottom: 0;
	}

		#copyright li {
			display: inline-block;
			border-left: solid 1px var(--color-dark-muted);
			padding: 0 0 0 1em;
			margin: 0 0 0 1em;
		}

			#copyright li:first-child {
				border: 0;
				box-shadow: none;
				padding-left: 0;
				margin-left: 0;
			}

		#copyright a {
			-moz-transition: color .2s ease-in-out;
			-webkit-transition: color .2s ease-in-out;
			-ms-transition: color .2s ease-in-out;
			transition: color .2s ease-in-out;
			color: inherit;
		}

			#copyright a:hover {
				color: var(--color-accent-light);
			}

/* Large */

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

		/* Basic */

			body {
				font-size: 11pt;
			}

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

			header {
				margin: 0 0 4em 0;
			}

		/* Wrappers */

			.wrapper {
				padding: 5em 0 5em 0;
				text-align: center;
			}

				.wrapper.style4 .row-special {
					margin: 2em 0 0 0;
					padding: 2em 0 2em 0;
				}

		/* Articles */

			#top {
				padding: 8em 0;
			}

				#top .image {
					width: 24em;
					height: 24em;
					margin: 0;
				}

	}

/* Medium */

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

		/* Articles */

			#top {
				text-align: center;
				padding: 5em 0;
			}

				#top .image {
					margin: 0 auto 2em auto;
				}

	}

/* Small */

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

		/* Basic */

			.nowrap {
				white-space: normal;
			}

			body {
				padding-top: 44px;
			}

			body, input, textarea, select {
				line-height: 1.75em;
				font-size: 10pt;
				letter-spacing: 0;
			}

			h1, h2, h3, h4, h5, h6 {
				font-size: 1.25em;
				margin: 0 0 0.4em 0;
			}

			h1 {
				font-size: 2.25em;
				line-height: 1.25em;
			}

			header {
				margin: 0 0 2em 0;
			}

				header > p {
					font-size: 1.25em;
				}

			footer {
				margin: 2.5em 0 0 0;
			}

				footer > p {
					font-size: 1.25em;
				}

			hr {
				margin: 1.5em 0 2em 0;
			}

		/* Section/Article */

			section, article {
				clear: both;
			}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				text-align: center;
				font-size: 1.2em;
				width: 100%;
				padding: 1em 0 1em 0;
			}

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

		/* Social */

			ul.social {
				padding: 1em 0.5em 0 0.5em;
			}

				ul.social li {
					margin: 0.5em 0.5em 0.5em 0.5em;
				}

					ul.social li a {
						top: 0 !important;
					}

						ul.social li a:before {
							background-color: transparent !important;
						}

		/* Actions */

			ul.actions {
				margin: 0;
			}

				ul.actions li {
					display: block;
					margin: 15px 0 0 0;
				}

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

		/* Box */

			.box {
				padding: 30px 20px 30px 20px;
				margin: 0 0 20px 0 !important;
			}

				.box h3 {
					margin-bottom: 0.25em;
				}

				.box .image.centered {
					margin-bottom: 1em;
				}

				.box .image.featured {
					position: relative;
					left: 20px;
					top: 20px;
					margin: -50px 0 50px -40px;
					width: auto;
				}

				.box.style1 {
					max-width: 32em;
					margin-left: auto !important;
					margin-right: auto !important;
				}

				#work .box.style1 {
					max-width: min(88%, 28.16em);
				}

				.box.style2 {
					max-width: 32em;
					margin-left: auto !important;
					margin-right: auto !important;
				}

		/* Wrappers */

			.wrapper {
				padding: 3em 0;
				text-align: center;
			}

		/* Nav */

			#nav {
				height: 44px;
				line-height: 44px;
			}

				#nav a {
					padding: 0 0.75em;
					height: inherit;
					line-height: inherit;
					border-radius: 0;
				}

					#nav a:hover {
						background-color: transparent;
					}

		/* Articles */

			#top {
				padding: 3em 0;
			}

				#top .image {
					width: 15em;
					height: 15em;
					margin-bottom: 0;
				}

				#top p {
					font-size: calc(1em - 1pt);
					line-height: 1.55em;
					margin-top: 0;
					margin-bottom: 0.45em;
				}

			#contact footer {
				margin: 0;
			}

		/* Copyright */

			#copyright {
				font-size: 1em;
				margin: 0;
			}

				#copyright li {
					display: block;
					margin: 1em 0 0 0;
					padding: 0;
					box-shadow: none;
					border-left: 0;
				}

					#copyright li:first-child {
						margin-top: 0;
					}

	}

/* AI chat widget */
#cv-chat-toggle {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 12000;
	box-sizing: border-box;
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	min-height: 3.5rem;
	padding: 0;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	background: #f97316;
	color: #fff;
	box-shadow: 0 6px 22px rgba(249, 115, 22, 0.55);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cv-chat-toggle .cv-chat-toggle-icon {
	display: block;
	font-size: 1.4rem;
	line-height: 1;
}

#cv-chat-toggle:hover {
	transform: scale(1.06);
	background: #ea580c;
	box-shadow: 0 8px 26px rgba(234, 88, 12, 0.55);
}

#cv-chat-panel {
	position: fixed;
	right: 1rem;
	bottom: 5.25rem;
	z-index: 12000;
	width: min(28rem, calc(100vw - 2rem));
	max-height: min(42rem, 86vh);
	display: flex;
	flex-direction: column;
	background: var(--color-card);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2), 0 0 0 1px var(--color-border);
	overflow: hidden;
	transform-origin: bottom right;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(0.85rem) scale(0.96);
	transition:
		opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.32s ease,
		visibility 0s linear 0.32s;
}

#cv-chat-panel.cv-chat-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	transition:
		opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.32s ease,
		visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
	#cv-chat-panel,
	#cv-chat-panel.cv-chat-open {
		transition-duration: 0.01ms;
	}
}

#cv-chat-panel .cv-chat-head {
	flex-shrink: 0;
	background: var(--color-dark);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#cv-chat-panel .cv-chat-toolbar {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.45rem 0.55rem 0.2rem 0.75rem;
}

#cv-chat-panel .cv-chat-toolbar header {
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;
	background: transparent;
	flex: 1 1 auto;
	min-width: 0;
}

#cv-chat-panel .cv-chat-close {
	flex: 0 0 auto;
	align-self: center;
	margin: 0;
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.45rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fecaca;
	background: rgba(248, 113, 113, 0.22);
	box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

#cv-chat-panel .cv-chat-close:hover {
	color: #fff;
	background: #e11d48;
	transform: scale(1.05);
}

#cv-chat-panel .cv-chat-hint {
	margin: 0;
	padding: 0.15rem 0.75rem 0.45rem;
	font-size: 0.86rem;
	line-height: 1.42;
	color: rgba(248, 250, 252, 0.82);
	background: transparent;
	flex-shrink: 0;
}

#cv-chat-messages {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow-y: auto;
	padding: 0.85rem;
	font-size: 0.98rem;
	line-height: 1.5;
	min-height: 15rem;
	max-height: min(28rem, 52vh);
	color: var(--color-text);
}

#cv-chat-messages .cv-msg-user {
	align-self: flex-end;
	max-width: 88%;
	width: max-content;
	margin: 0 0 0.55rem 0;
	padding: 0.55rem 0.65rem;
	background: rgba(13, 148, 136, 0.12);
	border-radius: 8px;
	text-align: left;
	font-size: 0.98rem;
}

#cv-chat-messages .cv-msg-bot {
	max-width: 88%;
	width: max-content;
	margin: 0 0 0.55rem 0;
	padding: 0.55rem 0.65rem;
	background: rgba(15, 23, 42, 0.06);
	border-radius: 8px;
	white-space: pre-wrap;
	font-size: 0.98rem;
}

#cv-chat-messages .cv-msg-link {
	color: var(--color-accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	word-break: break-all;
}

#cv-chat-messages .cv-msg-link:hover {
	color: var(--color-accent-hover);
}

#cv-chat-messages .cv-msg-err {
	max-width: 88%;
	width: max-content;
	color: #b91c1c;
	font-size: 0.95rem;
}

#cv-chat-messages .cv-lang-pick {
	align-self: stretch;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem 0.65rem;
	margin: 0 0 0.55rem 0;
	padding: 0.4rem 0.6rem;
	background: rgba(15, 23, 42, 0.06);
	border-radius: 8px;
	font-size: 0.95rem;
	line-height: 1.35;
	color: var(--color-text);
}

#cv-chat-messages .cv-lang-question {
	margin: 0;
	padding: 0;
	flex: 1 1 auto;
	min-width: 8rem;
	font-size: 0.95rem;
	line-height: 1.35;
	color: inherit;
}

#cv-chat-messages .cv-lang-buttons {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 0.35rem;
	align-items: center;
	justify-content: flex-end;
}

#cv-chat-messages .cv-lang-btn {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 0.3rem 0.75rem;
	font-size: 0.88rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	background: var(--color-dark);
	color: #f1f5f9;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

#cv-chat-messages .cv-lang-btn:hover:not(:disabled) {
	background: var(--color-dark-soft);
	border-color: rgba(94, 234, 212, 0.35);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(19, 28, 49, 0.25);
}

#cv-chat-messages .cv-lang-btn:disabled {
	opacity: 0.65;
	cursor: default;
	transform: none;
	box-shadow: none;
}

#cv-chat-messages .cv-lang-pick.cv-lang-done .cv-lang-buttons {
	opacity: 0.9;
}

#cv-chat-messages .cv-msg-typing {
	display: flex;
	align-items: center;
	max-width: 88%;
	width: max-content;
	min-height: 2.1rem;
}

#cv-chat-messages .cv-msg-typing-dots {
	display: inline-flex;
	gap: 0.32rem;
	align-items: center;
	padding: 0.15rem 0;
}

#cv-chat-messages .cv-msg-typing-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.42);
	animation: cv-msg-typing-bounce 1.05s ease-in-out infinite;
}

#cv-chat-messages .cv-msg-typing-dot:nth-child(2) {
	animation-delay: 0.16s;
}

#cv-chat-messages .cv-msg-typing-dot:nth-child(3) {
	animation-delay: 0.32s;
}

@keyframes cv-msg-typing-bounce {
	0%, 80%, 100% {
		transform: translateY(0);
		opacity: 0.4;
	}
	40% {
		transform: translateY(-5px);
		opacity: 1;
	}
}

#cv-chat-form {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.75rem;
	border-top: 1px solid var(--color-border);
	flex-shrink: 0;
	min-width: 0;
}

#cv-chat-input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 0.55rem 0.65rem;
	font-size: 0.98rem;
	font-family: inherit;
	background: var(--color-card);
	color: var(--color-text);
}

#cv-chat-send {
	flex: 0 0 auto;
	width: auto;
	border: 0;
	border-radius: 8px;
	padding: 0.5rem 0.85rem;
	font-weight: 700;
	cursor: pointer;
	background: #22c55e;
	color: #fff;
	font-size: 0.95rem;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

#cv-chat-send:hover:not(:disabled) {
	background: #16a34a;
	transform: translateY(-1px);
}

#cv-chat-send:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

@media screen and (max-width: 736px) {
	#cv-chat-panel {
		right: 0.5rem;
		left: 0.5rem;
		width: auto;
		max-height: min(42rem, calc(100dvh - 5.25rem - env(safe-area-inset-bottom, 0px)));
	}

	#cv-chat-messages {
		min-height: 8rem;
		max-height: min(28rem, calc(100dvh - 13rem - env(safe-area-inset-bottom, 0px)));
	}

	#cv-chat-form {
		padding: 0.55rem 0.65rem;
		padding-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
	}

	#cv-chat-input {
		flex: 1 1 auto;
		min-width: 0;
		width: auto;
		font-size: 16px;
	}

	#cv-chat-send {
		width: auto;
		flex: 0 0 auto;
		padding: 0.55rem 0.75rem;
		font-size: 0.95rem;
	}

	#cv-chat-messages .cv-lang-btn {
		width: auto;
		padding: 0.3rem 0.75rem;
	}
}