* {
	margin: 0;
	padding: 0;
	-webkit-user-drag: none;
}
html {
	max-width: 100vw;
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
	background-color: #121212;
	max-width: 100vw;
	overflow-x: hidden;
	-webkit-user-drag: none;
}

@font-face {
	font-family: "AppleGaramond";
	font-style: normal;
	font-weight: normal;
	color: #f1f0ea;

	src: url("AppleGaramond.woff") format("woff"), url("AppleGaramond.woff") format("woff2");
}

@font-face {
	font-family: "century-old-style-std";
	font-weight: 400;
	font-style: normal;
	color: white;

	src: url("CenturyOldStyleStd-Regular.woff") format("woff");
}

@font-face {
	font-family: "AppleGaramond";
	font-style: normal;
	font-weight: normal;

	src: url("AppleGaramond.woff") format("woff"), url("AppleGaramond.woff") format("woff2");
}

/* Aktiv Grotesk Regular */
/* font-family: aktiv-grotesk, sans-serif;
font-weight: 400;
font-style: normal;*/

/* Aktiv Grotesk Medium */
/* font-family: aktiv-grotesk, sans-serif;
font-weight: 500;
font-style: normal; */

/* Aktiv Grotesk Medium Italic */
/* font-family: aktiv-grotesk, sans-serif;
font-weight: 500;
font-style: italic;*/

/* Aktiv Grotesk Ex Regular */
/* font-family: aktiv-grotesk-extended, sans-serif; 
font-weight: 400;
font-style: normal;*/

/* Aktiv Grotesk Ex Medium */
/* font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 500;
font-style: normal;*/

/* Aktiv Grotesk Ex Medium Italic */
/* font-family: aktiv-grotesk-extended, sans-serif; 
font-weight: 500;
font-style: italic;*/

/* Aktiv Grotesk Ex Bold */
/* font-family: aktiv-grotesk-extended, sans-serif;
font-weight: 700;
font-style: normal;*/

/* ///////// Custom CSS Styles  //////*/

#cover {
	display: block;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.image1 {
	display: block;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.image2 {
	display: block;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 70px;
}

h2 {
	font-family: "AppleGaramond", serif;
	font-weight: 800;
	font-style: normal;
	font-size: 4.8rem;
}

h3 {
	font-family: "AppleGaramond", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.1rem;
}

h4 {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 3rem;
	margin-bottom: 0;
	line-height: 3rem;
	color: white;
}

/*////// Navigation /////*/

.center-icon {
	display: none;
}

/*/// BLOCK OUT MOBILE NAV  ///*/
@media only screen and (max-width: 1200px) {
	#menuToggle {
		display: none;
		position: fixed;
	}

	input {
		display: none;
	}

	#cart-mobile {
		display: none;
	}

	.center-icon {
		display: none;
	}
}

@media only screen and (min-width: 1201px) {
	#menuToggle {
		display: none;
	}

	input {
		display: none;
	}

	.center-icon p {
		display: none;
	}
}

/*/// MOBILE NAV STYLES  ///*/
@media only screen and (max-width: 780px) {
	/*/// BLOCK OUT MAIN NAV  ///*/

	#desktop-nav {
		display: none;
	}

	.menu-wrapper {
		display: none;
	}

	.wrapper {
		display: none;
	}

	.mobile-nav {
		width: 100%;
		height: 120px;
		position: fixed;
		top: 0;
		background-color: #121212;
		z-index: 10000;
	}

	#mobile-nav-spacer {
		height: 120px;
	}

	#menuToggle {
		display: block;
		position: relative;
		padding-top: 8px;
		top: 20px;
		left: 20px;
		z-index: 1;
		-webkit-user-select: none;
		user-select: none;
	}

	#menuToggle a {
		text-decoration: none;
		/* color:white; */
		color: white;
		transition: color 0.3s ease;
	}

	#menuToggle a:hover {
		color: white;
	}

	#menuToggle input {
		display: block;
		width: 40px;
		height: 32px;
		position: absolute;
		top: -7px;
		left: -5px;
		cursor: pointer;
		opacity: 0; /* hide this */
		z-index: 2; /* and place it over the hamburger */
		-webkit-touch-callout: none;
	}

	/*
  * Just a quick hamburger
  */
	#menuToggle span {
		display: block;
		width: 33px;
		height: 4px;
		margin-bottom: 5px;
		position: relative;

		/* background: black; */
		background: white;
		border-radius: 3px;

		z-index: 1;

		transform-origin: 4px 0px;

		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
	}

	#menuToggle span:first-child {
		transform-origin: 0% 0%;
	}

	#menuToggle span:nth-last-child(2) {
		transform-origin: 0% 100%;
	}

	/* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
	#menuToggle input:checked ~ span {
		opacity: 1;
		transform: rotate(45deg) translate(-2px, -1px);
		/* background: #ffffff; */
		background: white;
	}

	/*
  * But let's hide the middle one.
  */
	#menuToggle input:checked ~ span:nth-last-child(3) {
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
	}

	/*
  * Ohyeah and the last one should go the other direction
  */
	#menuToggle input:checked ~ span:nth-last-child(2) {
		transform: rotate(-45deg) translate(0, -1px);
	}

	/*
  * Make this absolute positioned
  * at the top left of the screen
  */
	#menu {
		position: absolute;
		width: 300px;
		height: 100vh;
		margin: -100px 0 0 -50px;
		padding: 50px;
		padding-top: 125px;
		background-image: url("../img/menuback.webp");
		background-size: 100% 100%;
		list-style-type: none;
		-webkit-font-smoothing: antialiased;
		transform-origin: 0% 0%;
		transform: translate(-100%, 0);
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
	}

	#menu li {
		padding: 10px 0;
		font-family: "AppleGaramond", serif;
		font-weight: 500;
		font-style: normal;
		font-size: 3.2rem;
	}

	#menu .nav-social ul {
		list-style: none;
		padding-left: 0px;
		padding-top: 25px;
	}

	#menu .nav-social li {
		font-weight: 500;
		font-size: 1.5rem;
		line-height: 1.2rem;
	}

	/*
* And let's slide it in from the left
*/
	#menuToggle input:checked ~ ul {
		transform: none;
	}

	.center-icon {
		display: flex;
		width: 100%;
		justify-content: center;
		align-content: top;
		margin-top: -20px;
	}

	.center-icon a {
		font-family: "AppleGaramond", serif;
		font-weight: 700;
		font-style: normal;
		font-size: 0.75rem;
		color: rgb(0, 0, 0);
		text-align: center;
		width: 250px;
		padding-top: 8px;
		text-decoration: none;
	}
}

/* NAV MOBILE */

/* DESKTOP NAV STYLES */
#desktop-nav {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
	padding-top: 1%;
	background-color: #121212;
	position: fixed;
	width: 100%;
	z-index: 100000;
	transition: ease-in-out 300ms;
}

#nav-spacer {
	height: 140px;
}

.menu-wrapper {
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 1%;
	background-color: #ffffff00;
}

.menu-wrapper {
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 1%;
	background-color: #ffffff00;
}

.wrapper {
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.nav-site-name {
	padding-top: 8px;
	width: 300px;
}

.nav-site-name a {
	text-decoration: none;
	color: white;
}

#nav-title {
	font-size: 1.4rem;
	color: white;
	width: 300px;
}

#desktop-nav ul {
	align-items: center;
}

#desktop-nav li {
	display: inline;
	align-items: center;
	justify-content: center;
}

.nav-links img {
	height: 50px;
}

.nav-links a {
	color: #cc3500;
	text-decoration: none;
	padding-right: 2rem;
}

.nav-links li {
	border: 1.5px solid #cc3500;
	color: #cc3500;
	background-color: #f1f0ea;
	border-radius: 50px;
	padding: 10px 25px;
}

.nav-links li:hover {
	color: white;
	background: #cc3500;
	transition: 400ms;
	transition-timing-function: ease-in-out;
	-webkit-transition: 200ms;
	-webkit-transition-timing-function: ease-in-out;
}
/*/////// END OF DESKTOP NAV STYLES///////*/
/*/// BLOCK OUT MOBILE NAV  ///*/

/* NEW HOME PAGE STYLES */

.home-container {
	margin: 0 auto;
	width: 90%;
	background: rgba(255, 255, 255, 0);
}

.home-container .name {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	padding-top: 2%;
	text-decoration: none;
	color: #f1f0ea;
}

.home-container .project-name-home {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	padding-top: 0.5%;
	color: #f1f0ea;
}

.largebox:hover .name {
	font-style: italic;
}

.largebox:hover .project-name-home {
	color: #eb1069;
}

.small:hover .project-name-home {
	color: #eb1069;
}

.small:hover .name {
	font-style: italic;
}

/* GRID TYPES - HOME PAGE */

.largebox-small-small {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	grid-gap: 20px;
	margin-bottom: 4%;
}

.small-small-largebox {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	grid-template-rows: 1fr;
	grid-gap: 20px;
	margin-bottom: 4%;
}

.small-small-small-small {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3%;
	margin-bottom: 4%;
}

/* STUDENTS / DIRECTORY PAGE START */

.home-container2 {
	margin: 0 auto;
	width: 90%;
	background: rgba(255, 255, 255, 0);
	color: white;
}

.designer-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 20px;
}

.designer-title {
	font-family: "AppleGaramond", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4rem;
	padding-bottom: 2%;
	width: 300px;
}

.home-container2 a {
	font-family: "AppleGaramond", serif;
	text-decoration: none;
}

.home-container2 .name {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	color: #000000;
	font-style: normal;
	font-size: 1.2rem;
	padding-top: 4%;
	text-align: center;
}

/* STUDENTS / DIRECTORY PAGE END */

/* END OF GRID TYPES - HOME PAGE */

/* FLEX HOME PAGE */

.row-container {
	width: 100%;
}

/* Keep the text black when link placed around div */
.largebox-small-small a {
	text-decoration: none;
	color: black;
}

.small-small-largebox a {
	text-decoration: none;
	color: black;
}

.small-small-small-small a {
	text-decoration: none;
	color: black;
}

.largebox .project-img {
	background-color: rgba(128, 128, 128, 0);
	height: 100%;
}

.small .project-img {
	background-color: rgba(128, 128, 128, 0);
	width: 100%;
	aspect-ratio: 14 / 9;
}

.small .project-img img {
	object-fit: cover;
}

.portraits {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.portraits p {
	margin-top: -50px;
}

.profile-container {
	display: flex;
	flex: 1 0 25%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 80%;
	height: 550px;
	margin: 0 auto;
}

.profile-container .profile-img {
	width: 80%;
	min-width: 300px;
	height: 70%;
	background-size: cover;
	background-position: center;
	margin: 0 24px;
	transition: ease 220ms;
}

.name p {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	text-decoration: none;
	color: #f1f0ea;
}

/*/// HOME PAGE IMAGES ///*/

.background-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: ease-in-out 300ms;
}

#ali-cover {
	background-image: url("../img/ali/ali1.webp");
}

#ali {
	background-image: url("../img/ali/ali.webp");
}

#ali:hover {
	background-image: url("../img/ali/alirock.webp");
}

#ausiello-cover {
	background-image: url("../img/ausiello/ausiello1.webp");
}

#ausiello {
	background-image: url("../img/ausiello/ausiello.webp");
}

#ausiello:hover {
	background-image: url("../img/ausiello/ausiellorock.webp");
}

#daly-cover {
	background-image: url("../img/daly/daly1.webp");
}

#daly {
	background-image: url("../img/daly/daly.webp");
}

#daly:hover {
	background-image: url("../img/daly/dalyrock.webp");
}

#daniels-cover {
	background-image: url("../img/daniels/daniels1.webp");
}

#daniels {
	background-image: url("../img/daniels/daniels.webp");
}

#daniels:hover {
	background-image: url("../img/daniels/danielsrock.webp");
}

#devereau-cover {
	background-image: url("../img/devereau/devereau1.webp");
}

#devereau {
	background-image: url("../img/devereau/deverau.webp");
}

#devereau:hover {
	background-image: url("../img/devereau/deveraurock.webp");
}

#dosch-cover {
	background-image: url("../img/dosch/dosch1.webp");
}

#dosch {
	background-image: url("../img/dosch/dosch.webp");
}

#dosch:hover {
	background-image: url("../img/dosch/doschrock.webp");
}

#downey-cover {
	background-image: url("../img/downey/downey1.webp");
}

#downey {
	background-image: url("../img/downey/downey.webp");
}

#downey:hover {
	background-image: url("../img/downey/downeyrock.webp");
}

#earvolino-cover {
	background-image: url("../img/earvolino/earvolino1.webp");
}

#earvolino {
	background-image: url("../img/earvolino/earvolino.webp");
}

#earvolino:hover {
	background-image: url("../img/earvolino/earvolinorock.webp");
}

#eaton-cover {
	background-image: url("../img/eaton/eaton1.webp");
}

#eaton {
	background-image: url("../img/eaton/eaton.webp");
}

#eaton:hover {
	background-image: url("../img/eaton/eatonrock.webp");
}

#foti-cover {
	background-image: url("../img/foti/foti1.webp");
}
#foti {
	background-image: url("../img/foti/foti.webp");
}

#foti:hover {
	background-image: url("../img/foti/fotirock.webp");
}

#frederick-cover {
	background-image: url("../img/frederick/frederick1.webp");
}

#frederick {
	background-image: url("../img/frederick/frederick.webp");
}

#frederick:hover {
	background-image: url("../img/frederick/frederickrock.webp");
}

#himme-cover {
	background-image: url("../img/himme/himme1.webp");
}

#himme {
	background-image: url("../img/himme/himme.webp");
}

#himme:hover {
	background-image: url("../img/himme/himmerock.webp");
}

#hosford-cover {
	background-image: url("../img/hosford/hosford1.webp");
}

#hosford {
	background-image: url("../img/hosford/hosford.webp");
}

#hosford:hover {
	background-image: url("../img/hosford/hosfordrock.webp");
}

#koliesnikova-cover {
	background-image: url("../img/koliesnikova/koliesnikova1.webp");
}

#koliesnikova {
	background-image: url("../img/koliesnikova/koliesnikova.webp");
}

#koliesnikova:hover {
	background-image: url("../img/koliesnikova/koliesnikovarock.webp");
}

#koplitz-cover {
	background-image: url("../img/koplitz/koplitz1.webp");
}

#koplitz {
	background-image: url("../img/koplitz/koplitz.webp");
}

#koplitz:hover {
	background-image: url("../img/koplitz/koplitzrock.webp");
}

#krasny-cover {
	background-image: url("../img/krasny/krasny1.webp");
}

#krasny {
	background-image: url("../img/krasny/krasny.webp");
}

#krasny:hover {
	background-image: url("../img/krasny/krasnyrock.webp");
}

#lin-cover {
	background-image: url("../img/lin/lin1.gif");
}

#lin {
	background-image: url("../img/lin/lin.webp");
}

#lin:hover {
	background-image: url("../img/lin/linrock.webp");
}

#lucas-cover {
	background-image: url("../img/lucas/lucas1.webp");
}

#lucas {
	background-image: url("../img/lucas/lucas.webp");
}

#lucas:hover {
	background-image: url("../img/lucas/lucasrock.webp");
}

#monroe-cover {
	background-image: url("../img/monroe/monroe1.webp");
}

#monroe {
	background-image: url("../img/monroe/monroe.webp");
}

#monroe:hover {
	background-image: url("../img/monroe/monroerock.webp");
}

#murray-cover {
	background-image: url("../img/murray/murray1.gif");
}

#murray {
	background-image: url("../img/murray/murray.webp");
}

#murray:hover {
	background-image: url("../img/murray/murrayrock.webp");
}

#nagy-cover {
	background-image: url("../img/nagy/nagy1.webp");
}

#nagy {
	background-image: url("../img/nagy/nagy.webp");
}

#nagy:hover {
	background-image: url("../img/nagy/nagyrock.webp");
}

#penafiel-cover {
	background-image: url("../img/penafiel/penafiel1.webp");
}

#penafiel {
	background-image: url("../img/penafiel/penafiel.webp");
}

#penafiel:hover {
	background-image: url("../img/penafiel/penafielrock.webp");
}

#reid-cover {
	background-image: url("../img/reid/reid1.gif");
}
#reid {
	background-image: url("../img/reid/reid.webp");
}

#reid:hover {
	background-image: url("../img/reid/reidrock.webp");
}

#rodriguez-cover {
	background-image: url("../img/rodriguez/rodriguez1.webp");
}

#rodriguez {
	background-image: url("../img/rodriguez/rodriguez.webp");
}

#rodriguez:hover {
	background-image: url("../img/rodriguez/rodriguezrock.webp");
}

#rosemary-cover {
	background-image: url("../img/moyik/moyik1.webp");
}

#rosemary {
	background-image: url("../img/");
}

#rosemary:hover {
	background-image: url("../img/rosemary-drawing.webp");
}

#rubino-cover {
	background-image: url("../img/rubino/rubino1.webp");
}

#rubino {
	background-image: url("../img/rubino/rubino.webp");
}

#rubino:hover {
	background-image: url("../img/rubino/rubinorock.webp");
}

#solan-cover {
	background-image: url("../img/solan/solan1.webp");
}
#solan {
	background-image: url("../img/solan/solan.webp");
}

#solan:hover {
	background-image: url("../img/solan/solanrock.webp");
}

#stamos-cover {
	background-image: url("../img/stamos/stamos1.webp");
}

#stamos {
	background-image: url("../img/stamos/stamos.webp");
}

#stamos:hover {
	background-image: url("../img/stamos/stamosrock.webp");
}

#stone-cover {
	background-image: url("../img/stone/stone1.webp");
}

#stone {
	background-image: url("../img/stone/stone.webp");
}

#stone:hover {
	background-image: url("../img/stone/stonerock.webp");
}

#torres-cover {
	background-image: url("../img/torres/torres1.webp");
}

#torres {
	background-image: url("../img/torres/torres.webp");
}

#torres:hover {
	background-image: url("../img/torres/torresrock.webp");
}

#vasquez-cover {
	background-image: url("../img/vasquez/vasquez1.webp");
}

#vasquez {
	background-image: url("../img/vasquez/vasquez.webp");
}

#vasquez:hover {
	background-image: url("../img/vasquez/vasquezrock.webp");
}

#veith-cover {
	background-image: url("../img/veith/veith1.gif");
}

#veith {
	background-image: url("../img/veith/veith.webp");
}

#veith:hover {
	background-image: url("../img/veith/veithrock.webp");
}

#walker-cover {
	background-image: url("../img/walker/walker1.webp");
}

#walker {
	background-image: url("../img/walker/walker.webp");
}

#walker:hover {
	background-image: url("../img/walker/walkerrock.webp");
}

#wall-cover {
	background-image: url("../img/wall/wall1.webp");
}

#wall {
	background-image: url("../img/wall/wall.webp");
}

#wall:hover {
	background-image: url("../img/wall/wallrock.webp");
}

#campbell-cover {
	background-image: url("../img/campbell/campbell1.webp");
}

#campbell {
	background-image: url("../img/campbell/campbell.webp");
}

#campbell:hover {
	background-image: url("../img/campbell/campbellrock.webp");
}

#peraza-cover {
	background-image: url("../img/peraza/Peraza1.webp");
}

#peraza {
	background-image: url("../img/peraza/peraza.webp");
}

#peraza:hover {
	background-image: url("../img/peraza/perazarock.webp");
}

#oconnor-cover {
	background-image: url("../img/oconnor/oconnor1.webp");
}

#oconnor {
	background-image: url("../img/oconnor/oconnor.webp");
}

#oconnor:hover {
	background-image: url("../img/oconnor/oconnorrock.webp");
}

/*////// END OF HOME PAGE /////*/

/*////// ABOUT /////*/
.about-container {
	width: 85%;
	margin: 0 auto;
	margin-bottom: 4%;
	/* border: 1px solid black; */
}

.about-title {
	width: 70%;
}

#top-title-about {
	margin-top: 4%;
	width: 65%;
	/* border: 1px solid black; */
}

.about-title h2 {
	font-size: 2.4rem;
	line-height: 3rem;
	font-weight: 500;
	padding-top: 100px;
	color: #cc3500;
	font-family: "applegaramond", "serif";
}

.about-title h4 {
	color: white;
}

.about-text-container {
	width: 70%;
}

.about-text {
	margin-bottom: 5%;
	margin-top: 20px;
	color: white;
}

.about-text p {
	font-family: "applegaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 2rem;
	width: 100%;
	color: #ffffff;
	margin-bottom: 50px;
}

.more-info {
	width: 80%;
	margin-top: 5%;
	margin-bottom: 5%;
	display: inline-flex;
	/* justify-content: space-between; */
	align-items: center;
	/* border: 1px solid black; */
}

#more-info {
	font-size: 1.25rem;
	padding-right: 3%;
	width: fit-content;
}

.more-info a {
	font-family: "applegaramond", serif;
	font-weight: 500;
	font-style: normal;
	text-decoration: none;
	color: white;
}

#credits-intro {
	margin: 0 auto;
	margin-bottom: 8%;
	width: 80%;
	text-align: center;
	font-size: 2.3rem;
	line-height: 3rem;
	font-family: "applegaramond", "serif";
	font-weight: 500;
	color: white;

	/* border: 1px solid black; */
}

.credits-wrapper {
	margin: 0 auto;
	display: flex;
	/* border: 1px solid black; */
	justify-content: space-between;
	justify-content: center;
	margin-bottom: 5%;
}

.about-credits {
	width: 70%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 70px;
	justify-content: center;
	/* border: 1px solid black; */
}

.about-credit-c1,
.about-credit-c2 {
	/* border: 1px solid black; */
	width: fit-content;
}

.single-credit {
	margin-bottom: 8%;
	color: white;
}

.single-credit h4 {
	color: #f15f22 !important;
	line-height: 3rem;
}

.about-credits h4 {
	font-family: "applegaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.7rem;
	color: white;
	margin-bottom: 0.75%;
}

.about-credits p {
	font-family: "applegaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3rem;
	line-height: 1.9rem;
}

.branding-grid {
	display: grid;
	width: 100%;
	height: fit-content;
	margin-bottom: 10%;
}

.brand-asset {
	/* background: gray; */
	width: 100%;
	height: 100%;
	/*border: 1px solid #140fc3;*/
}

.branding-r1,
.branding-r2 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
}

.brand-asset video {
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*////// END OF ABOUT /////*/

/*////// PROJECT PAGES /////*/

/*
--------------
-----------
------------
-------------
 PREVIOUS GRID LAYOUT */

/* .intro-grid{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr;
  grid-gap: 60px;
  height: 70vh;

} */

/*---------------- PROJECT PAGES NEW CODE--------------- */

/* PROJECT TITLE */

.project-wrapper {
	width: 90%;
	margin: 0 auto;
	margin-top: 80px;
}
.project-title-container {
	margin-bottom: 5%;
	padding-top: 100px;
	/* background: #7ff295; */
}

.project-title-container h2 {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 4rem;
	margin-bottom: 1%;
	line-height: 4rem;
	color: white;
}

.project-title-container span {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2rem;
	margin-bottom: 3%;
}

/*nvdvbobvvb*/

.project-title-container2 {
	margin-bottom: 5%;
	width: 60%;
	/* background: #7ff295; */
}

.project-title-container2 h2 {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 4rem;
	margin-bottom: 1%;
	line-height: 4rem;
	color: white;
}

.project-title-container2 span {
	font-family: "AppleGaramond", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2rem;
}

.project-text-body {
	padding-top: 8%;
}

/* END PROJECT TITLE */

/* PROJECT TEXT */

.project-text-container {
	width: 93%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	margin-bottom: 4%;
	margin-top: 0%;
	/* border: 1px solid black; */
}

.project-text-container p {
	font-family: "applegaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 2rem;
}

.project-links {
	list-style: none;
	/* margin-top: 3%; */
	margin-left: 60px;
	margin-bottom: 5%;
	width: 40%;
	text-align: center;
}

.project-links li a {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 6rem;
	color: white;
	padding: 10px 25px;
	border: 1px solid white;
	text-decoration: none;
	border-radius: 50px;
}

.project-links a:hover {
	color: black;
	background: white;
	transition: 200ms;
	transition-timing-function: ease-in;
	-webkit-transition: 200ms;
}

.about-links {
	list-style: none;
	/* margin-top: 3%; */
	margin-bottom: 5%;
}

.about-links a {
	font-family: "AppleGaramond", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 6rem;
	/* color: black; */
	color: #000000;
	padding: 10px 25px;
	border: 1px solid #000000;
	text-decoration: none;
	border-radius: 50px;
	/* text-decoration: none; */
}

.about-links a:hover {
	color: white;
	background: white;
	border: 1px solid white;
	transition: 200ms;
	transition-timing-function: ease-in;
	-webkit-transition: 200ms;
	-webkit-transition-timing-function: ease-in;
}

#pfp {
	width: 70%;
	padding-bottom: 4%;
}
/* font-style: italic; */

/* END PROJECT TEXT */

/* IMG CODE */

.full-img {
	margin: 0 auto;
	height: fit-content;
	margin-bottom: 5%;
	align-items: flex-start;
}

.full-cover-img {
	height: fit-content;
	align-items: flex-start;
}

.two-img-grid {
	display: grid;
	align-items: flex-start;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	grid-gap: 20px;

	margin: 0 auto;
	margin-bottom: 4%;
	/* height: fit-content; */
	height: auto;
	align-items: flex-start;
}

.project-wrapper img {
	height: auto;
}

.img-1,
.img-2 {
	height: fit-content;
	/* border: 1px solid black; */
	/* height: auto; */
}

.case-study-toggle {
	width: 90%;
	margin: 0 auto;
	margin-top: 2%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

/* NEW CODE END */

.next-wrapper span {
	font-family: aktiv-grotesk-extended, a sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 0.7rem;
	color: black;
	padding-right: 20px;
}

.case-study-toggle {
	position: fixed;
	width: 95%;
	z-index: 100000;
	bottom: 5%;
	left: 2.5%;
	right: 2.5%;
}

.previous-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.previous-project {
	border: white solid 1px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	transition: 0.2s;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.previous-project img {
	height: 30px;
	padding-left: 10px;
	padding-top: 3px;
}

.previous-project:hover {
	transform: scale(1.2);
}

.next-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	align-content: center;
}

.next-project {
	border: white solid 1px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	transition: 0.2s;
	display: flex;
}

.next-project img {
	height: 30px;
	padding-left: 10px;
	padding-bottom: 2px;
}

.next-project:hover {
	transform: scale(1.2);
}

.next-project a {
	display: flex;
	align-items: center;
	color: white;
	font-family: aktiv-grotesk-extended, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 0.6rem;
	text-decoration: none;
}

/* 
a svg  #previous,
a svg  #next{
  fill:rgb(0, 0, 0)
}

a svg:hover #previous,
a svg:hover #next{ 
  fill:#FFFBF0;
  fill:blue;

} */
/*////// END OF PROJECT PAGES /////*/

/* //// DIRECTORY - FOOTER ////*/
.directory-bottom {
	/* border: 1px solid black; */
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-content: center;
}

.directory-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	margin-top: 5%;
	margin-bottom: 5%;
	margin-left: 5%;
	justify-content: center;
}

.directory-c1,
.directory-c2,
.directory-c3 .directory-c4 {
	width: fit-content;
}

#project-name-footer {
	font-family: "applegaramond", serif;
	font-weight: 500;
	font-style: italic;
	font-size: 16px;
	opacity: 0;
}

/* Project title appear on hover */
.student-name-2:hover #project-name-footer {
	display: block;
	width: 100%;
	opacity: 1;
}

.student-name-2 {
	display: inline-flex;
	list-style: none;
	align-items: center;
	text-wrap: nowrap;
	margin-bottom: 1%;
	padding-left: 0px;
	width: 100%;
}

.student-name-2 a {
	color: white;
}

.student-name-2 li {
	font-family: "AppleGaramond", serif;
	font-weight: 700;
	color: white;
	font-size: 20px;
}

.student-name-2 li a {
	color: white;
	text-decoration: none;
	margin-right: 15px;
}

.student-name-2 li a:hover {
	color: white;
	text-decoration: none;
	transition: 100ms;
	transition-timing-function: ease-in;
	-webkit-transition: 200ms;
	-webkit-transition-timing-function: ease-in;
}

.directory-mobile {
	display: none;
}

/* //// END OF DIRECTORY - FOOTER ////*/

/* ////////// FOOTER /////////*/

hr {
	width: 100%;
	height: 1.5px;
	border: 0 none;
	margin-right: auto;
	margin-left: auto;
	background-color: #555;
}

footer {
	margin: 0 auto;
	width: 98%;
	background-color: #121212;
	align-self: center;
	justify-content: center;
}

.footer-wrapper {
	display: flex;
	width: 100%;
	color: white;
	background-color: #121212;
	height: 200px;
	margin-top: 0%;
}

.footer-items-wrapper {
	justify-content: center;
	align-items: center;
}

.footer-container {
	background-color: #121212;
	padding: 0 48px;
	height: fit-content;
	align-items: baseline;
	justify-content: center;
	align-items: center;
}

.footer-grid {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex: 1;
}

.footer-box-1 {
	display: flex;
	justify-content: flex-start;
	align-content: center;
}

.logo-text a {
	color: black;
	text-decoration: none;
}

.footer-links ul {
	display: flex;
	justify-content: flex-end;
}

.footer-links ul li {
	font-family: "applegaramond", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	list-style: none;
	line-height: 1rem;
	display: inline-flex;
	padding-top: 10px;
	padding-left: 24px;
}

.footer-links ul li:first-child {
	padding-left: 0;
}

.footer-links ul li a {
	text-decoration: none;
	color: white;
	padding-left: 0px;
}

.footer-links ul li a:hover {
	text-decoration: none;
	color: green;
	transition: 200ms;
	transition-timing-function: ease-in;
	-webkit-transition: 200ms;
	-webkit-transition-timing-function: ease-in;
}

.footer-img {
	margin-bottom: 0;
}

.footer-animation {
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	/* border: 1px solid black; */
}

.footer-animation img {
	display: flex;
	justify-content: center;
	align-content: center;
	text-align: center;
}

.credits-container {
	width: 90%;
	margin: 0 auto;
	margin-bottom: 2%;
	margin-top: 3%;
	background-color: #7fc7bb;
}

.credits-container p {
	font-family: "mohave", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.65rem;
	text-align: center;
	color: white;
}

/* ////////// END OF FOOTER /////////*/

.profile-link .name {
	margin-bottom: 20%;
}

.profile-link .name p {
	color: white;
}

.nav-site-name a img:hover {
	transform: scale(1.2);
}

.nav-links a img:hover {
	transform: scale(1.2);
}

@media screen and (max-width: 700px) {
	.portraits {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		column-gap: 20px;
		max-width: 100vw;
		margin-top: 180px;
	}

	.profile-container {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		max-width: 150px;
		max-height: 550px;
		margin: -180px 16px 0 16px;
	}

	.profile-container .profile-img {
		height: 80%;
	}

	.profile-img {
		transform: scale(0.5);
	}

	.profile-link .name {
		margin-bottom: 0;
	}

	.profile-link .name p {
		font-family: "AppleGaramond", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.2rem;
		text-decoration: none;
		color: #f1f0ea;
		margin-top: -200px;
	}
}

.video-container {
	display: flex;
	justify-content: center;
	margin: 0 24px;
}

.video-container iframe {
	width: 100%;
	max-width: 800px;
	aspect-ratio: 14 / 9;
}
