/*//////// PORTFOLIO PAGE ////////*/
#portfolio-page {}


/*////// HERO SECTION //////*/
section.hero-section {
	/*background-color: #000000;*/
}
section.hero-section div.hero-container {
	padding: 0 0;
	height: 72rem;
	background-color: var(--Gold, #C3A86B);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/*//// FLEX ////*/
div.hero-container div.hero-flex-container {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translate(-50%,-50%);
	width: 100%;
	/*padding: 19.2rem 20.5rem;*/
}
div.hero-flex-container div.hero-flex-item {}

/*// FLEX SPECIFICS //*/
#hero-flex-item-1 {
	padding: 30rem 6rem 19rem 12.2rem;
}
#hero-flex-item-2 {
	padding: 30rem 0 19rem 0;
}

/*// ELEMENTS //*/
#hero-flex-item-1 h1 {
	margin: 0 0;
	margin-bottom: 2.4rem;
	color: #FFF;
	text-align: center;
	font-family: "Gotham";
	font-size: 6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.16; /* 116.667% */
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}
#hero-flex-item-1 p {
	margin: 0 0 ;
	color: #FFF;
	text-align: center;
	font-family: "avenir-lt-pro";
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.6; /* 160% */
}
div.hero-scrim {
	position: absolute;
	z-index: 99;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
}






/*////// EXPLORE SECTION //////*/
section.explore-section {}
section.explore-section div.explore-container {
	padding: 10rem 16rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;	
}

/*//// FLEX ////*/
div.explore-container div.explore-flex-container {}
div.explore-flex-container div.explore-flex-item {}
div.explore-flex-item h3 {
	margin: 0 0;
	color: var(--Blue, #0A1E2C);
	text-align: center;
	font-family: "Gotham";
	font-size: 3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4; /* 140% */
}





/*////// PROJECTS SECTION //////*/
section.projects-section {}
section.projects-section div.projects-container {
	padding: 10rem 12.5rem 24rem 12.5rem;
	background-color: #ffffff;
}

/*//// FLEX ////*/
div.projects-container div.projects-flex-container {
	justify-content: flex-start;
}
div.projects-flex-container div.projects-flex-item {
	margin-bottom: 3rem;
}
div.projects-flex-container div.projects-flex-item.left {
	padding-right: 1.5rem;
}
div.projects-flex-container div.projects-flex-item.right {
	padding-left: 1.5rem;
}

/*// ELEMENTS //*/
div.projects-flex-item div.project-container {
	position: relative;
	width: 100%;
	border-radius: 1rem;
	background: #C4C4C4;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
}
div.projects-flex-item div.project-container.full-height {
	height: 72.8rem;
}
div.projects-flex-item div.project-container.half-height {
	height: 34.8rem;
	margin-bottom: 3rem;
}
div.projects-flex-item div.project-container.half-height:last-of-type {
	margin-bottom: 0;
}	

/*// FLEX SPECIFICS //*/
#projects-flex-item-1 {}
#projects-flex-item-2 {}
#projects-flex-item-3 {}
#projects-flex-item-4 {}


div.project-container div.project-scrim {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .6s ease;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, var(--Blue, #0A1E2C) 100%);
	transform: translateY(100%);
}
div.project-container:hover div.project-scrim {
	transform: none;
}

div.project-container div.project-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44rem;
	padding: 2.5rem;
	transition: all .3s ease;
	transition-delay: .2s;
	transform: translateX(-100%);
	opacity: 0;
}
div.project-container:hover div.project-info {
	transform: none;
	opacity: 1;
}
div.project-info h3 {
	margin: 0 0;
	margin-bottom: 1.5rem;
	color: #FFF;
	font-family: "Gotham";
	font-size: 3rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4; /* 140% */
}
div.project-info p {
	margin: 0 0;
	margin-bottom: 1.5rem;
	color: #FFF;
	font-family: "avenir-lt-pro";
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.33; /* 133.333% */
}
div.project-info a {
	margin: 0 0;
	color: var(--Gold, #C3A86B);
	font-family: "avenir-lt-pro";
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 2.4rem; /* 133.333% */
	transition: all .3s ease;
}
div.project-info a span {
	display: inline-block;
	transition: all .3s ease;
}
div.project-info a:hover {
	color: #ffffff;
}
div.project-info a:hover span {
	padding-left: 1rem;
}


/*///////// FOOTER CTA SECTION ////////*/
section.cta-section {
    margin-top: 0 !important;
    z-index: 100;
}





/*//// GRANULAR RESPONSIVE CSS HERE ////*/
/*// MOBILE SCREEN //*/
@media only screen and (max-width: 1024px) { }
/*// SMALL MOBILE //*/
@media only screen and (max-width: 851px) { 

		/*////// HERO SECTION //////*/
		section.hero-section div.hero-container { height: 66dvh; }
		div.hero-container div.hero-flex-container { padding: 0 0; }
		#hero-flex-item-1 { padding: 30% 4rem 0 4rem; }
		#hero-flex-item-1 h1 { font-size: 3.4rem; padding: 0 8rem; }
		#hero-flex-item-1 p { }
		#hero-flex-item-1 p br { display: none; }

		/*////// EXPLORE SECTION //////*/
		section.explore-section div.explore-container { padding: 6rem 3rem; }
		div.explore-flex-item h3 {}
		div.explore-flex-item h3 br { display: none; }

		/*////// PROJECTS SECTION //////*/
		section.projects-section div.projects-container { padding: 6rem 3rem 16rem 3rem;; }
		div.project-container div.project-scrim { transform: none; }
		div.project-container div.project-info { transform: none; opacity: 1; }

} 
@media only screen and (max-width: 480px) { 

		/*////// HERO SECTION //////*/
		section.hero-section div.hero-container { height: 66dvh; }
		div.hero-container div.hero-flex-container { padding: 0 0; }
		#hero-flex-item-1 { padding: 30% 4rem 0 4rem; }
		#hero-flex-item-1 h1 { font-size: 3.4rem; padding: 0 8rem; }
		#hero-flex-item-1 p { }
		#hero-flex-item-1 p br { display: none; }

		/*////// EXPLORE SECTION //////*/
		section.explore-section div.explore-container { padding: 6rem 3rem; }
		div.explore-flex-item h3 {}
		div.explore-flex-item h3 br { display: none; }

		/*////// PROJECTS SECTION //////*/
		section.projects-section div.projects-container { padding: 6rem 3rem 16rem 3rem;; }
		div.project-container div.project-scrim { transform: none; }
		div.project-container div.project-info { transform: none; opacity: 1; }

}
/*// LANDSCAPE ORIENTATION - TABLET & SMALLER //*/
@media screen and (max-width: 1024px) and (orientation: landscape) { }
@media screen and (max-width: 813px) and (orientation: landscape) { }