
@font-face {
	font-family: 'KelsamMontserrat';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('/static/fonts/montserrat.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'KelsamMontserrat';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('/static/fonts/montserrat_ital.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*@font-face {
	font-family: 'KelsamMontserrat';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('/static/fonts/montserrat_ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'KelsamMontserrat';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('/static/fonts/montserrat_ext_ital.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}*/

@font-face {
	font-family: 'KelsamPlayfairDisplay';
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
	src: url('/static/fonts/playfairDisplay.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*@font-face {
	font-family: 'KelsamPlayfairDisplay';
	font-style: italic;
	font-weight: 400 900;
	font-display: swap;
	src: url('/static/fonts/playfairDisplay_ital.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'KelsamPlayfairDisplay';
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
	src: url('/static/fonts/playfairDisplay_ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
	font-family: 'KelsamPlayfairDisplay';
	font-style: italic;
	font-weight: 400 900;
	font-display: swap;
	src: url('/static/fonts/playfairDisplay_ext_ital.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}*/




:root {
	color-scheme: light dark;

	--main-color: #FDB325;
	--main-color-hover: #FFD547;

	--bg-color: light-dark(#FFFFFF, #304145);
	--bg-color-inverted: light-dark(#304145, #FFFFFF);
	--text-color: light-dark(#000000, #F0EFEB);
	--accent-text-color: light-dark(#304145, #FFFFFF);
	--card-color: light-dark(#F0EFEB, #283437);
}
.light-color-scheme { color-scheme: light; }
.dark-color-scheme { color-scheme: dark; }

* { margin: 0; padding: 0; }
html, body { background: var(--bg-color); }
body { font-family: 'KelsamMontserrat', Tahoma, sans-serif; color: var(--text-color); font-size: 20px; }
.site { container-type: inline-size; min-width: 500px; }
p { line-height: 140%; margin-bottom: 30px; }
ul { line-height: 140%; margin-left: 28px; margin-bottom: 30px; }
	ul ul { margin-bottom: 15px; }
hr { display: block; clear: both; height: 1px; border: none; background: #FFF; }

.clear { display: block; clear: both; }
.spacer { height: 100px; }

a, a:visited, a:focus { text-decoration: none; outline: none; }
a:not(.no-a-style), a:not(.no-a-style):visited, a:not(.no-a-style):focus { color: var(--main-color); transition: all .2s ease-in-out; }
a:not(.no-a-style):hover { color: var(--main-color-hover); }

h1, h2, h3, h4 { font-family: 'KelsamPlayfairDisplay', Georgia; font-weight: 800; color: var(--accent-text-color); margin-bottom: 10px; }
h1 { font-size: 38px; }

input, textarea { box-shadow: inset 0 0 4px 0 rgba(0,0,0,.3); border-radius: 10px; width: 400px; box-sizing: border-box; padding: 10px 20px; border: none; outline: none; font-family: 'KelsamMontserrat', Tahoma, sans-serif; font-size: 20px; background-color: var(--card-color); }
textarea { min-width: 400px; max-width: 400px; }




.banner-hex-line { display: block; position: absolute; width: 5px; height: 80px; background: var(--bg-color); }

.banner { display: block; position: relative; float: left; margin: 10px 0 50px; width: 66%; height: 120px; background: var(--main-color); color: #000; font-family: 'KelsamPlayfairDisplay', Georgia; font-size: 50px; font-weight: 800; padding: 22px 0px 0px 100px; box-sizing: border-box; clip-path: polygon(0% 0%, calc(100% - 45px) 0%, 100% 50%, calc(100% - 45px) 100%, 0% 100%); }
.banner:hover { color: #000; }
	.banner .banner-hex-line { left: 80px; }
	.banner .banner-hex-line.top { bottom: 50%; transform-origin: 100% 100%; transform: rotate(-30deg); }
	.banner .banner-hex-line.bottom { top: 50%; transform-origin: 100% 0%; transform: rotate(30deg); }

.contact-cta { display: block; position: relative; float: right; margin-top: 36px; font-size: 30px; font-weight: 600; color: var(--bg-color); background: var(--bg-color-inverted); border-radius: 15px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; box-sizing: border-box; padding: 17px 100px; box-shadow: inset 0 0 4px 0 rgba(0,0,0,.75); }
	.contact-cta .banner-hex-line { right: 80px; }
	.contact-cta .banner-hex-line.top { bottom: 50%; transform-origin: 0% 100%; transform: rotate(30deg); }
	.contact-cta .banner-hex-line.bottom { top: 50%; transform-origin: 0% 0%; transform: rotate(-30deg); }

@container (max-width: 1280px)
{
	.banner { font-size: 27px; height: 83px; width: 60.5%; }
	.contact-cta { font-size: 16px; padding: 12px 100px 12px 20px; margin-top: 31px; }
}

.color-scheme-toggle { position: fixed; right: 0px; bottom: 40px; width: 170px; height: 50px; background: no-repeat 50% 50%; background-image: url('/static/images/color-scheme-toggle_light.png'); border-radius: 10px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; box-shadow: inset 0 0 4px 0 rgba(0,0,0,.3); background-color: var(--bg-color); cursor: pointer; }
.dark-color-scheme .color-scheme-toggle { background-image: url('/static/images/color-scheme-toggle_dark.png'); }

.page-content { padding: 0 100px 600px; }

.tag-filters { margin-bottom: 20px; }
	.tag-filters a { display: block; color: var(--text-color); font-size: 22px; font-weight: 500; margin-left: 25px; float: left; margin-bottom: 5px; padding: 5px 0 5px 35px; background: no-repeat 0% 50%; color: var(--accent-text-color); background-image: url('/static/images/tag-black.png'); background-size: 27px; }
	.dark-color-scheme .tag-filters a { background-image: url('/static/images/tag-white.png'); }
	.tag-filters a.active { background-image: url('/static/images/tag-active.png'); color: var(--main-color); }

.projects-grid { display: grid; grid-gap: 40px; grid-template-columns: repeat(auto-fill, 400px); margin: 0 -100px; padding: 0 100px; }
	.projects-grid .line-title { grid-column: 1/-1; margin: 100px 0; }

.project-box-parent { width: 400px; height: 300px; cursor: pointer; transform-style: preserve-3d; perspective: 800px; }
.project-box-parent:hover .project-box { transform: rotateY(180deg); }
	.project-box { display: block; position: relative; width: 100%; height: 100%; color: var(--text-color); transform-origin: 50% 50%; transition: transform 0.33s ease-in-out; transform-style: preserve-3d; box-shadow: 0 4px 3px 3px rgba(203,203,203,.75); border-radius: 15px; }
	.dark-color-scheme .project-box { box-shadow: 0 4px 3px 3px rgba(36,38,38,.75); }
		.project-box * { display: block; }
		.project-box > * { position: absolute; left: 0px; top: 0px; bottom: 0px; right: 0px; background-color: var(--card-color); border-radius: 15px; }
		.project-box-front { background-repeat: no-repeat; background-position: 50% 50%; background-size: cover; backface-visibility: hidden; }
			.project-mobile-preview { position: absolute; right: -10px; bottom: -15px; width: 100px; height: 203px; }
			.project-mobile-preview.landscape { transform-origin: 50% 75%; transform: rotate(-90deg); }
				.project-mobile-preview-shadow { position: absolute; left: 2px; top: 2px; right: 2px; bottom: 2px; border-radius: 13px; box-shadow: 0px 0px 11px 6px rgba(0,0,0,0.5); }
				.project-mobile-preview-phone { position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; background: url('/static/images/mobile-preview-phone.png') no-repeat 50% 50%; }
				.project-mobile-preview-image { position: absolute; left: 3px; top: 18px; width: 94px; height: 171px; background: #000 no-repeat 50% 50%; background-size: contain; }
		.project-box-back { padding: 25px; display: grid; grid-row-gap: 20px; grid-template-rows: auto 1fr auto; transform-origin: 50% 50%; transform: rotateY(180deg); }
			.project-box-back .project-title { font-family: 'KelsamPlayfairDisplay', Georgia; font-weight: 600; color: var(--accent-text-color); font-size: 30px; }
			.project-box-back .project-tags { display: grid; grid-column-gap: 20px; grid-row-gap: 10px; grid-template-columns: 1fr 1fr; }
				.project-box-back .project-tags .tag { width: 100%; }

.tag { border-radius: 5px; text-transform: uppercase; color: #000; font-size: 13px; font-weight: 600; background: var(--main-color); padding: 8px 20px 9px; box-sizing: border-box; text-align: center; }

@container (max-width: 600px)
{
	.banner { padding-left: 50px; }
		.banner .banner-hex-line { left: 30px; }
	.contact-cta { padding-right: 50px; }
		.contact-cta .banner-hex-line { right: 30px; height: 35px; }

	.page-content { padding: 0 50px 400px; }

	.tag-filters a { font-size: 16px; background-size: 20px; padding: 5px 0 5px 26px; margin-left: 22px; }

	.projects-grid { margin: 0 -50px; padding: 0 50px; }
}




.btn { display: inline-block; color: var(--bg-color); background: var(--bg-color-inverted); padding: 16px 22px; cursor: pointer; border-radius: 12px; font-size: 18px; font-weight: 500; text-align: center; margin-bottom: 50px; box-sizing: border-box; box-shadow: inset 0 0 4px 0 rgba(0,0,0,.75); }
.btn.has-footnote { margin-bottom: 0; }
	.btn-icon-right { padding-left: 8px; }
	.btn-icon-left { padding-right: 8px; }
.footnote { display: inline-block; font-size: 14px; font-style: italic; margin-bottom: 50px; }

.image-thumb { position: relative; display: block; width: 360px; height: 200px; background: #252525 no-repeat 50% 50%; background-size: cover; border-radius: 20px; overflow: hidden; box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.10); transition: all .2s ease-in-out; }
.image-thumb:hover { box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.15); }
	.image-thumb .link-arrow { position: absolute; right: 30px; top: 30px; font-size: 28px; filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.10)); opacity: 0; transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.5); }
	.image-thumb:hover .link-arrow { opacity: 1; right: 12px; top: 12px; }
	.image-thumb .caption { z-index: 2; background: var(--card-color); opacity: 0; transition: all .2s ease-in-out; font-size: 14px; font-weight: 600; color: var(--text-color); text-transform: uppercase; padding: 4px 16px; box-sizing: border-box; position: absolute; right: 0px; left: 0px; bottom: 0px; text-align: center; box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.15); line-height: normal; }
	.image-thumb:hover .caption { opacity: 1; }
.image-thumb.content-img { width: auto; height: auto; float: right; margin: 0 0 50px 50px; line-height: 0; }
	.image-thumb.content-img img { max-width: 100%; border-radius: 20px; min-width: 360px; }

.embed-youtube-manager { position: relative; display: block; width: 360px; height: 200px; background: #252525; }
	.embed-youtube-manager iframe { position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; }
.embed-youtube-manager.content-vid { float: right; margin: 0 0 50px 50px; }

.image-set { display: grid; grid-column-gap: 40px; grid-template-columns: repeat(auto-fill, 360px); }
	.image-set > * { margin-bottom: 40px; }

@container (max-width: 1280px)
{
	.image-thumb.content-img { margin: 0 auto 30px; width: fit-content; max-width: calc(100% - 4px); clear: both; float: none; }
	.embed-youtube-manager.content-vid { margin: 0 auto 30px; clear: both; float: none; }
}




/* fancybox changes */
.fancybox-caption-wrap { background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.8) 30%) !important; }
.fancybox-caption { border-top: none !important; text-align: center !important; font-size: 22px !important; }
.fancybox-thumbs { background: var(--bg-color) !important; }
.fancybox-thumbs__list a:before { border: 2px solid #FFF !important; border-color: var(--main-color) !important; }
.fancybox-progress { background-color: #FFF !important; }
.fancybox-infobar { mix-blend-mode: initial !important; }
/*.fancybox-stage { transition-property: all !important; backdrop-filter: grayscale(100%) !important; }
.fancybox-bg { background: rgba(0, 0, 0, 0.0) !important; opacity: 1 !important; transition-property: all !important; }
.fancybox-is-open .fancybox-bg { opacity: 1 !important; background: rgba(0, 0, 0, 0.8) !important; }*/
.fancybox-thumbs__list a, .fancybox-thumbs__list a::before { border-radius: 8px; }
.fancybox-modal-link-content { display: none !important; }
.fancybox-modal-html { display: inline-block !important; background: #282326 !important; box-shadow: 0 20px 44px -4px rgba(0, 0, 0, 0.20); padding: 16px !important; border-radius: 12px; }
.fancybox-modal-html ul, .fancybox-modal-html p { margin-bottom: 0 !important; }
.fancybox-modal-html .fancybox-close-small::after { position: absolute; right: 16px; top: 16px; content: "\f057"; color: #C1BCBF; display: inline-block; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 24px; }
.fancybox-modal-html .fancybox-close-small * { display: none; }
.fancybox-modal-html.no-close-btn .fancybox-close-small { display: none; }
.fancybox-modal-html > h3:first-child { margin: -14px 50px 16px 0; font-size: 32px; }
.fancybox-modal-html .btn { background: #3B3538; }
