/*
	Theme Name: GB-Portfolio
	Theme URI: https://gbarone.com
	Description: GB-Portfolio
	Version: 1.0
	Author: Gianpaolo Barone
	Author URI: http://gbarone.com
	Tags: HTML5, CSS3, Javascript
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
	--primary-color:#0c1b22;
	--secondary-color:#60778E;
	--tertiary-color: #9647DE;
	--quaternary-color: #96DF0C;
	--bg-color: #F2F2F2;
	--ease: cubic-bezier(0.65, 0, 0.35, 1);
	--ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
	--scroll-ease: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
	--primary-font: 'Teko', sans-serif;
	--secondary-font: 'menloregular', sans-serif;
	--body-font:  'Teko', sans-serif;
	--page-gutter: 10%;
	--mask-delay: 1s;
	--mobile-font-size: 1.8rem;
	--mobile-bg-dark: #191c22;
	--mobile-util-text-dark: #404754;
	--line-width:  0.1em;
	--section-padding: 10%;
	--link-height: 7em;
	--fixed-heading-left: 5vw;
	--fixed-heading-height: clamp(6rem, 7.5vw, 18rem);
	--gb-big-font-size: clamp(8rem, 14vw, 18rem);
}

*,
*:after,
*:before {
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	background-color:var(--bg-color);
	--gb-intro-delay: 5s;
}
body {
	font-family: var(--body-font);
	font-size: clamp(2rem, 1.8vw, 4.4rem);
	color:var(--primary-color);
	font-weight: 300;
	background-color: var(--bg-color);
	--fixed-heading-top: max(10vw, 5rem);
}

body.gb-intro-scrolled {
	--fixed-heading-top: max(6vw, 5rem);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

h1,h2,h3,h4 {
	line-height: 1;
	font-weight: 400;
	letter-spacing: -.03em;
	text-transform: uppercase;
	font-family: var(--primary-font);
	color: var(--primary-color);
	margin: 0;
}

h1, h4 {
	margin:20px 0 0;
	font-size: 3rem;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	width: 100%;
	height: auto;
}

a {
	color: var(--text-color);
	text-decoration:none;
}
 p {
	margin: 0 0 0.4em;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -.01em;
 }

span {
	display: inline-block;
	line-height: 1;
}

a:hover {
	color:var(--text-color);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

hr {
	background-color: var(--primary-color);
	border-width: .05rem;
	margin: .35em 0;
	border-style: solid;
}

@media only screen and (min-width: 769px) {

	.gb-scroll {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.fake-scroll {
		position: absolute;
		top: 0;
		width: 1px;
	} 
} */

/* body.isMobile .fake-scroll {
	height: 100% !important;	
}


/*------------------------------------*\
	FOUNDATION
\*------------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

main {
	position: relative;
}

.gb-section, .gb-spacer {
	position: relative;
	height: calc(100svh - 60px);
	height: 100svh;
}

.gb-subheader {
    position: fixed;
    top: 5%;
    right: 0;
    left: 0;
    font-size: 2.8vw;
    z-index: 20;
    display: inline-block;
    font-family: var(--primary-font);
}

.gb-subheader .inner {
    width: 100%;
}

.gb-subheader .badge {
    line-height: 1;
    padding-right: 0.8em;
}

.gb-subheader .badge .name {
	font-size: 45%;
	color:var(--secondary-color);
}

.scroll-arrow {
    width: auto;
    height: 4vw;
}

.scroll-arrow svg {
    width: auto;
    display: block;
    height: 100%;
}

/*------------------------------------*\
	Menu
\*------------------------------------*/

header.main-header {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
	z-index: 9999;
}

.mobile-nav-wrap {
	background:var(--mobile-bg-dark) !important;
	align-items: initial !important;
	color: var(--mobile-util-text-dark);
}

div#gb-mobile-sidebar {
    padding: 15px;
    position: relative;
}

div#gb-mobile-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    background: var(--mobile-util-text-dark);
    width: 2px;
    height: 100%;
    display: block;
}

#gb-mobile-sidebar .inner {
	height: 100%;
}

.gb-sidebar-header {
    flex: 1;
}

.gb-sidebar-header a {
    padding: 0 0 15px;
}

.gb-sidebar-header i {
    font-size: 3rem;
}

.mobile-nav-inner {
	padding: 0;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	font-family: var(--secondary-font);
	font-weight: bold;
	overflow: hidden !important;
	height: 100% !important;
}

.mobile-button-wrap .mobile-btn.open-mobile span {
	background: var(--mobile-util-text-dark) !important;
}

.mobile-nav .navbar-nav {
	position:relative;
}

.mobile-nav {
	position: relative;
    height: 100%;
	max-height: 100svh;
    overflow-y: auto;
    overflow-x: hidden; 
}

#gb-number-line {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    padding: 0 1%;
    width: calc(var(--mobile-font-size) * 1.8);
}

#gb-number-line > span {
    line-height: var(--mobile-font-size);
	font-size: var(--mobile-font-size);
	text-align: center;
}

.mobile-nav ul {
	margin-left: calc(var(--mobile-font-size) * 1.8);
	margin-top: calc(var(--mobile-font-size) * 3) !important;
}

.mobile-nav > ul > li {
	margin-left: var(--mobile-font-size);
}

.mobile-nav li a:link, .mobile-nav li a:visited {
	color: var(--bg-color) !important;
	font-size: var(--mobile-font-size) !important;
	line-height: calc(var(--mobile-font-size) * 3) !important;
    padding: 0 !important;
}

.mobile-nav li a:link > span, .mobile-nav li a:visited > span {
	vertical-align: top !important;
	line-height: var(--mobile-font-size);
	color: var(--bg-color);
}

.gb-brackets {
    position: absolute;
    top: calc((var(--mobile-font-size) * -1) * 2);
    line-height: var(--mobile-font-size);
	color: var(--mobile-util-text-dark);
	font-size: var(--mobile-font-size);
}

.gb-brackets.end {
	top:auto;
	bottom:0;
}

.gb-sidebar-footer {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0 15px;
	background-color: var(--mobile-bg-dark);
	color: var(--mobile-util-text-dark);
	padding: 5px 15px;
}

.gb-sidebar-footer span {
    font-size: 1.8rem;
    margin-right: 3%;
    letter-spacing: 0.1em;

}

#gb-mobile-tabs {
	position: sticky;
    top: 0;
    left: 0;
    right: 0;
	margin-bottom: 1em;
	background-color: var(--mobile-bg-dark);
	z-index: 10;
}

#gb-mobile-tabs .gb-tab {
	max-width: 140px;
    align-items: center;
    min-height: 40px;
    border-bottom: 2px solid var(--mobile-util-text-dark);
    padding: 0 10px;
}

#gb-mobile-tabs .gb-tab-text {
	flex-grow: 1;
	font-size: 2rem;
	font-family: var(--primary-font);
	font-weight: 400;
	color: var(--bg-color)
}

#gb-mobile-tabs .gb-tab .gb-tab-img {
	flex: 1;
	margin-right: 0.3em;
}

#gb-mobile-tabs .gb-tab .gb-tab-img img {
    width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

span.gb-close {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	transform: rotate(45deg);
}

span.gb-close > span {
    width: 100%;
    height: 2px;
    background: var(--mobile-util-text-dark);
    position: absolute;
}

span.gb-close > span:last-child {
    transform: rotate(90deg);
    transform-origin: center;
}

.mobile-nav .navbar-nav .gb_underscore {
	font-size: calc(var(--mobile-font-size) * 1.5);
}

@media only screen and (min-width:600px) {

	:root {
		--mobile-font-size: 2.4rem;
	}
}

footer.footer {
	font-size: 2rem;
	padding: 2%;
}

/*------------------------------------*\
	INTRO
\*------------------------------------*/

#intro {
	margin-bottom: 4%;
	overflow: hidden;
	z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
			flex-direction: column-reverse;
	perspective: 70px;
	perspective-origin: 65%;
	--workline-height: max(calc(4vw + 1rem), 80px);
}

#intro:after {
  content: '';
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 1;
	transform: translateY(0);
	transform-origin: bottom;
	transition: transform 0s linear;
}

body.gb-loaded #intro:after {
  transform: translateY(-100%);
  /* transition-delay: .5s; */
  transition-duration: var(--gb-intro-delay);
}

span.gb-abroad-text {
  top: calc(var(--fixed-heading-top) + var(--fixed-heading-height) );
  left: calc(var(--fixed-heading-left) * 1.7);
  height: var(--fixed-heading-height);
}

span.gb-abroad-text > span {
	font-size: 75%;
}

.gb-skyline {
  position: absolute;
  top: auto;
	left: 0;
  right: auto;
  bottom: calc(var(--workline-height) - 1rem);
  width: max(100vw, 930px);
  aspect-ratio: 16/9;
  background-image: url(./img/gb-NY-skyline-seamless-lifestyle.svg);
  display: block;
  background-size: contain;
	background-position: 0% bottom;
	background-repeat: repeat-x;
	pointer-events: none;
}

.gb-skyline::before {
	content: '';
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(10rem, 20vw, 20rem);
	background: var(--bg-color);
	transform: translateY(100%);
}

.gb-intro-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  grid-template-columns: repeat(var(--line-no), 1fr);
  display: grid;
  transform: rotateX(45deg);
	transition: opacity .5s ease-out;
}

.gb-intro-grid > span {
  background: var(--primary-color);
  width: 2px;
}

.gb-sicilia-wrapper {
	top: 34%;
	left: 66%;
  right: auto;
	bottom: auto;
	width: clamp(16rem, 11vw, 20rem);
	aspect-ratio: 1.5 / 1;
}

.gb-sicilia-outline {
 	width: 100%;
	height: 100%;
  background-image: url(./img/gb-sicilia-outline.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-70%) rotate3d(1, 1, 0, 5deg);
}

.work-line {
	top: 19vh;
	left: 0;
	right: 0;
	bottom: auto;
	line-height: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0 auto;
	color: var(--primary-color);
	overflow: hidden;
	background: var(--bg-color);
	height: var(--workline-height);
}

.work-line .inner {
	position: relative;
	width: 100%;
	max-width: 86vw;
	margin: 0 auto;
}

.work-line h1 {
  margin: 0;
}

/* Sticky Title */
#gb-section-title {
  position: fixed;
	top: var(--fixed-heading-top);
	left: var(--fixed-heading-left);
	height: var(--fixed-heading-height);
	z-index: 0;
	opacity: 1;
	transition: all .3s ease;
	perspective: 1220px;
}

#gb-section-title span {
    line-height: .8em;
		transform: rotateY(-9deg);
}

.gb_underscore {
	display: inline-block;
	-webkit-animation: .8s blink step-end infinite;
	        animation: .8s blink step-end infinite;
}

@-webkit-keyframes blink {
	
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
/* /Sticky Title */

#gb-section-title.gb-hide-main-title {
	opacity: 0;
}

/* Timeline */
#gb-timeline {
	position: fixed;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100vh;
	width: 100svh;
	height: 120px;
	perspective: 290px;
	display: none;
}

#gb-timeline-track {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin:0 20px;
}

#gb-timeline:before {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	right: 0;
	background: var(--secondary-color);
	height: 2px;
	transform: translateY(-50%);
	opacity: .2;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .6s cubic-bezier(1,0,0,1);
}

.gb-timeline-marker {
	position: absolute;
	top: 50%;
	width: 120px;
	height: 120px;
	transform: translateY(-50%);
	bottom: 0;
	opacity: 0;
	transition: opacity .3s cubic-bezier(1,0,0,1) .4s, transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-timeline-marker > .inner {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 1fr);
}

.gb-timeline-tooltip {
	position: relative;
	font-size: 1.2rem;
	transition: transform .5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
	transform-origin: bottom;
	grid-column: 2 / 4;
	align-self: center;
	justify-self: center;
	z-index: 2;
}

.gb-timeline-tick {
	width: 1.4rem;
	height: 1.4rem;
	outline: 0.03em solid var(--secondary-color);
	border-radius: 50%;
	transform: translate(0%) scale(0);
	grid-column: 2 / 4;
	justify-self: center;
	align-self: center;
	overflow: hidden;
	transition: transform .5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.gb-timeline-tooltip, .gb-timeline-tick {
	grid-row: 2 / 4;
}

.gb-timeline-image {
	position: absolute;
	width: 100%;
	display: inline-flex;
	height: 100%;
}

#gb-timeline img {
	width: 100%;
	height: 100%;
	-webkit-filter: grayscale(1);
					filter: grayscale(1);
	-o-object-fit: cover;
		object-fit: cover;
}

.gb-timeline-marker.active .gb-timeline-tooltip, .gb-timeline-marker:hover .gb-timeline-tooltip {
	transform: translate(0%, -175%) scale(1.4);
}

.gb-timeline-marker.active .gb-timeline-tick, .gb-timeline-marker:hover .gb-timeline-tick {
	transform: translate(0%, 20%) scale(2.8);
}

body.gb-intro-scrolled #gb-timeline:before {
	transform: scaleX(1);
}

body.gb-intro-scrolled .gb-timeline-marker {
	opacity: 1;
}

/* RESPONSIVE */

@media only screen and (min-width: 37.5em) { /* 600px */

	section#intro {
		padding-top: 28svh;
	}

	/* .gb-skyline__wrapper{
		z-index: 5;
	} */

}

@media only screen and (min-width: 56.25em) { /* 900px */

	/* Sticky Title */
	body.gb-intro-scrolled #gb-section-title {
		z-index: 1;
	}

	body:not(.gb-fully-loaded):not(.gb-intro-scrolled)  #gb-section-title {
		z-index: 1;
	}

	section#intro {
		display: block;
	}

	.gb-skyline__wrapper {
		bottom: -6%;
	}

	/* Portolio Title */
	.work-line {
		top:auto;
		bottom: 10vw;
		background: transparent;
	}

	#gb-timeline {
		top: 0;
		transform: rotate(90deg) translate3d(0,-100%, 20px);
		transform-origin: left top;
		display: flex;
		padding-left: 20vh;
	}

	.gb-timeline-marker > .inner {
		transform: rotate(-90deg);
	}

} 

@media only screen and (min-width: 64em) { 
	section#intro {
		padding-top: 0;
	}
}

/*------------------------------------*\
	PROJECTS
\*------------------------------------*/

.client {
	perspective: 650px;
}

.client > .gb-row {
	perspective: 250px;
	padding-bottom:var(--link-height);
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
}

.client .gb-col > .inner {
	gap: .5em;
}

.client-logo {
	position: absolute;
    top: 12svh;
    left: 50%;
    right:auto;
    bottom: auto;
	width: 55vw;
    z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
			-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;

}

.client-logo > .inner {
	width: 100%;
	transform: translateX(-50%);
}

.client-logo svg {
	opacity: 0;
	-webkit-transition: opacity 1s ease-out;
	-o-transition: opacity 1s ease-out;
	transition: opacity 1s ease-out;
	width: 100%;
	height: auto;
	max-width: 85vw;
	-webkit-transform: scale(1.6);
	-ms-transform: scale(1.6);
			transform: scale(1.6);
	transform-origin: top;
}

.gb-active-section .client-logo svg {
	opacity: .1;
}

.project-info-footer {
    font-size: 40%;
    font-weight: bold;
    line-height: 2.4;
}

.project-contributions {
	line-height: 1.6;
}

.project-info-footer .gb-contribution-list, 
.project-info-footer .gb-contribution-list li {
	display: inline;
}

.project-img {
	height: 100%;
}

.project-img > .img-container {
	height: 100%;
}

.project-img > .img-container > div {
	-webkit-backdrop-filter: blur(2px);
			backdrop-filter: blur(2px);
}

.project-img img {
	opacity: .85;
}

.gb-projects-link {
	top: auto;
	left: 50%;
	right: 0;
  bottom: 0;
	transform: translate(-50%, -50%);
	height: var(--link-height);
}

.client-logo.dark svg path {
	fill:var(--primary-color);
}

/* RESPONSIVE */

@media only screen and (min-width:37.5em) { /* 600px */

	.client-logo {
		top:12vh;
	}

	.client-logo svg {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
				transform: scale(1);
	}
}

@media only screen and (min-width:56.25em) { /* 900px */

	.client > .gb-row {
		padding-bottom:0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}

	.client .gb-row > .gb-col.desc {
		padding: 4% 0;
	}

	.client-logo {
		left: auto;
    right:var(--page-gutter);
	}

	.client-logo > .inner {
		transform: translateX(0);
	}

}

@media only screen and (min-width:64em) { /* 1024px */


}



@media only screen and (max-width:56.25em) { 
	.client > .gb-row > .desc {
		padding: 4% var(--page-gutter) 0 !important;
	}

	.project-info-footer {
		padding: 0 0 6%;
	}
}

/*------------------------------------*\
	OTHER PROJECTS
\*------------------------------------*/

#other-projects {
	background-color: var(--bg-color);
}

#other-projects h3 {
	font-size: 4rem;
    margin: 0;
}

.gb-other-projects__skills {
	padding: clamp(4rem,4%, 7rem) 0;
}

.gb-skill-card {
	/* background-color: #e1e1e1e1; */
	width: min(10vw, 70px);
	aspect-ratio: 2 / 1;
	max-width: 16rem;
	margin: auto;
	cursor: pointer;
	margin-right: 5%;
}

.gb-skill-card img {
	-webkit-filter: grayscale(1);
			filter: grayscale(1);
	transition: filter .3s cubic-bezier(1,0,0,1);
}

.gb-skill-card:hover img {
    filter: none;
}

.gb-other-project-post {
	width: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 0 max(1vw, 2rem);
	aspect-ratio: 2.3 / 2;
}

.gb-other-project-content  {
	font-size: 4rem;
}

.gb-other-project-post .client-logo {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gb-other-project-post .client-logo > .inner {
  max-width: 60%;
  transform: translateY(-30%);
}

.gb-other-project-post-img img {
  opacity: .85;
}

@media only screen and (min-width:56.25em) {
	.gb-other-project-post {
		width: 40%;
	}
}

@media only screen and (max-width:37.5em) {

	.gb-other-projects__projects {
		text-align: center;
	}
	
	.gb-other-project-post-img img {
		aspect-ratio: 1 / 1.05;
	}
	
	.gb-other-project-post-img {
		will-change: transform;
		-webkit-transition: -webkit-transform .4s ease;
		transition: -webkit-transform .4s ease;
		-o-transition: transform .4s ease;
		transition: transform .4s ease;
		transition: transform .4s ease, -webkit-transform .4s ease;
	}

	.gb-other-project-post.is-selected .gb-other-project-post-img {
		-webkit-transform: scale(1.2);
		    -ms-transform: scale(1.2);
		        transform: scale(1.2);
		-webkit-transform-origin: top;
		    -ms-transform-origin: top;
		        transform-origin: top;
	}
	
	.gb-other-project-post.is-selected .gb-other-project-content {
		        -webkit-transform: translateY(-32%) scale(1.2);
		            -ms-transform: translateY(-32%) scale(1.2);
		                transform: translateY(-32%) scale(1.2);
		-webkit-transform-origin: top;
		    -ms-transform-origin: top;
		        transform-origin: top;
	}
	
	.gb-other-project-content {
		background-color: var(--bg-color);
		display: inline-block;
		padding: .15em .5em .25em !important;
		/* border-radius: .25rem; */
		box-shadow: 0 .5em .25em -.35em rgba(0,0,0,.25);
		display: inline-flex;
		flex-direction: column;
	}
	
}


/*------------------------------------*\
	ABOUT
\*------------------------------------*/

#about {
	padding-top: 3%;
	height: auto;
}

#about >  .gb-row {
	display: grid;
  grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(6, 1fr);
}

.about-blurb {
    text-align: justify;
}

#about .gb-about-content {
	grid-column: 2 / 12;
	grid-row: 1/ 4;
}

#about .gb-interests {
	grid-column: 2 / 12;
	grid-row: 4 / 5;
	position: relative;
	padding-top: 3%;
}

.intro-img {
  grid-column: 1 / -1;
  grid-row: 5 / -1;
	height: auto !important;
	width: auto !important;
}

.intro-img > .gb-inner {
	height: 100%;
	width: 100%;
	position: relative;
}

.intro-img img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.gb-interests-list {
	padding: 0;
	margin:0;
	position: relative;
	padding: 4% 0 0;
}

.gb-interests-list li {
	display: inline-block;
}

.gb-interests-list::after {
	content: '';
	position: absolute;
	top:0;
	left: 0;
	bottom: auto;
	height: var(--line-width);
	width: 100%;
	background: var(--primary-color);
}

.gb-interests-list li {
	font-size: 90%;
}

#about .gb-social-links li {
	display:inline-block;
}

#about .gb-social-links li:not(:last-child) {
	margin-right: 2%;
}


@media only screen and (min-width:56.25em) {

	#about > .gb-row {
		grid-template-rows: repeat(6, 1fr);
	}

	#about .gb-interests {
		grid-column: 1 / 3;
		grid-row: 1 / 8;
		display: flex;
		padding-top:0%;
	}

	#about .gb-about-content {
		grid-column: 3 / 8;
		grid-row: 2 / 6;
	}

	.intro-img {
		grid-column: 7 / -1;
		grid-row: 1 / -1;
		z-index: -1;
		overflow: hidden;
	}

	.intro-img img {
		top: -30%;
		left: 0;
		right: 0;
		bottom: auto;
	}

	.gb-interests-list {
		padding: 0 0 0 12%;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	.gb-interests-list li {
		display: block;
	}

	.gb-interests-list::after {
		display: none;
	}

	.gb-interests::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: var(--line-width);
		background: var(--primary-color);
		transform: scaleX(0);
		transform-origin: top;
		transition: transform .4s ease-in-out;
	}

	#about.gb-active-section .gb-interests::before {
		transform: scaleX(1);
	}

	.about-blurb {
		    padding: 0 5em 1em 0;
	}
}

[data-gb-parallax] {
	will-change: transform;
}
/*------------------------------------*\
	UTLITIES
\*------------------------------------*/

.gb-btn {
	border: .35rem solid var(--project-color, var(--primary-color));
	padding: .5em 1.5em;
	display: inline-block;
	position: relative;
	line-height: 1;
	background-color: var(--bg-color);
}

.gb-btn:after {
  content: '↱';
  font-family: 'Teko';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  transform: translate(70%, -83%);
  font-size: 12rem;
	display: inline-block;
	z-index: -1;
  color: var(--project-color, var(--primary-color));
}

.gb-btn.gb-btn__small {
	font-size: .85em;
  padding: .25em 1em;
}

.gb-btn.gb-btn__small:after {
  content: '→';
  transform: translate(90%, -37%);
  font-size: 5rem;
  top: 50%;
  bottom: auto;
}

.intro-reveal {
	opacity: 0;
	transition: opacity .6s var(--ease-in-out-expo);
}

body.gb-loaded #intro .intro-reveal {
	opacity: 1;
}

.gb-heading {
	display: block;
	margin: 0;
	line-height: .65;
	letter-spacing: -.03em;
	font-weight: 300;
	text-transform: uppercase;
	font-family: var(--primary-font);
	color: var(--primary-color);
	/* -webkit-transition: var(--scroll-ease), opacity .3s ease-out;
	-o-transition: var(--scroll-ease), opacity .3s ease-out;
	transition: var(--scroll-ease), opacity .3s ease-out; */
	z-index: 2;
}

.gb-heading.large {
	font-size: clamp(4rem, 9vh, 12rem);
}

.gb-heading.medium {
	font-size: clamp(4rem, 4vh, 12rem);
}

#gb-title-intro {
	line-height: .8;
}

.text-menlo {
	font-family: 'menloregular' !important;
}

#gb-title-intro > span {
	display:inline-block;
}

div#project-titles-slider {
    overflow: hidden;
}

.gb-menu-util-color {
	color:var(--mobile-util-text-dark) !important;
}

.gb-bg-color {
	color:var(--bg-color) !important;
}

.gb-secondary-color {
	color:var(--secondary-color) !important;
}

.gb-tertiary-color {
	color:var(--tertiary-color) !important;
}

.gb-quarternary-color {
	color:var(--quaternary-color) !important;
}

.gb-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
} 

.gb-flex.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.gb-flex.column-reverse {
	-webkit-box-orient:vertical;
	-webkit-box-direction:reverse;
	    -ms-flex-direction:column-reverse;
	        flex-direction:column-reverse;
}

.gb-flex.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.gb-flex.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.gb-flex.just-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.gb-flex.just-between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.gb-flex.just-around {
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.gb-flex.just-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.gb-flex.align-start {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.gb-flex.align-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.gb-flex.align-end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.gb-overflow {
	overflow: hidden;
}


.gb-mask {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.gb-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

.gb-mask:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-color);
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 1s var(--ease);
	transition: -webkit-transform 1s var(--ease);
	-o-transition: transform 1s var(--ease);
	transition: transform 1s var(--ease);
	transition: transform 1s var(--ease), -webkit-transform 1s var(--ease);
	-webkit-transform: scaleY(1);
	    -ms-transform: scaleY(1);
	        transform: scaleY(1);
	-webkit-transform-origin: bottom;
	    -ms-transform-origin: bottom;
	        transform-origin: bottom;
}

.gb-mask.left:after {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
}

body.gb-loaded section#intro .gb-mask::after {
	transform: scaleY(0);
}

.gb-slide-in {
	overflow: hidden;
}

.gb-slide-in > .gb-slide-el {
	display: inline-block;
	opacity: 0;
	-webkit-transform-origin: top;
	    -ms-transform-origin: top;
	        transform-origin: top;
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
			transform: translateY(100%);
	transition: opacity .4s cubic-bezier(0.87, 0, 0.13, 1), transform .4s cubic-bezier(0.87, 0, 0.13, 1);
}

.gb-object-fit {
	height: 100%;
	width: 100%;
}

.gb-object-fit img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.gb-scale-on-hover  {
	transition: transform .4s var(--ease);
}

.gb-scale-on-hover:hover {
	transform: scale(1.1);
}

.gb-abs {
	position: absolute !important;
}

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

.gb-text-right {
	text-align: right;
}

.gb-block {
	display:block;
}

.gb-inline-block {
	display:inline-block;
}

.gb-relative {
	position: relative;
}

.gb-text-uppercase {
	text-transform: uppercase;
}

.gb-bold {
	font-weight: bold;
}

.gb-no-style {
	list-style:none;
}

.gb-list-reset {
	padding: 0;
    margin: 0;
}

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

.gb-hide {
	opacity: 0;
	visibility: hidden;
}

.delay-0 {
	-webkit-transition-delay:0s !important;
	     -o-transition-delay:0s !important;
	        transition-delay:0s !important;
}

.delay-1 {
	-webkit-transition-delay:.1s !important;
	     -o-transition-delay:.1s !important;
	        transition-delay:.1s !important;
}

.delay-2 {
	-webkit-transition-delay:.2s !important;
	     -o-transition-delay:.2s !important;
	        transition-delay:.2s !important;
}

.delay-3 {
	-webkit-transition-delay:.3s !important;
	     -o-transition-delay:.3s !important;
	        transition-delay:.3s !important;
}

.delay-4 {
	-webkit-transition-delay:.4s !important;
	     -o-transition-delay:.4s !important;
	        transition-delay:.4s !important;
}

.delay-5 {
	-webkit-transition-delay:.5s !important;
	     -o-transition-delay:.5s !important;
	        transition-delay:.5s !important;
}

.delay-6 {
	-webkit-transition-delay:.6s !important;
	     -o-transition-delay:.6s !important;
	        transition-delay:.6s !important;
}

.delay-7 {
	-webkit-transition-delay:.7s !important;
	     -o-transition-delay:.7s !important;
	        transition-delay:.7s !important;
}
.delay-8 {
	-webkit-transition-delay:.8s !important;
	     -o-transition-delay:.8s !important;
	        transition-delay:.8s !important;
}

.gb-row {
	width:100%;
	margin-right: auto;
	margin-left: auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.gb-row > .gb-col {
	flex: 0 1 auto;
}

.gb-row > .gb-col.desc {
	position: relative;
	padding: 0 var(--page-gutter);
	-webkit-box-flex: 1;
	    -ms-flex: 1;
			flex: 1;
}

.gb-col > .inner {
	position: relative;
	flex:1;
	height: clamp(16vh, 100%, 22vw);
}

.gb-active-section .gb-slide-in > .gb-slide-el {
	-webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
			transform: translateY(0%);
	opacity: 1;
}

.gb-transition {
	-webkit-transition: var(--scroll-ease);
	-o-transition: var(--scroll-ease);
	transition: var(--scroll-ease);
}


/*------------------------------------*\
    RESPONSIVE ( UTILITIES )
\*------------------------------------*/

@media only screen and (min-width:37.5em) { /* 600px */

	.gb-section, .gb-spacer {
		position: relative;
		min-height: 100vh;
		min-height: 100svh;
	}

	h1 {
		font-size: 3rem;
	}

}

@media only screen and (min-width:47.93em) { /* 767px */
	.gb-heading.large {
		font-size:var(--gb-big-font-size);
	}
	.gb-heading.medium {
		font-size:clamp(8rem, 5vw, 18rem);
	}
}

@media only screen and (min-width:56.25em) { /* 900px */

	.gb-row {
		margin-right: 0;
		width: calc(100% - var(--page-gutter));
	}

	.main-header > nav {
		display:block;
	}



	.gb-abs-lrg {
		position: absolute !important;
	}

	.gb-row.gb-flex-row-lg {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}

	.gb-flex.just-between-lg {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.gb-flex.just-center-lg {
		-webkit-box-pack: center;
			-ms-flex-pack: center;
				justify-content: center;
	}

	.gb-row > .gb-col-2 {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 20% !important;
		        flex: 1 20% !important;
	}

	.gb-row > .gb-col-3 {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 30% !important;
		        flex: 1 30% !important;
	}

	.gb-row > .gb-col-4 {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 40% !important;
		        flex: 1 40% !important;
	}

	.gb-row > .gb-col-6 {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 50% !important;
		        flex: 1 50% !important;
	}

	.gb-row > .gb-col-8 {
		-webkit-box-flex: 1 !important;
		    -ms-flex: 1 60% !important;
		        flex: 1 60% !important;
	}

	.gb-flex-column-rev-lg {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}

	.gb-flex.column-lg {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
			-ms-flex-direction: column;
				flex-direction: column;
	}

	.gb-text-left-lg {
		text-align: left;
	}

	.gb-row > .gb-col.desc {
		padding: 0;
	}

	.gb-col > .inner {
		max-width: 80%;
	}
	
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (min-width:93.75em) { /* 1500px */

}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (-o-min-device-pixel-ratio:3/2),
	   only screen and (min-resolution:144dpi) {

}

@media only screen and (max-width:56.25em) {
	.gb-transition {
		-webkit-transform:none !important;
		    -ms-transform:none !important;
		        transform:none !important;
	}
}

/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

@font-face {
    font-family: 'menloregular';
    src: url('./fonts/menlo-regular-webfont.eot');
    src: url('./fonts/menlo-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/menlo-regular-webfont.woff2') format('woff2'),
         url('./fonts/menlo-regular-webfont.woff') format('woff'),
         url('./fonts/menlo-regular-webfont.ttf') format('truetype'),
         url('./fonts/menlo-regular-webfont.svg#menloregular') format('svg');
    font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		-webkit-box-shadow:none !important;
		        box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
