@font-face {
	font-family: 'nexa_boldregular';
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	src: url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff2') format('woff2'),
		url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff') format('woff');
}

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	--text-color: #fff;
	--background-color: #363dc2;
	--background-color-2: #282faf;
	--background-color-3: #202692;
	--link-color: #03b9f1;
	--link-hover-color: #fff;
	font-family: 'Roboto Mono', ui-monospace, 'SFMono-Regular', 'Cascadia Mono', 'Segoe UI Mono', 'Liberation Mono', Menlo, Monaco, Consolas, monospace;
	font-weight: 500;
	color: #fff;
	color: var(--text-color);
	background-color: #363dc2;
	background-color: var(--background-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background-color);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 10000;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 10px solid var(--background-color-2);
	border-left-color: var(--text-color);
	animation: loaderAnim 0.8s linear infinite forwards;
}

@keyframes loaderAnim {
	to {
		transform: rotate(360deg);
	}
}

main {
	position: relative;
	width: 100%;
	overflow: hidden;
}

a {
	text-decoration: none;
	color: var(--link-color);
	outline: none;
}

a:hover,
a:focus {
	color: var(--link-hover-color);
	outline: none;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--link-color);
	outline-offset: 3px;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

/* Deco Shape */
.decoshape {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	fill: var(--background-color-3);
}

/* SVG Morph */
.morph-wrap {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.morph {
	position: relative;
	height: 100%;
	fill: var(--background-color-2);
	flex: none;
}

.content-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	pointer-events: none;
}

.content {
	position: relative;
	display: grid;
}

.content--fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	z-index: 100;
	pointer-events: none;
	padding: 1.5em;
	grid-template-columns: 50% 50%; 
	grid-template-rows: auto auto 4em;
	grid-template-areas:	"header ..."
							"... decotitle"
							"demos decotitle";
}

.content--fixed a {
	pointer-events: auto;
}

.content--layout {
	pointer-events: auto;
	justify-content: center;
	align-content: center;
	grid-template-columns: 150px 150px 150px 150px; 
	grid-template-rows: 150px 75px 75px;
	grid-template-areas:	"... title title title"
							"author ... desc desc"
							"author ... link link";
}

.content--related {
	text-align: center;
	align-content: center;
	justify-content: center;
	padding: 0 2em;
	min-height: 600px;
	height: 100vh;
	font-size: 0.85em;
}

.content__img {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	opacity: 0.8;
	width: 300px;
	height: 300px;
}

.content__title {
	grid-area: title;
	font-family: 'nexa_boldregular', sans-serif;
	letter-spacing: -0.025em;
	font-size: 8em;
	line-height: 160px;
	margin: 0;
	text-transform: lowercase;
	z-index: 10;
	cursor: default;
}

@media screen and (max-width: 1024px) {
  .demo-2 .content__title {
    font-size: clamp(3.2rem, 8vw, 6rem);
  }
}

.content__author {
	grid-area: author;
	margin: 0;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	padding: 1em;
	text-align: right;
	z-index: 10;
	cursor: default;
}

.content__desc {
	grid-area: desc;
	margin: 0;
	z-index: 10;
	padding: 0 1em;
	cursor: default;
}

.content__img,
.content__title,
.content__author,
.content__desc {
	transition: transform 0.3s ease-out;
}

.content__link {
	pointer-events: auto;
	grid-area: link;
	align-self: end;
	justify-self: start;
	z-index: 10;
	padding: 0 1em 0.15em;
}

.content__info {
	grid-column: 1 / 3;
}

.content__related-item {
	padding: 1em;
	transition: color 0.3s;
}

.content__related-img {
	max-width: 100%;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.content__related-item:hover .content__related-img,
.content__related-item:focus .content__related-img {
	opacity: 1;
}

.content__related-title {
	font-size: 1em;
	margin: 0;
	padding: 0.5em;
}

/* Different layouts */

/* layout-2 */
.content--layout-2 {
	grid-template-areas:	"... title title title"
							"desc desc ... author"
							"link link ... author";
}

.content--layout-2 .content__img {
	grid-column: 3 / 5;
	grid-row: 1 / 3;
}

.content--layout-2 .content__desc {
	text-align: right;
}

.content--layout-2 .content__link {
	justify-self: end;
}

.content--layout-2 .content__author {
	justify-self: end;
	align-self: start;
}

/* layout-3 */
.content--layout-3 {
	grid-template-rows: 75px 75px 150px;
	grid-template-areas:	"... ... desc desc"
							"author title title title"
							"author ... link link";
}

.content--layout-3 .content__img {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.content--layout-3 .content__desc {
	align-self: end;
	margin-top: 20px;
}

/* layout-4 */

.content--layout-4 {
	grid-template-areas:	"title title title desc"
							"... author ... desc"
							"... author ... link";
}

.content--layout-4 .content__img {
	grid-column: 2 / 4;
	grid-row: 1 / 3;
}

.content--layout-4 .content__author {
	justify-self: start;
	align-self: start;
}

/* Header */
.codrops-header {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	z-index: 100;
	grid-area: header;
	align-self: start;
	justify-self: start;
}

.codrops-header__title {
	font-size: 1em;
	padding: 0.75em 0;
	margin: 0;
	font-weight: 500;
}

/* Demos */
.demos {
	grid-area: demos;
	align-self: end;
}

.demo {
	display: inline-block;
	position: relative;
	font-size: 0.85em;
	margin: 0 0.25em 0.5em 0;
	padding: 1em;
}

.demo .decoshape {
	display: none;
}

.demo--current {
	color: var(--link-hover-color);
	border-color: currentColor;
}

.demo--current .decoshape {
	display: block;
	z-index: -1;
}

/* Deco elements */
.deco {
	pointer-events: none;
}

.deco--title {
	grid-area: decotitle;
	position: fixed;
	right: 1.15rem;
	bottom: 1.5rem;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	text-align: right;
	z-index: 90;
	color: rgba(255,255,255,0.6);
}

/* Top Navigation Style */
.codrops-links {
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1em 0 0;
    text-align: center;
    white-space: nowrap;
}

.codrops-icon {
	position: relative;
	display: inline-block;
	padding: 0.75em 0.75em 1em;
}

/* Demo themes */
.demo-2 {
	--background-color: #1d1b22;
	--background-color-2: #342560;
	--background-color-3: #553e9a;
	--text-color: #fff;
	--link-color: #f9ed8a;
	--link-hover-color: #fff;
	--panel-color: rgba(18, 17, 24, 0.7);
	--panel-border: rgba(255,255,255,0.14);
	--muted-color: rgba(255,255,255,0.72);
}

.demo-2 body,
.demo-2 {
	scroll-behavior: smooth;
}

.demo-2 .content-wrap {
	padding: 9rem 1.5rem 3rem;
	height: auto;
	min-height: 100vh;
}

.demo-2 .content--fixed {
	padding: 1.75rem;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	grid-template-rows: auto 1fr;
	grid-template-areas:	"header header"
							"decotitle hero";
	align-items: start;
}

.demo-2 .site-header {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 2rem;
}

.demo-2 .site-nav-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
}

.demo-2 .site-header__phone {
	display: inline-flex;
	padding: 0.5rem 0.8rem;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	color: #fff;
}

.demo-2 .site-brand__name {
	display: block;
	font-family: 'nexa_boldregular', sans-serif;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.demo-2 .site-brand__tag {
	margin: 0.6rem 0 0;
	max-width: 28rem;
	color: var(--muted-color);
}

.demo-2 .site-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-self: start;
}

.demo-2 .hero-panel {
	grid-area: hero;
	position: fixed;
	top: auto;
	bottom: 4.5rem;
	right: 2.75rem;
	width: auto;
	max-width: calc(100vw - 3.5rem);
	padding: 0.95rem;
	background: var(--panel-color);
	border: 1px solid var(--panel-border);
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	pointer-events: auto;
	z-index: 120;
}

.demo-2 .hero-panel__content {
	margin-top: 1rem;
}

.demo-2 .hero-panel__eyebrow {
	margin: 0 0 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.72rem;
	color: var(--link-color);
}

.demo-2 .hero-panel__title {
	margin: 0;
	font-family: 'nexa_boldregular', sans-serif;
	font-size: clamp(2rem, 4vw, 4.4rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.demo-2 .hero-panel__desc {
	margin: 1rem 0 0;
	color: var(--muted-color);
}

.demo-2 .hero-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.25rem;
}

.demo-2 .cta-drawer {
	padding: 0.75rem;
}

.demo-2 .cta-drawer summary {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
}

.demo-2 .cta-drawer summary::-webkit-details-marker {
	display: none;
}

.demo-2 .cta-drawer[open] .hero-panel__link--primary {
	margin-bottom: 0;
}

.demo-2 .cta-drawer[open] {
	width: min(100%, 28rem);
}

.demo-2 .hero-panel__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.1rem;
	border: 1px solid var(--panel-border);
	color: #fff;
}

.demo-2 .hero-panel__link--primary {
	background: var(--link-color);
	color: #1d1b22;
	border-color: transparent;
}

.demo-2 .hero-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.65rem;
	margin-top: 1.15rem;
}

.demo-2 .hero-form__field {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.05);
	color: #fff;
	font: inherit;
}

.demo-2 .hero-form__field::placeholder {
	color: rgba(255,255,255,0.55);
}

.demo-2 .hero-form__field--textarea {
	min-height: 7rem;
	resize: vertical;
}

.demo-2 .hero-form__submit {
	padding: 0.9rem 1.1rem;
	border: 0;
	background: #fff;
	color: #1d1b22;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.demo-2 .content--layout {
	width: min(100%, 1080px);
	padding: 2rem;
	grid-template-columns: 160px 160px minmax(120px, 160px) minmax(180px, 280px);
	background: rgba(12, 11, 18, 0.32);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(6px);
}

.demo-2 .content__img {
	object-fit: cover;
	/* border-radius: 1.25rem; */
	filter: brightness(0.7);
	box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.demo-2 .content__img--map {
	overflow: hidden;
	padding: 0;
	background: rgba(255,255,255,0.06);
}

.demo-2 .content__img--map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(0.85) contrast(1.05);
}

.demo-2 .content__img--ghost {
	opacity: 0;
	background: transparent;
	box-shadow: none;
	pointer-events: none;
}

.demo-2 .content__title {
	font-size: clamp(2.5rem, 8vw, 6rem);
	line-height: 0.9;
	text-transform: lowercase;
}

.demo-2 .content__author {
	color: var(--link-color);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.72rem;
}

.demo-2 .content__desc {
	color: rgba(255,255,255,0.86);
	line-height: 1.8;
}

.demo-2 .content__link {
	display: inline-block;
	color: #fff;
	border-bottom: 1px solid currentColor;
}

.demo-2 .contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0 1em;
}

.demo-2 .contact-list__item {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.demo-2 .contact-list__hours {
	margin: 0.35rem 0 0;
	color: rgba(255,255,255,0.72);
}

.demo-2 .content--layout-development .content__img {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.demo-2 .content--layout-development .content__author {
	justify-self: start;
	align-self: start;
}

.demo-2 .content--layout-team {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: auto auto auto auto;
	grid-template-areas:
		"title"
		"author"
		"desc"
		"link";
	max-width: 980px;
}

.demo-2 .content--layout-team .content__img {
	display: none;
}

.demo-2 .content--layout-team .content__title,
.demo-2 .content--layout-team .content__author,
.demo-2 .content--layout-team .content__desc,
.demo-2 .content--layout-team .content__link {
	grid-column: 1;
}

.demo-2 .content--layout-team .content__author {
	writing-mode: horizontal-tb;
	text-align: left;
	padding: 0;
	margin-top: 0.5rem;
}

.demo-2 .content--layout-team .content__desc {
	padding: 0;
	margin-top: 1rem;
	max-width: 52rem;
}

.demo-2 .team-strip {
	grid-column: 1;
	grid-row: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.7rem;
	margin: 1.25rem 0 0.4rem;
	z-index: 11;
}

.demo-2 .team-strip__photo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255,255,255,0.4);
	box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.demo-2 .content--related {
	padding: 6rem 1.5rem 4rem;
	min-height: auto;
	height: auto;
	display: grid;
	align-content: center;
}

.demo-2 .site-footer {
	position: relative;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	width: min(100%, 1100px);
	margin: 0 auto;
	padding: 1.5rem 1.5rem 3rem;
	color: rgba(255,255,255,0.72);
	font-size: 0.82rem;
}

.demo-2 .site-footer__copy {
	margin: 0;
}

.demo-2 .site-footer__link {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.privacy-page {
	min-height: 100vh;
}

.privacy-page .privacy-fixed {
	padding-bottom: 0;
}

.privacy-page .privacy-shell {
	position: relative;
	z-index: 2;
	padding: 10rem 1.5rem 3rem;
}

.privacy-page .privacy-card {
	width: min(100%, 980px);
	margin: 0 auto;
	padding: 2.25rem;
	background: rgba(12, 11, 18, 0.5);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(10px);
}

.privacy-page .privacy-card__eyebrow {
	margin: 0 0 0.75rem;
	color: var(--link-color);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.76rem;
}

.privacy-page .privacy-card__title {
	margin: 0;
	font-family: 'nexa_boldregular', sans-serif;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 0.95;
}

.privacy-page .privacy-card__lead {
	margin: 1rem 0 0;
	max-width: 48rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.8;
}

.privacy-page .privacy-section {
	margin-top: 2rem;
}

.privacy-page .privacy-section h2 {
	margin: 0 0 0.85rem;
	font-size: 1.2rem;
	line-height: 1.4;
}

.privacy-page .privacy-section p,
.privacy-page .privacy-section li {
	color: rgba(255,255,255,0.88);
	line-height: 1.85;
}

.privacy-page .privacy-section ul {
	margin: 0;
	padding-left: 1.2rem;
}

.privacy-page .privacy-section a,
.privacy-page .site-brand__name--link {
	color: #fff;
}

.demo-2 .content__info {
	margin-bottom: 2rem;
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--link-color);
}

.demo-2 .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	width: min(100%, 1100px);
	margin: 0 auto;
}

.demo-2 .testimonial-card {
	padding: 1.5rem;
	text-align: left;
	background: rgba(10, 10, 18, 0.45);
	border: 1px solid rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
}

.demo-2 .testimonial-card__quote {
	margin: 0 0 1rem;
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
}

.demo-2 .testimonial-card__meta {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.demo-2 .testimonial-card__photo {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
	border: 2px solid rgba(255,255,255,0.25);
}

.demo-2 .testimonial-card__author {
	margin: 0;
	color: var(--link-color);
	font-size: 0.82rem;
}

.demo-3 {
	--background-color: #56cccf;
	--background-color-2: #41e0e4;
	--background-color-3: #1747c0;
	--text-color: #fff;
	--link-color: #fff;
	--link-hover-color: #17b1b5;
}

.demo-3 .morph {
	fill: none;
	stroke-width: 12px;
	stroke: #22bcc0;
}

@media screen and (max-width: 50em) {
	.content--fixed {
		height: auto;
		min-height: 0;
		display: block;
		z-index: 1000;
		position: absolute;
	}
	.codrops-header {
		align-items: center;
		flex-direction: column;
	}
	.deco--title {
		display: none;
	}
	.demos {
		text-align: center;
	}
	.demo-2 .content--fixed {
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"header"
			"hero";
		gap: 1.5rem;
	}
	.demo-2 .site-header {
		grid-template-columns: 1fr;
	}
	.demo-2 .site-nav-wrap {
		align-items: flex-start;
	}
	.demo-2 .site-nav {
		justify-content: flex-start;
	}
	.demo-2 .hero-panel {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		max-width: none;
		justify-self: stretch;
	}
	.demo-2 .content-wrap {
		padding-top: 3rem;
	}
	.demo-2 .testimonial-grid {
		grid-template-columns: 1fr;
	}
	.demo-2 .site-footer {
		justify-content: flex-start;
		padding-bottom: 2rem;
	}
	.privacy-page .privacy-shell {
		padding-top: 8rem;
	}
	.privacy-page .privacy-card {
		padding: 1.5rem;
	}
}

@media screen and (max-width: 40em) {
	.content--layout {
		transform: scale3d(0.8,0.8,1);
	}
	.demo-2 .content--layout {
		transform: none;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas:
			"title"
			"author"
			"desc"
			"link";
		padding: 1.5rem;
	}
	.demo-2 .content__img {
		grid-column: 1;
		grid-row: 1;
		width: min(100%, 320px);
		height: 320px;
		margin: 0 auto 1.25rem;
	}
	.demo-2 .content__title,
	.demo-2 .content__author,
	.demo-2 .content__desc,
	.demo-2 .content__link {
		grid-column: 1;
	}
	.demo-2 .team-strip {
		grid-column: 1;
		grid-row: auto;
		margin: 0.5rem 0 0.75rem;
	}
	.demo-2 .content__author {
		writing-mode: horizontal-tb;
		text-align: left;
		padding: 0;
		margin: 0.5rem 0 0;
	}
	.demo-2 .content--layout-team {
		grid-template-areas:
			"title"
			"author"
			"desc"
			"link";
	}
}

@media screen and (max-width: 36em) {
	.content--layout {
		transform: scale3d(0.7,0.7,1);
	}
	.demo-2 .site-brand__name {
		font-size: 2.4rem;
	}
	.demo-2 .hero-panel__title {
		font-size: 2.4rem;
	}
}

@media screen and (max-width: 32em) {
	.content--layout {
		transform: scale3d(0.6,0.6,1);
	}
	.content__author,
	.content__desc,
	.content__link {
		font-size: 1.35em;
	}
	.demo-2 .content__author,
	.demo-2 .content__desc,
	.demo-2 .content__link {
		font-size: inherit;
	}
}

@media screen and (max-width: 28em) {
	.content--layout {
		transform: scale3d(0.5,0.5,1);
	}
	.demo-2 .hero-panel,
	.demo-2 .content--layout,
	.demo-2 .testimonial-card {
		padding: 1.1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
