  @import url('https://fonts.googleapis.com/css?family=Markazi+Text|Raleway');

/* Variables : START */   
:root {
    --brand-clr-1: #112447;
    --brand-clr-2: #0ca8ed;
    --brand-clr-3: #F5F7F7;
	--grey-light: #F5F7F7;
	--grey-medium: #9AA3B1;
	--grey-dark: #4A5973;
	--dark: #1A191E;
	
	--brand-blue-100: #112447;
	--brand-blue-90: #0f3054;
	--brand-blue-80: #0d3d60;
	--brand-blue-70: #0b496d;
	--brand-blue-60: #095679;
	--brand-blue-50: #086286;
	--brand-blue-40: #066f92;
	--brand-blue-30: #047b9f;
	--brand-blue-20: #0288ab;
	--brand-blue-10: #0094b8;
	
	--header-font: 'Markazi Text', serif;
	--body-font: "Montserrat", sans-serif;
	
	--radius-button: 100rem;
	--radius-card: .5rem;
	--radius-100: 100rem;
	--radius-lg: 5rem;
	--radius-md: 2rem;
	--radius-sm: .5rem;
	--radius-xs: .25rem;
	
	--shadow-sm: 0 2px 4px rgba(17,36,71,.35);
	--shadow-md: 0 4px 12px rgba(17,36,71,.35);
	--shadow-lg: 0 6px 20px rgba(17,36,71,.35);
	
	--col-gap: 1.5rem;
	--col-gap-s:;
	--col-gap-sm:;
	--col-gap-sm:;
	
	--max-width: 1104px;
	--max-width-wide: 1500px;
	
	--nav-height: 80px;
	--nav-height-scrolled: 70px;

	--body-padding:3rem;
	
	--m-100: .25rem;
	--m-200: .5rem;
	--m-300: .75rem;
	--m-400: 1rem;
	--m-500: 1.5rem;
	--m-600: 2rem;
	--m-700: 2.5rem;
	--m-800: 3rem;
	--m-900: 4rem;	
	--m-1000: 5rem;
	
	--m-xs: var(--m-100);
	--m-sm: var(--m-200);
	--m-md: var(--m-400);
	--m-lg: var(--m-600);
	--m-xl: var(--m-800);
	--m-xxl: var(--m-1000);
}

@media screen and (max-width: 575px) {
	:root {
		--nav-height: 60px;
		--body-padding: 1.5rem;
	}
}


/* TEMPORARY STYLES : START */



#adobe-dc-view{
	height: calc(100vh - var(--nav-height));
	height: calc(100svh - var(--nav-height));
	min-height: calc(100svh - var(--nav-height));
	max-width: 1200px;
	width: calc(100vw - 3rem);
	margin: 0 auto;
	margin-top: var(--nav-height);
	padding: 0 0 1.5rem 0;
}

#adobe-dc-view iframe{
	border-radius: .5rem !important;
	overflow: clip;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.pdf-card-wrapper{
	display: grid;
	min-height: calc(100svh - var(--nav-height));
	width: 100vw;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: var(--nav-height);
	padding: 0 1.5rem 1.5rem 1.5rem;
}

.pdf-card{
	position: relative;
	display: grid;
	background-color: white;
	border-radius: .5rem;
	overflow: clip;
}

.pdf-image{
	position: relative;
	z-index: 2;
	display: block;
	margin: 0;
	padding: 0;
}

.pdf-footer-buttons{
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1.5rem;
}

/* TEMPORARY STYLES : END */



/* Site Wide Styles : START */   
html{

}

body {
    margin: 0;
    position: relative;
	font-size: 15px;
	opacity: 1;
	color: var(--brand-clr-1);
	background-color: var(--brand-clr-1);
/*	transform: translateX(0);*/
	transition: opacity .5s ease-in-out;
}

html,body{
     overscroll-behavior: auto;
     background: var(--brand-clr-1);
}

/* Fade-in state */
body.fade-in {
	opacity: 1;
}
/* Fade-out state */
body.fade-out {
/*  transform: translateX(10000px);*/
	opacity: 0;
	transition: opacity .5s ease-in-out;
}

h1, h2, h3{
	font-family: var(--header-font);
	font-weight: 500;
	line-height: 0.938;
    letter-spacing: -.5px;
	color: var(--brand-clr-1);
}

h4, h5, h6, p, li{
	font-family: var(--body-font);
}

h1{
	font-size: 48px;
}

h2{
	font-size: 34px;
}

h3{
	font-size: 28px;
}

h4{
	font-size: 22px;
	font-weight: 400;
}

h5{
	font-size: 18px;
	font-weight: 400;
}

h6{
	font-size: 15px;
	font-weight: 700;
}

p, li{
    color: var(--brand-clr-1);
    font-size: 15px;
	font-size: 16px;
/*	font-family: 'Figtree', sans-serif;*/
}

.txt-link{
	font-weight: bold;
	color: var(--brand-clr-2);
	text-decoration: none;
	transition: .2s ease-in-out;
}

.txt-link:hover{
	color: var(--brand-clr-2);
	text-decoration: underline;
	transition: .2s ease-in-out;
}

.txt-link--reverse{
	color: white;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 75rem;
}

hr{
	border-color: transparent;
	background-color: rgba(17, 36, 71, .75);    
	height: 2px;
    border-radius: var(--radius-button);
	margin: 1rem 0;
	opacity: 1;
	width: 100%;
}

hr:not([size]){
	height: 2px;
}

hr.brand-clr-2{
	background-color: var(--brand-clr-2);
}

/* Phase Out */
.max-body-width{
    max-width: 1200px
}
/* Phase Out */

.body-width-reg{
/*    max-width: 1200px;*/
	max-width: var(--max-width);
}

.body-width-max{
    max-width:  var(--max-width-wide);
}

.dbtw-background{
    background-color: var(--brand-clr-1);
}

.drop-shadow--sm{box-shadow: --shadow-sm;}
.drop-shadow--md{box-shadow: --shadow-md;}
.drop-shadow--lg{box-shadow: --shadow-lg;}

.color-brand-1{color: var(--brand-clr-1);}
.color-brand-2{color: var(--brand-clr-2);}
.color--grey-dark{color: var(--grey-dark);}
.color--grey-medium{color: var(--grey-medium);}
.color--grey-light{color: var(--grey-light);}

.no-click{pointer-events: none;}


/* Utility Styles */
.m-100{margin: var(--m-100);}

.mb-100{margin-bottom: var(--m-100);}



/* Layout Styles */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	padding-right: var(--body-padding);
 	padding-left: var(--body-padding);
	transition: .2s ease-in-out;
}

@media screen and (max-width: 575px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		transition: .2s ease-in-out;
	}
}

.col--50-50{display: grid;grid-template-columns: 1fr 1fr;}

.grid-rows--2{grid-template-rows: auto auto;}





/* Button Styles */

.btn{
	display: inline-flex;
/*	display: flex;*/
	column-gap: .5rem;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: max-content;
	position: relative;
	background-color: var(--brand-clr-1);
	color: white;
	border: 1px solid var(--brand-clr-1);
	padding: .75rem 1.75rem;
	border-radius: var(--radius-button);
	transition: .2s ease-in-out;
	overflow: hidden;
	isolation: isolate;
}

.btn .active-effect{
	position: absolute;
	width: 33.33%;
	height: 100%;
	z-index: -1;
	background: transparent;
}

.btn .active-effect:first-child{left: 0;top: 0;}
.btn .active-effect:last-child{right: 0;top: 0;}

.btn::before{
	content: '';
	position: absolute;
	z-index: -1;
/*	background: rgba(17,36,71,.5);*/
    background: rgba(255,255,255,1);
	width: 10%;
	aspect-ratio: 1;
	border-radius: 50%;
	inset: 0;
	margin: auto;
	opacity: 0;
	
	transition: transform 1000ms 100ms, opacity 100ms;
}

.btn:active::before{
	transform: scale(20);
	opacity: 1;
	
	transition: transform 1000ms, opacity 500ms;
}

.btn:has(.active-effect:first-child:active)::before{margin-left: 0;}
.btn:has(.active-effect:last-child:active)::before{margin-right: 0;}

.btn:has(.active-effect:first-child:active)::before,
.btn:has(.active-effect:last-child:active)::before{
	transition: transform 500ms, opacity 250ms;
}




.btn:hover{
	background-color: var(--brand-clr-2);
	color: white;
	border: 1px solid var(--brand-clr-2);
	transition: .2s ease-in-out;
}

.btn--reverse-outlined, .btn-outlined--white{
	padding: .75rem 1.75rem;
	border-radius: var(--radius-button);
	background-color: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	color: white;
	transition: .2s ease-in-out;
}

.btn--reverse-outlined:hover, .btn-outlined--white:hover{
	background: linear-gradient(rgba(255,255,255, 0.05) 15%, rgba(255,255,255, 0.15));
	border: 1.5px solid white;
	color: var(--brand-clr-1);
	color: white;
    transition: .2s ease-in-out;
}

.btn--reverse-outlined:active{
	color: var(--brand-clr-1);
}

.btn--blur-white{
	background-color: rgba(255,255,255,0.925);
	color: var(--brand-clr-1);
	border: 1px solid rgba(255,255,255,0.925);
	border-radius: var(--radius-button);
	text-decoration: none;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.btn--blur-white:hover{
	background-color: rgba(255,255,255,1);
	color: var(--brand-clr-2);
	border: 1px solid rgba(255,255,255,1);
	box-shadow: var(--shadow-md);
	text-decoration: none;
}

/* Class below was an attempt to make the blur button have a beveled edge that resembled glass. Needs tweaking */
/*
.btn--blur-white::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: var(--radius-button);
	box-shadow: inset 0.2rem 0.2rem 0.2rem 0 rgba(255,255,255,0.5), inset -0.2rem -0.2rem 0.2rem 0 rgba(0,0,0,0.5);
}
*/

.btn--cta{
	background-color: var(--brand-clr-2);
	color: white;
	border: 1.5px solid var(--brand-clr-2);
	transition: .2s ease-in-out;
}

.btn--primary-outlined{
	background-color: transparent;
	color: var(--brand-clr-1);
	border: 1.5px solid var(--brand-clr-1);
	transition: .2s ease-in-out;
}

    




/* Card Styles */
.card{
	display: grid;
	border: 1px solid rgba(17,36,71,0.05);
	border-radius: var(--radius-card);
	overflow: hidden; overflow: clip;
	box-shadow: 0 0 4px rgba(17,36,71,0.125);
	transition: .2s ease-in-out;
}

.card--proj{
	background-color: var(--grey-light);
}

.card--proj__copy{
	color: var(--grey-medium);
	font-weight: bolder;
	font-size: .875rem;
	max-width: max-content;
}

.card--proj-carousel__swipper{
	min-width: 0px;
}

.card--proj-vert-scroll{
	max-height: 500px;
	overflow-y: scroll; overflow-y: auto;
}


/* Card Specific Custom Styles */
.card--proj-vert-scroll .card__inner-wrapper{
	display: grid;
	justify-items: center;
	grid-gap: .25rem;
}






/* Nav Styles START */ 

#dbtw-nav{
    display: block;
    width: 100%;
	height: var(--nav-height);
	background-image: linear-gradient(180deg, rgba(17, 36, 71, 1), rgba(17, 36, 71, .2) 72%, rgba(17, 36, 71, 0.1) 85%, rgba(17, 36, 71, 0));
	padding: 0;
	transition: .25s ease-in-out;
	position: fixed;
	z-index: 1500;
}

.nav-scroll{
	background-color: rgba(17,36,71,0.95);
	backdrop-filter: blur(3px);
}

#nav-container{
	height: 100%;
/*	overflow: hidden;*/
}

#dbtw-nav.mvp-nav #nav-container{
/*	justify-content: center;*/
	justify-content: space-between;
}

 #dbtw-nav .navbar-toggler, #dbtw-nav.mvp-nav #dbtw-nav-list{
	display: none !important;
}

.project-page #dbtw-nav, .about-page #dbtw-nav, .contact-page #dbtw-nav{
	background-color: rgba(17,36,71,0.95);
	position: fixed;
	z-index: 1500;
	backdrop-filter: blur(3px);
}

.project-page #dbtw-nav .nav-item:first-child .nav-link{
	color: var(--brand-clr-2)
}

.about-page #dbtw-nav .nav-item:nth-child(2) .nav-link{
	color: var(--brand-clr-2)
}

.contact-page #dbtw-nav .nav-item:nth-child(3) .nav-link{
	color: var(--brand-clr-2)
}

#dbtw-nav:has(.navbar-toggler.menu-open){
	background-color: rgba(17,36,71,0.98);
}


.nav-grid{
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 2.5rem;
    margin: 0 auto;
}

#dbtw-nav .navbar-brand{
	padding-top: .5rem; 
	padding-bottom: .5rem; 
	position: relative;
	height: var(--nav-height);
}

#nav-logo, #nav-logo-small{
    display: flex;
	position: relative;
	height: calc(var(--nav-height) - 1rem);
	filter: drop-shadow(0px 0px 5px rgba(17,36,71,0.75));
	transition: .25s ease-in-out;
}

#nav-logo{
	top: 0;
	opacity: 1;
}

/*
#dbtw-nav.mvp-nav #nav-logo{
	margin: 0 auto;
}
*/

#nav-logo-small{
	top: auto;
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width: 575px) {
	#nav-logo{
		opacity: 0;
		top: -5rem;
		pointer-events: none;
		transition: .25s ease-in-out;
	}

	#nav-logo-small{
		top: calc((var(--nav-height) - 1rem) * -1);
		opacity: 1;
		pointer-events: visible;
		transition: .25s ease-in-out;
	}	
}


#nav-logo .cls-1{
	fill: white;
	transition: .25s ease-in-out;
}

#nav-logo .cls-2{
	fill: #2ea5de;
	transition: .25s ease-in-out;
}

#nav-logo:hover, #nav-logo-small:hover{
	transform: scale(1.015);
	transition: .25s ease-in-out;
}

#nav-logo:hover .cls-1, #nav-logo:hover .cls-2{
	opacity: .9;
	transition: .25s ease-in-out;
}

#dbtw-nav .navbar-collapse{flex-grow: 0;}

#dbtw-nav .navbar-nav{align-items: center;transition: .25s ease-in-out;}

#dbtw-nav .nav-item{
    padding: 0 1.75vw;
	filter: drop-shadow(0px 0px 5px rgba(17,36,71,0.75));
    transition: .15s ease-in-out;
}

#dbtw-nav .nav-item--mobile-home{
	display: none;
}

.project-page #dbtw-nav .nav-item {
/*    margin: 0 1.5rem;*/
    transition: .15s ease-in-out;
}

#dbtw-nav .nav-item:last-child {
    padding: 0 0 0 1.75vw;
    transition: .15s ease-in-out;
}

#dbtw-nav .nav-item:last-child .nav-link{
	padding: .75rem 0rem .75rem 1rem;
}

.spacer{
	display: block;
	height: calc(50px + (600px - 100vw) * 0.5);
}


#dbtw-nav .nav-item .nav-link{
    color: white;
    font-size: 1.5rem;
    font-family: var(--header-font);
	line-height: 1.5;
	padding: .75rem 1rem;
    transition: .15s ease-in-out;
}

#dbtw-nav .nav-item .nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0ca8ed;
    transition: width .3s;
}

#dbtw-nav .nav-item .nav-link:hover::after{
    width: 100%;
    transition: width .3s;
}

#dbtw-nav .nav-item .active{
    color: #0ca8ed;
    transition: .15s ease-in-out;
}

#dbtw-nav .nav-item .nav-link:hover{
    color: #0ca8ed;
    transition: .15s ease-in-out;
}

.navbar-toggler {
    position: absolute;
/*    top: 32px;*/
    right: var(--bs-gutter-x,1.5rem);
    cursor: pointer;
    z-index: 12399994;
    height: 24px;
	filter: drop-shadow(0px 0px 5px rgba(17,36,71,0.75));
}

.navbar-toggler::before, .navbar-toggler::after {
    content: '';
	display: block;
    width: 25px;
	position: absolute;
    right: 0px;
	transition: all .3s ease;
	-ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.navbar-toggler::before {
    top: 9px;
    right: 0px;
    height: 3px;
	background: white;
}

.navbar-toggler::after {
    top: 0px;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    height: 21px;
}

.navbar-toggler:hover::before {
	background: var(--brand-clr-2);
}

.navbar-toggler:hover::after {
	border-top: 3px solid var(--brand-clr-2);
    border-bottom: 3px solid var(--brand-clr-2);
}

.navbar-toggler.menu-open::before, .navbar-toggler.menu-open::after {
	top: 9px;
    background: var(--brand-clr-2);
    transition: all .3s ease;
    -ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.navbar-toggler.menu-open::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar-toggler.menu-open::after {
    border: 0;
    height: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}

@media screen and (max-width: 575px) {
	#dbtw-nav-list{
		background-color: rgba(17, 36, 71, 0.98);
		position: absolute;
		left: 0;
		right: 0;
		top: var(--nav-height);
		bottom: auto;
		padding: var(--body-padding);
		padding-bottom: 0;
		transition: .25s ease-in-out;
	}
	
	#dbtw-nav-list.show{
		display: grid;
	}
	
	#dbtw-nav .navbar-nav{
		display: grid;
		grid-template-rows: 1fr 1fr 1fr auto;
		height: calc(100vh - var(--nav-height) - (var(--body-padding) * 1));
		height: calc(100dvh - var(--nav-height) - (var(--body-padding) * 1));
		width: 100%;
		gap: 1.5rem;
/*		padding-bottom: 1rem;*/
	}
	
	/*
	#dbtw-nav-list{
        height: calc(100dvh - var(--nav-height));
		padding: var(--body-padding);
		padding-bottom: 0px;
		position: absolute;
		top: var(--nav-height);
		right: 0;
		bottom: auto;
		left: 0;
		background-color: rgba(17, 36, 71, 0.98);
		transition: .25s ease-in-out;
	}
	
	#dbtw-nav-list.show{
		display: grid;
	}
	
	#dbtw-nav .navbar-nav{
        display: grid;
        width: 100%;
        gap: 1.5rem;
        height: 100%;
	}
	*/
	
	#dbtw-nav .nav-item {
		display: grid;
		border-radius: var(--radius-card);
		box-shadow: 0 2px 12px #08152b;
/*		background-color: rgba(17,36,71,0.45);*/
		background-color: var(--brand-blue-90);
        align-self: stretch;
        border: 1px solid var(--brand-blue-80);
		padding: 0 !important;
        overflow: hidden;
	}
	
	#dbtw-nav .nav-item:hover {
		background-color: var(--brand-blue-70);
        border: 1px solid var(--brand-blue-60);
	}
	
	#dbtw-nav .nav-item--mobile-home{
        max-width: max-content;
        margin: 0 auto;
        border-radius: var(--radius-card) var(--radius-card) 0 0;
    }
	
	#dbtw-nav .nav-item--mobile-home .nav-link{
		padding: 1.5rem !important;
    }
	
	#dbtw-nav .nav-item--mobile-home .icon{
		width: 100%;
        max-width: 35px;
	}
	
	#dbtw-nav .nav-item .nav-link::after {
	 	content: none;
	}
	
	#dbtw-nav .nav-item a{
		display: grid;
		font-size: 1.875rem;
		margin: 0;
		width: 100%;
		align-items: center;
		text-align: center;
	}

}

/* Nav Styles END */ 




/* Site Wide Styles END */  





/* Home Page Styles START */

.home-page{
    background-color: var(--brand-blue-70);
	background: linear-gradient(var(--brand-clr-1), var(--brand-blue-60));
}

.home-page main{
	overflow: hidden;
}

.intro-text {
	display: block;
	position: relative;
	top: 1rem;
	text-align: center;
	padding: .5rem 2rem;
	transition: .2s ease-in-out;
}

.intro-text h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.intro-text p {
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-family: 'Raleway', sans-serif;
	color: white;
	margin: 0 auto .5rem auto;
	letter-spacing: 1px;
	max-width: 48ch;
}  

.intro-text a{
	text-decoration: none;
	color: white;
    transition: .15s ease-in-out;
}

.intro-text a:hover{
	color: var(--brand-clr-2);
    transition: .15s ease-in-out;
}

.intro-text span{
	font-size: 50px;
	color: var(--brand-clr-2);
	animation: pulse 1s infinite;
	transition: .15s ease-in-out;
}

.intro-text span:hover{
	color: white;
	transition: .15s ease-in-out;
}

@media screen and (max-width: 1300px) {
	.intro-text{
		top: 0;
		transition: .2s ease-in-out;
	}
}

@media screen and (max-width: 670px) {
	.intro-text{
		top: -2rem;
		transition: .2s ease-in-out;
	}
}

@media screen and (max-width: 550px) {
	.intro-text{
		/*top: clamp(-6rem, calc((700px - 100vw) / (700 - 320) * -6rem), 0rem);*/
		top: -4rem;
		transition: .2s ease-in-out;
	}
}

@media screen and (max-width: 475px) {
	.intro-text{
		top: -6rem;
		transition: .2s ease-in-out;
	}
}

@media screen and (max-width: 400px) {
	.intro-text{
		top: -8rem;
		transition: .2s ease-in-out;
	}
}

@keyframes pulse {
  0% { transform: translateY(0px); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0px); }
}


.section--hero{
	display: grid;
	align-items: center;
	justify-items: center;
	position: relative;
/*	padding-top: 3rem;*/
	padding-top: 11%;
/*	background:linear-gradient(0deg, #08ACD4 21.1%, #0986AD 30.35%, #0A658C 39.6%, #0B4E74 48.84%, #0B3F65 57.32%, #0C3B61 64.26%, #112447 98.16%);*/
	background:linear-gradient(0deg, #112447 21.1%, #0986AD 30.35%, #0A658C 39.6%, #0B4E74 48.84%, #0B3F65 57.32%, #0C3B61 64.26%, #112447 98.16%);
	transition: .2s ease-in-out;
}

/*
@media screen and (max-width: 650px) {
	.section--hero{
		padding-top: 0rem;
		transition: .2s ease-in-out;
	}
}
*/




#parallax-container {
    display: block;
	width: 100%;
  	aspect-ratio: 7 / 4;
	transform: scale(1.001);
}

.parallax_layers {
    position: absolute;
/*    top: calc(165px - 25%);*/
	top: auto;
    background-position: top center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transform: translateY(0px);
    width: 100%;
	height: 100%;
}

.layer_0{
    background-color: #112447;
    top: 90%;
    width: 100%;
    z-index: 99;
}
.layer_1{z-index: 26;/*top: 3%;*/}
.layer_2{z-index: 25;/*top: 3%;*/}
.layer_3{z-index: 24;/*top: 2%;*/} 
.layer_4{z-index: 23;/*top: 2%;*/}
.layer_5{z-index: 27;}
.layer_6{z-index: 22;}
.layer_7{z-index: 21;/*top: 2%;*//*top: calc(165px - 32%);*/}
.layer_8{z-index: 20;/*top: 0%;*/}
.logo_layer{}
    
/*
#parallax-container div {
  width: 100%;
}    
*/

#home-headshot{
    width: 100%;
}    

.welcome-grid{
    display: grid;
    grid-template-columns: 160px 1fr;
    grid-gap: 2rem;
    align-items: center;
}
    
#content {
    display: block;
    position: relative;
/*    background-color: #112447;*/
	background: linear-gradient(#112447, #0a172b);
    color: #ffffff;
    padding: 0 0 3rem 0;
/*    margin: 1vw 0 0 0;*/
/*	margin: calc(165px + 25%) 0 0 0;*/
    width: 100%;
    z-index: 1000;
	margin: 0;
	margin-top: -5vw;
}

  
#content section{
    padding: 0 1rem;
}

#content hr{
    height: 2px;
    border-radius: var(--radius-button);
    background-color: rgba(255, 255, 255, 0.25);
}

#content h1{
	color: white;
}

.work-anchor{
	position: absolute;
	top: -100px;
}

.project-row{
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 1.5rem;
	align-items: center;
	justify-content: flex-start;
	margin: 3rem 0;
}

.project-row__info{
	display: grid;
	justify-items: flex-start;
	order: 1;
	transition: .2s ease-in-out;
}

.project-row__title a{
	color: white;
	transition: .2s ease-in-out;
}

.project-row__title a:hover{
	color: var(--brand-clr-2);
	transition: .2s ease-in-out;
}

.project-row__info p{
	color: white;
	margin-bottom: 2rem;
}

.animated-underline{
    text-decoration: none;
    background-image: linear-gradient(var(--brand-clr-2), var(--brand-clr-2));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 2px;
    transition: background-size .3s linear;
	transition-delay: .15s;
	border-radius: 2px;
}

.animated-underline:hover {
    background-size: 100% 2px;
	transition: .2s ease-in-out;
}

.project-row:hover .animated-underline{
    background-size: 100% 2px;
	transition: .2s ease-in-out;
}

.intro-text .animated-underline{
	line-height: .85;
    display: inline-block;
}

.project-thumbnail-16-9{
	aspect-ratio: 16/9;
	position: relative;
    overflow: hidden;
	border-radius: var(--radius-sm);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	order: 2;
	transition: .2s ease-in-out;
}

.project-thumbnail-16-9 img{
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center center;
    border-radius: var(--radius-sm);
	transition: .2s ease-in-out;
}

.project-row:hover .project-thumbnail-16-9 img{
    transform: scale(1.02);
	transition: .2s ease-in-out;
}

.project-thumbnail-16-9:hover img{
	opacity: .15;
    filter: blur(2.5px);
    transition: all .15s ease-in-out;
    transition-delay: 1s ease-in-out;
}

.thumb-text{	
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
    width: max-content;
	padding: 1.5rem;
	margin: 0;
	opacity: 0;
	transition: opacity .15s ease-in-out;
	text-align: center;
	z-index: 11;
}

.project-thumbnail-16-9:hover .thumb-text{
	opacity: 1;
	transition: opacity .15s ease-in-out;
}

.proj-view-text{
	display: grid;
	grid-template-columns: 20px max-content 20px;
	grid-gap: 5px;
	justify-items: center;
	margin: 0 auto;
	width: max-content;
    align-items: center;
}

.proj-view-text p{
    font-family: var(--body-font);
    text-decoration: none;
    color: white;
    font-size: 1.125rem;
    width: max-content;
    margin: 0;
    transition: .2s ease-in-out;
    font-weight: 550;
}

.proj-view-text p:hover{
    text-decoration: none;
    color: var(--brand-clr-2);
	transition: .2s ease-in-out;
}

.proj-view-text hr{
    height: 1px;
    background-color: white;
    border: none;
    width: 100%;
}

@media screen and (max-width: 780px) {
	.project-row{
		grid-template-columns: 1fr;
	}
	
	.project-row__info {
        order: 2;
    }
	.project-thumbnail-16-9 {
		order: 1;
	}
}










/*
.folio-thumb-grid{
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
	gap: 1rem;
}

.placeholder-thumb{
    display: block;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #caebf8;
}

.project-thumbnail{
    display: flex;
    flex: 0 1 calc(33.33% - 1rem);
    width: 100%;
    aspect-ratio: 1 / 1;
	position: relative;
    overflow: hidden;
	transition: opacity .15s ease-in-out;
}



.project-thumbnail h2{	
	display: block;
	margin: 0;
	font-size: 1.75rem;
	color: white;
	text-decoration: none;
	padding-bottom: 1px;
}

.project-thumbnail .thumb-text h2::after{
	content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0ca8ed;
    transition: width .3s ease-in-out;
	transition-delay: .1s;
}

.project-thumbnail:hover .thumb-text h2::after{
    width: 100%;
    transition: width .3s ease-in-out;
	transition-delay: .1s;
}

.project-thumbnail:hover  .animated-underline{
    background-size: 100% 2px;
    color: inherit;
}

.project-thumbnail .thumb-text h2:hover{
	color: #0ca8ed;
	transition: .2s ease-in-out;
}

.project-thumbnail .thumb-text p:hover{
	color: #0ca8ed;
	transition: .2s ease-in-out;
}

.project-thumbnail img{
	opacity: 1;
	z-index: 1;
	aspect-ratio: auto;
	margin: 0 auto;
	display: block;
	position: absolute;
	transform: scale(1);
	width: 100%;
	transition: all .15s ease-in-out;
}

.project-thumbnail:hover img{
    opacity: .25;
	filter: blur(2px);
	transform: scale(1.05);
    transition: all .15s ease-in-out;
    transition-delay: 1s ease-in-out;
}

@media only screen and (max-width: 850px) {
	.project-thumbnail{
		flex: 0 1 calc(50% - 1rem);
	}
}
   
@media only screen and (max-width: 575px) {
	.project-thumbnail{
		flex: 0 1 calc(100% - 1rem);
	}
}
*/

/* Home Page Styles END */






.project-page{
    background: white;
}

.project-header{
	height: 70vh;
    height: 70svh;
    overflow: clip;
	z-index: 1;
    position: relative;
}

.project-header::before{
	content: '';
    display: block;
	height: 70vh;
    height: 70svh;
    position: absolute;
    top: 0;
    width: 100%;
	box-shadow: 0px -40px 70px -50px rgba(0, 0, 0, 0.75) inset;
}

.project-header img{
	width: 100%;
	height: 100%;
    object-fit: cover;
    object-position: center center;
}

.project-body-footer{
	position: relative;
	overflow-x: hidden; overflow-x: clip;
	z-index: 2;
}

.project-body{
	display: grid;
	justify-items: center;
	margin: 0 auto;
    position: relative;
    top: 0;
	border-radius: var(--radius-md);
	gap: 6rem;
    z-index: 2;
}

.project-intro{
	display: grid;
	grid-template-columns: 1fr 300px;
    grid-gap: 1.5rem 4rem;
    background: white;
    padding: 3rem 3rem 0 3rem;
    border-radius: var(--radius-md);
    margin: 0 auto;
	max-width: calc(1104px + 6rem);
	position: relative;
/*	top: -3rem;*/
	margin-top: -3rem;
	margin-bottom: -3rem;
	transition: .15s ease-in-out;
}

.project-intro::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	box-shadow: 0px 0px 15px rgba(17,36,71,0.15);
    border-radius: var(--radius-md);
    z-index: 1;
}

.project-intro::after{
	content: '';
	position: absolute;
	left: -3rem;
	right: -3rem;
	top: 30%;
	bottom: -3rem;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0));
	z-index: 2;
}

.project-intro__copy{
	flex: 4 2 350px;
	position: relative;
    z-index: 3;
}

.project-intro__copy p:last-child{
	margin-bottom: 0;
}

.deliverables{
	flex: 3 1 0;
    min-width: max-content;
	position: relative;
    z-index: 3;
}

.deliverables ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.deliverables ul li{
	list-style: none;
	margin: 0;
	padding: 0;
}

.deliverables a{
	color: var(--brand-clr-1);
	text-decoration: none;
    transition: .15s ease-in-out;
}

.deliverables a:hover{
	color: var(--brand-clr-2);
    transition: .15s ease-in-out;
}

@media screen and (max-width: 900px){
	.project-intro{
		grid-template-columns: 1fr;
	}
	
	.deliverables ul{
		column-count: 2;
		column-gap: 3rem;
	}
}

@media screen and (max-width: 600px){
	
	.deliverables ul{
		column-count: 1;
	}
}





.filter{
	display: grid;
	width: 100%;
	position: relative;
    z-index: 2;
}

.filter p{
	text-align: center;
/*	grid-column: 1/4;*/
}




.filter__grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: .5rem;
	width: 100%;
}

.filter-btn{
	display: flex;
	height: 300px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: var(--radius-card);
	overflow: hidden;
	position: relative;
}

.filter-btn:hover{
	transform: scale(1.02);
	transition: .25s ease-in-out;
	cursor: pointer;
	box-shadow: 0px 7px 35px rgba(17,36,71,0.25);
}

.filter-btn img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s ease-in-out;
}

.filter-btn__bg{
	position: absolute;
    z-index: 1;
	transform: scale(1);
	transition: .25s ease-in-out;
}

.filter-btn:hover .filter-btn__bg{
	transform: scale(1.05);
	transition: .75s ease;
}

.filter-btn__content{
	display: grid;
	justify-items: center;
    width: 100%;
	padding: 1.5rem;
	position: relative;
	z-index: 2;
}

.filter-btn__content h2{
	margin-bottom: 0;
	color: white;
}

.filter-btn__content-intial, .filter-btn__content-hover{
	display: grid;
    grid-gap: 1.5rem;
    padding: 2rem 2.5rem;
	width: 100%;
	position: absolute;
	justify-items: center;
	transition: .4s ease-in-out;
}

.filter-btn__content-intial{
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	max-width: 250px;
}

.filter-btn:hover .filter-btn__content-intial{
	top: -100%;
	transform: translateY(0%);
	opacity: 0;
	transition: .4s ease-in-out;
}

.filter-btn__content-hover{
	bottom: -100%;
	grid-gap: .5rem;
	opacity: 0;
}

.filter-btn:hover .filter-btn__content-hover{
	bottom: 50%;
	transform: translateY(50%);
	opacity: 1;
	transition: .4s ease-in-out;
}

@media screen and (max-width: 750px) {
	.filter__grid{
		grid-template-columns: 1fr 1fr;
	}
}



.proj-section{
/*	margin-bottom: 5rem;*/
	margin-bottom: 1rem;
}

/*
.project-body div:nth-last-child(2){
	margin-bottom: 0;
}
*/

.proj-section__grid{
	display: grid;
	grid-template-columns: 3px 1fr;
	grid-gap: 2rem;
}

.proj-section__border {
	width: 3px;
	background-color: rgb(226 227 233);
	height: calc(100% - 10px) !important;
	border-radius: var(--radius-md);
	opacity: 1;
	margin: 10px 0 0 0;
}

.proj-section__content{
	display: grid;
	--project-main-grid: 4fr 6fr;
	--project-main-col-gap: 3.5rem;
	grid-template-columns: var(--project-main-grid);
/*	grid-gap: 2rem var(--project-main-col-gap);*/
	grid-gap: 0 var(--project-main-col-gap);
	position: relative;
}

.proj-section__intro{
	display: grid;
	grid-template-columns: var(--project-main-grid);
	align-items: flex-start;
	column-gap: var(--project-main-col-gap);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 10;
	pointer-events: none;
}

.proj-section__intro .sticky-top{
	top: calc(var(--nav-height) + 1.5rem);
	grid-column: 1/2;
	max-width: max-content;
}

.proj-section__intro .sticky-top::after{
	content: "";
	position: absolute;
	top: -.8125rem;
	right: -1rem;
	bottom: -.8125rem;
	left: -1rem;
	background-color: rgba(255,255,255,0.85);
	border-radius: var(--radius-card);
	overflow: hidden;
	z-index: 1;
	backdrop-filter: blur(3px);
}

.proj-section__intro .sticky-top *{
	position: relative;
	z-index: 2;
}

.proj-section__title-hidden{
	visibility: hidden;
}

.proj-section__content p{
	max-width: 65ch;
}

@media screen and (max-width: 800px) {
	.proj-section__intro .sticky-top{
		grid-column: 1/3;	
	}
}

@media screen and (max-width: 575px) {
.proj-section__grid{
	grid-gap: 2rem 1.25rem;
}
}



.proj-thumb{
	width: 100%;
	margin-bottom: 0;
    transform: scale(1);
    transition: .25s ease-in-out;
}

.proj-thumb:hover{
    transform: scale(1.0125);
    transition: .25s ease-in-out;
}

.card--proj a.proj-thumb:hover{
	cursor: zoom-in;
}

.proj-section__l-col, .proj-section__r-col, .proj-section__2-col, .proj-section__l-col.proj-section__desc:has(p){
	margin-bottom: 2rem;
}

.proj-section__l-col{
	grid-column: 1/2;
}

.proj-section__r-col{
	grid-column: 2/3;
}

.proj-section__2-col{
	grid-column: 1/3;
}

.proj-section__l-col.proj-section__desc{
	margin-bottom: 0;
}

.proj-section__content > div:last-child{
	margin-bottom: 0;
}

.grid--booklet{
    display: grid;
    grid-gap: .25rem;
    grid-template-columns: 7fr 13fr;
}

@media screen and (max-width: 800px) {
    .grid--booklet{
        grid-template-columns: 1fr;
        grid-template-rows: 400px auto;
        justify-items: center;
    }

    .grid--booklet .proj-thumb{
        width: auto;
        max-width: max-content;
    }


}

.info--zoom{
    padding: .25rem .5rem; 
    background-color: var(--grey-medium); 
    border-radius: 0 0 var(--radius-sm) var(--radius-sm); 
    position: absolute; 
    top: -100px; 
    left: .75rem;	
    transition: .4s ease-in-out;
}
.info--zoom p{
    font-size: .75rem;
    color: white; 
    margin: 0;
}

.card--proj:hover .info--zoom{
    top: 0;
    transition: .4s ease-in-out;
}





.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide{
	display: grid;
	justify-items: center;
	align-items: center;
	padding: 2rem calc(35px + 1.25rem + 1.25rem);
	padding-top: 1.25rem !important;
}

.proj-section--social-media .swiper-slide{
	padding: 2rem 35px;
}

.swiper-button-next, 
.swiper-button-prev {
	color: white;
	background: var(--grey-dark);
	width: 35px;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-button);
	height: 35px;
	transition: .2s ease-in-out;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
	background: var(--brand-clr-2);
	transition: .2s ease-in-out;
}

.swiper-button-prev{
	padding-right: 4px;	
	left: 1.25rem;
}

.swiper-button-next{
	padding-left: 4px;	
	right: 1.25rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 1.25rem;
}

.swiper-pagination-bullet {
	background: var(--grey-medium);
}

.swiper-pagination-bullet-active {
	background: var(--brand-clr-2);
}

@media screen and (max-width: 575px) {
	.swiper-button-next, .swiper-button-prev {
		height: 4rem;
		width: 24px;
		opacity: .35;
	}
	
	.swiper-button-next{
		right: 0;
		border-radius: var(--radius-sm) 0 0 var(--radius-sm);
	}
	
	.swiper-button-prev {
		left: 0;
		border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	}
	
	.swiper-button-next:hover, 
	.swiper-button-prev:hover {
		opacity: 1;
		transition: .2s ease-in-out;
	}
	
	.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
		opacity: .1;
	}
	
	.swiper-slide {
      padding: 2rem calc(24px + .25rem + .25rem);
	}
}















.project-footer > div{padding: 0 .75rem;}

.project-top-btn-container{
    display: grid;
    justify-content: flex-end;
    padding: .25rem 0;
	margin-bottom: 0.5rem;
	width: 100%;
}

#toTopBtn {
	display: grid;
	justify-content: center;
    color: white;
	padding: 0 !important; 
	background-color: rgba(17,36,71,0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-button);
/*	box-shadow: var(--shadow-sm);*/
    width: 40px;
    height: 40px;
    text-align: center;
    position: relative;
    right: 0;
	bottom: 0.1rem;
    transition: color .3s, background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    align-items: center;
    text-decoration: none;
	cursor: pointer;
	pointer-events: auto;
	transition:  all .2s ease-in-out;
}

#toTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#toTopBtn:hover {
	background: var(--brand-clr-2);
	border: 2px solid var(--brand-clr-2);
	color: white;
	box-shadow: 0px 3px 5px rgba(17,36,71,0.15);
	bottom: 0.2rem;
	transition:  all .2s ease-in-out;
}

#toTopBtn:hover span{
	color: white;
	transition:  all .2s ease-in-out;
}

hr.project-body-hr{
	margin: 0;
	height: 2px;
	background-color: rgb(226 227 233);
}

.project-footer{
	position: sticky;
	bottom: 0;
	width: 100%;
/*	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) -2%, rgba(255, 255, 255, 0.75) 27%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.25) 68%, rgba(255, 255, 255, 0.125) 80%, rgba(255, 255, 255, 0.0625) 88%, rgba(255, 255, 255, 0) 100%);*/
/*	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.97) 20%, rgba(255, 255, 255, 0.9) 32%, rgba(255, 255, 255, 0.85) 36%, rgba(255, 255, 255, .5) 57%, rgba(255, 255, 255, 0.25) 72%, rgba(255, 255, 255, 0.125) 82%, rgba(255, 255, 255, 0.025) 95%, rgba(255, 255, 255, 0) 100%);*/
	z-index: 5;
	pointer-events: none;
}


.project-footer .column-left{
	flex: 3 1 0;
}

.project-footer .column-right{
	flex: 3 1 0;
}

@media screen and (max-width: 500px) {
/*
    .project-footer > div {
        padding: 0 1rem 2rem 1rem;
    }
*/
}


















































.project-grid{
    display: grid;
	grid-template-columns: 1fr 300px;
    grid-gap: 4rem;
    margin: 0 auto;
	position: relative;
    padding: 3rem 3rem 0 3rem;
    transition: .15s ease-in-out;
	border-radius: .25rem;
}

.project-image-column{
	display: grid;
/*    justify-content: center;*/
	position: relative;
	z-index: 2;
}

.project-image-column img{
    width: 100%;
    max-width: 650px;
	transition: .2s ease-in-out;
}

.project-image-column a img:hover{
    transform: scale(1.02);
	transition: .2s ease-in-out;
}

.proj-anchor, .project-anchor{
    position: absolute;
    top: -110px;
}

.date-tag{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: .5rem;
    align-items: center;
}

.date-tag hr{
    background: var(--brand-clr-2);
    height: 2px;
    width: 100%;
    margin: 0;
    opacity: 1;
}

.date-tag h2{
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    margin: 0;
}

.project-desc-column{
    height: 100%;
	position: relative;
	z-index: 1;
    padding-left: 2.15rem;
}

.project-desc-column__text{
	height: auto;
    top: 150px;
    display: flex;
	flex-direction: column;
    align-items: flex-start;
	max-height: calc(100vh - 150px - 150px);
}

.project-desc-column h1{
    font-family: 'Figtree', sans-serif;
    color: var(--brand-clr-1);
    font-weight: 800;
    font-size: 2rem;
	margin-bottom: 0;
}

.project-desc-column h3{
    color: var(--brand-clr-2);
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.project-desc__year{
	font-size: 16rem;
    position: absolute;
    top: -131px;
    left: -27rem;
    line-height: 0.5;
    padding: 0;
    margin: 0;
    font-weight: 900;
    font-family: var(--body-font);
    color: rgba(17, 36, 71, 0.075);
}

hr.vertical-timeline{
    width: 3px;
    background-color: rgb(226 227 233);
/*    height: 125%;*/
	height: 98%;
    position: absolute;
    left: 4.5px;
    border-radius: var(--radius-100);
    opacity: 1;
}

.proj-section__title, .project-deliverable-title{
    position: relative;
	padding-top: .1em;
	pointer-events: visible;
/*
    list-style: outside disc;
    display: list-item;
*/
}

.project-deliverable-title::before{
    content: '';
    position: absolute;
    left: -25.5px;
    width: 10px;
    height: 10px;
    background-color: var(--brand-clr-1);
    border-radius: var(--radius-md);
    outline: 10px solid white;
    top: 15px;
}

.proj-section__title::before{
    content: '';
    position: absolute;
    left: -2.4rem;
    width: 10px;
    height: 10px;
    background-color: var(--brand-clr-1);
    border-radius: var(--radius-md);
    outline: 10px solid white;
    top: 1rem;
}



.deliverable-controls{
	position: absolute !important;
/*	background-color: white;*/
	padding: 0;
	left: -2.835rem;
	pointer-events: auto;
}

.deliverable-controls::after{
	content: "";
	position: absolute;
	top: 14%;
	right: 14%;
	bottom: 14%;
	left: 14%;
	background-color: white;
	border-radius: var(--radius-xs);
}
	
.deliverable-controls a{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .75rem;
    line-height: 1.1;
    text-align: center;
    
/*    position: absolute;*/
    color: rgba(17, 36, 71, 0.75);
	text-decoration: none;
	transition: .15s ease-in-out;
}

.prev-deliverable{
	top: -1.335rem;
	transform: rotate(180deg);
}

.next-deliverable{
	top: 2.5rem;
}

.deliverable-controls:hover a{
	color: var(--brand-clr-2);
	transform: scale(1.2);
	transition: .15s ease-in-out;
}

.material-symbols-outlined {
	bottom: -.5px;
}

.deliverable-controls {}


/*
.project-desc-column h3:nth-child(2){
    font-style: italic;
    margin-bottom: 0;
}
*/

@media screen and (max-width: 575px) {
	.deliverable-controls{
		left: -2.085rem;
	}
	
	.proj-section__title::before {
		left: -1.65rem;
	}
}

.project-anchors a{
    color: var(--brand-clr-1);
    font-size: 1.125rem;
    font-weight: 800;
    padding: 0 1rem 0 0;
    border-right: 2px solid var(--brand-clr-2);
    margin: 0 1rem 0 0;
    transition: .15s ease-in-out;
}

.project-anchors a:hover{
    color: var(--brand-clr-2);
    transition: .15s ease-in-out;
}

.project-anchors a:last-child{
    padding: 0;
    border-right: none;
    margin: 0;
}





.next-prev {
	pointer-events: auto;
}

.project-footer .next-prev {
	display: grid;
	grid-template-columns: 30% 30%;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 1.25rem;
}

.next-prev .btn{
	border-radius: var(--radius-sm);
	width: 100%;
    max-width: 100%;
	justify-content: space-between;
	transform: scale(1);
}

.next-prev .btn:active{
	transform: scale(1.15);
	transition: .2s ease-in-out;
}

.next-prev div:first-child .btn{
	padding-left: 1.25rem;
}

.next-prev__text{
	height: 1rem;
}

.next-prev div:first-child .next-prev__text{
	text-align: right;
	width: 6.125rem;
	transition: 1s ease-in-out;
} 

.next-prev div:first-child .btn:hover .next-prev__text{
	width: max-content;
    min-width: 6.125rem;
	transition: 1s ease-in-out;
}

.next-prev div:last-child .btn{
	padding-right: 1.25rem;
}

.next-prev div:last-child .next-prev__text{
    width: 4.625rem;
	transition: 1s ease-in-out;
}

.next-prev div:last-child .btn:hover .next-prev__text{
	width: max-content;
    min-width: 4.625rem;
	transition: 1s ease-in-out;
}

.next-prev .btn.invisible{
	display: none;
}

/*
.next-prev a:hover{
	color: white;
	box-shadow: 0px 3px 5px rgba(17,36,71,0.125);
    transition: .15s ease-in-out;
}
*/
/*

.next-prev a:first-child:hover{
	transform: translateX(-3px);
	transition: .15s ease-in-out;
}

.next-prev a:last-child:hover{
	transform: translateX(3px);
	transition: .15s ease-in-out;
}
*/

.next-prev__text {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
/*	max-height: 0.875rem;*/
    max-height: 2.375rem;
/*	overflow: hidden;*/
	width: 100%;
	transition: .25s ease-in-out;
}

.project-footer .next-prev .btn:hover .next-prev__text{
	max-height: 2.375rem;
	transition: .25s ease-in-out;
}

/*
.next-prev a span{
	color: var(--brand-clr-1);
    transition: .15s ease-in-out;
}
*/

.next-prev a:hover span{
	color: var(--brand-clr-2);
	transform: scale(1.05);
/*	font-weight: 600;*/
    transition: .15s ease-in-out;
}

.next-prev a p{
    display: inline-block;
	padding: 0;
	color: var(--brand-clr-1);
	text-decoration: none;
    transition: .15s ease-in-out;
}

.next-prev__label{
	font-size: .75rem;
	line-height: 1.3;
    margin-bottom: 0;
    position: absolute;
	min-width: max-content;
}


.next-prev__project-name{
	position: relative;
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 0;
	min-width: max-content;
	transition: .15s ease-in-out;
}

.next-prev .btn .next-prev__label{
    opacity: 1;
}

.next-prev .btn:hover .next-prev__label{
    opacity: 0;
}

.prev-btn .next-prev__label{
    left: 0;
    right: auto;
    transition: .2s ease-in-out;
}

.prev-btn:hover .next-prev__label{
    left: 100%;
    transition: .2s ease-in-out;
}

.prev-btn .next-prev__project-name{
	text-align: left;
    right: calc(100% + 24px + 1.75rem);
	opacity: 0;
    transition: .2s ease-in-out;
}

.prev-btn:hover .next-prev__project-name{
    right: 0;
	opacity: 1;
    transition: .2s ease-in-out;
}

.next-btn .next-prev__label{
    right: 0;
    transition: .2s ease-in-out;
}

.next-btn:hover .next-prev__label{
    right: calc(100% + 1.75rem);
    transition: .2s ease-in-out;
}

.next-btn .next-prev__project-name{
	text-align: right;
    left: calc(100% + 24px + 1.75rem);
	opacity: 0;
    transition: .2s ease-in-out;
}

.next-btn:hover .next-prev__project-name{
    left: 0;
	opacity: 1;
    transition: .2s ease-in-out;
}



/*
@media only screen and (max-width: 1050px) {
	.project-grid{
        grid-template-columns: 3fr 2fr;
        transition: .15s ease-in-out;
    }
}
*/

@media screen and (max-width: 900px) {
    .project-grid{
        grid-template-columns: 1fr;
		width: calc(100% - 6rem);
/*		max-width: 700px;*/
		margin: 0 3rem;
        padding: 5rem 0rem 0 2.15rem;
		z-index: 1;
        transition: .15s ease-in-out;
    }
	
	.project-image-column{
		order: 2;
	}
	
	.project-desc-column{
		position: absolute;
        height: 100%;
        order: 1;
        top: 0;
        z-index: 1000;
        margin-bottom: 4rem;
        left: 0;
        right: 0;
        bottom: auto;
        padding: 0rem 0 0 2.15rem;
		pointer-events: none;
	}
	
	.project-desc-column__text {
        top: 120px;
	}
	
	.project-desc-column__text::after{
		content: '';
        position: absolute;
        left: -1rem;
        top: -33px;
        right: -1rem;
        bottom: -4rem;
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
        pointer-events: none;
	}
	
	.project-deliverable-title {
        z-index: 2;
	}
	
	hr.vertical-timeline {
		width: 3px;
		background-color: rgb(226 227 233);
		height: 125%;
		position: absolute;
	}
		
	.next-prev-btn{
		position: inherit;
        margin-top: 1.5rem;
        display: inline-block;
		bottom: 0;
	}
	
	
}

@media screen and (max-width: 800px) {
	.proj-section__l-col, .proj-section__r-col {
        grid-column: 1/3;
	}
	
	.proj-section__intro {
		max-width: 100%;
	}
}

@media screen and (max-width: 500px){
	.project-grid {
        width: calc(100% - 4rem);
		margin: 0 2rem;
	}
	
	.project-intro{
		padding: 2rem 2rem 0 2rem;
		transition: .15s ease-in-out;
	}
	
	.project-footer > div {
		padding: 0;
	}
	
	.project-footer .next-prev {
		grid-template-columns: 1fr 1fr;
		gap: .5rem;
		padding-bottom: 0;
	}
	
	.next-prev__project-name{
		font-size: .75rem;
	}
	
	.next-prev > div:first-child .btn{
		border-radius: 0 var(--radius-sm) 0 0;
	}
	
	.next-prev > div:last-child .btn{
		border-radius: var(--radius-sm) 0 0 0;
	}
}






.about-page{
/*	background-color: var(--brand-clr-1);*/
	background-color: var(--brand-blue-70);
}

.about-page main{
	background: linear-gradient(#112447, #0a172b);
}

.bio{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	padding: 0 3rem;
	position: relative;
}

.bio .sticky-top{
	position: sticky;
	top: 0;
	z-index: 1;
	grid-column: 1/13;
	padding-top: calc(var(--nav-height) + .5rem);
	padding-bottom: 3.5rem;
}

.bio__img-main{
	position: relative;
	left: -3rem;
	right: -3rem;
	width: calc(100% + 6rem);
	max-width: calc(100% + 6rem);
	height: calc(96.5svh - var(--nav-height) - 1rem);
	min-height: 600px;
	border-radius: var(--radius-card);
	overflow: hidden;
	object-fit: cover;
	object-position: center center;
	transition: .5s ease-in-out;
}

.card--bio{
	grid-column: 7/13;
	display: grid;
	grid-gap: 1rem;
	justify-self: flex-end;
	max-width: 445px;
	padding: 3.5rem 3rem;
	margin-top: -50vh; margin-top: -50svh;
	background: linear-gradient(180deg, rgba(17, 36, 71, 0.75) 0%, #112447 40%, #0a172b calc(100% - 3.5rem), rgba(17, 36, 71, 0) 100%);
	border: none;
	z-index: 2;
	transition: .25s ease-in-out;
}

.card--bio *{
	color: white;
}

.card--bio *:last-child{
	margin-bottom: 0;
}

.card--bio h1{
	font-size: clamp(5rem, 11vw, 9rem);
	line-height: .5;
}

.card--bio__traits{
	display: flex;
	flex-wrap: wrap;
	gap: .125rem .75rem ;
}

.card--bio__traits > *{
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 0;
}

.card--bio hr{
	width: 50%;
}

.logo--socials{
	width: 100%;
	max-width: 30px;
}

.logo--socials__img{
	width: 100%;
	max-width: 30px;
}

.logo--socials path{
	transition: .2s ease-in-out;
}

.logo--socials:hover path{
	fill: var(--brand-clr-2);
	transition: .2s ease-in-out;
}

@media screen and (max-width: 900px) {
	.bio{
/*		padding: 0 .75rem 3rem .75rem;*/
		padding: 0;
	}

	.bio__img-main{
		position: relative;
		left: -1.5rem;
		right: -1.5rem;
		width: calc(100% + 3rem);
		max-width: calc(100% + 3rem);
		height: calc(75svh - var(--nav-height) - 1.5rem);
		transition: .5s ease-in-out;
	}
}

@media screen and (max-width: 775px) {
	.bio .sticky-top {
		position: relative;
	}

	.card--bio {
		grid-column: 2/12;
		margin-top: -32.5vh; margin-top: -32.5svh;
		max-width: 100%; 
	}

	.bio__img-main {
		object-position: center left;
	}
}

@media screen and (max-width: 575px) {
	.bio .sticky-top {
		padding-top: calc(var(--nav-height) + .5rem);
		/*padding-top: 0;*/
		padding-bottom: 0;
	}
	
	.bio__img-main {
/*		height: calc(72svh - var(--nav-height) - 1.5rem);*/
		height: calc(85svh - var(--nav-height) - 1.5rem);
		min-height: 300px;
		max-height: 600px;
		left: -.5rem;
        right: -.5rem;
        /*
		border-radius: 0;
		width: calc(100% + (var(--body-padding) * 2));
		max-width: calc(100% + (var(--body-padding) * 2));
		margin-left: calc(var(--body-padding) * -1);
		margin-right: calc(var(--body-padding) * -1);
        */
		width: calc(100% + 1rem);
/*        max-width: 100%;*/
		transition: .25s ease-in-out;
	}

	.card--bio {
		grid-column: 1/13;
		padding: 2.5rem 2rem;
/*
		margin-left: 1rem;
		margin-right: 1rem;
*/
		background: linear-gradient(180deg, rgba(17, 36, 71, 0.75) 0%, #112447 35%, #0a172b calc(100% - 3.5rem), rgba(17, 36, 71, 0) 100%);
		transition: .25s ease-in-out;
	}
}



.contact-page{
/*	background-color: var(--brand-clr-1);*/
	background-image: linear-gradient(var(--brand-clr-1), var(--brand-blue-60));
	background-color: var(--brand-blue-60);
}

.contact-page main{
	padding-top: var(--nav-height);
	background: linear-gradient(0deg, #0986AD 20%, #0A658C 39.6%, #0B4E74 48.84%, #0B3F65 57.32%, #0C3B61 64.26%, #112447 90%);
}

.section--contact{
	position: relative;
    z-index: 1;
/*	margin-bottom: -3vw;*/
}

.form--contact{
	background-color: white;
	padding: 3rem;
	border-radius: var(--radius-card);
	width: 100%;
	max-width: 630px;
	margin: 0.5rem auto 0 auto;
	transition: .25s ease-in-out;
}

.form fieldset {
	display: grid;
	gap: 1rem;
}

.form-row{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.form--contact h1{
	text-wrap: balance;
	transition: .25s ease-in-out;
}

.form-item{
	flex: 1 1 auto;
	position: relative;
}

.form-item label {
	display: flex;
	align-items: flex-start;
	position: absolute;
	top: 1px;
	left: 1rem;
	bottom: auto;
	padding: 0.5rem 0;
	font-size: 1rem;
	color: var(--grey-medium);
	opacity: 0;
	transition: .25s ease-in-out;
}

.form-item:has(.form-input:focus) label{
	align-items: center;
	top: -.5rem;
	left: 0.75rem;
	bottom: 100%;
	font-size: .875rem;
	color: var(--brand-clr-1);
	opacity: 1;
	transition: .25s ease-in-out;
}

.form-item label span{
	position: relative;
	z-index: 2;
}

.form-item label::before {
	content: '';
	position: absolute;
	top: 0.125rem;
	right: -0.25rem;
	bottom: 0.125rem;
	left: -0.25rem;
	z-index: 1;
	background-color: white;
	transition: .25s ease-in-out;
}

.form-item:has(.form-input:focus) label::before{
	top: -0.438rem;
	bottom: -0.125rem;
	transition: .25s ease-in-out;
}

.form-item .form-input{
	width: 100%;
	padding: .5rem 1rem;
	border-radius: var(--radius-card);
	border: 1px solid rgba(154, 163, 177, 0.25);
}

.form-item textarea.form-input{
	resize: none;
	height: 6rem;
    width: 100%;
}

.form-item .form-input::placeholder{
	font-size: 1rem;
	color: var(--grey-medium);
}

.form-item:has(.form-input:focus) .form-input::placeholder {
	opacity: 0;
	transition: .25s ease-in-out;
}


.footer-graphic {
	margin-top: -4vw;
	position: relative;
    z-index: 2;
	overflow: hidden;
	transition: .25s ease-in-out;
}

.footer-graphic__img{
	width: 100%;
	transform: scale(1.01);
}

@media screen and (max-width: 575px) {
	.form--contact{
		padding: 2rem 2rem 4.5rem 2rem;
		transition: .25s ease-in-out;
	}	
	
	.footer-graphic {
		margin-top: -12vw;
		transition: .25s ease-in-out;
	}
}



