:root {
	/*Background Colors*/
	--primaryBG: #000;
	/*Font Colors*/
	--onBGPrimary: #fff;
	--onBGSecondary: rgba(255, 255, 255, 0.60);
	--onBGTertiary: rgba(255, 255, 255, 0.50);
	
	--accentAbout: #999;
	--accentCNBC: #449FDB;
	--accentNBCNews: #5081FF;
	--accentTODAY: #ED6757;
	--accentGolden: #F58439;
	--accentWayUp: #3DADD3;
	--accentFreshList: #4B91C3;
	--accentSXM: #028AC6;
	
	
	--accentCNBCSecondary: rgba(68,159,219,0.2);
	--accentNBCNewsSecondary: rgba(80,129,255,0.2);
	--accentTODAYSecondary: rgba(237,103,87,0.2);
	--accentGoldenSecondary: rgba(245,132,57,0.2);
	--accentWayUpSecondary: rgba(115,224,244,0.2);
	--accentFreshListSecondary: rgba(75,145,195,0.2);
	--accentSXMSecondary: rgba(2,138,198,0.2);
	
	--screenWidthDesktop: 300px;
	--screenWidthMobile: 200px;
	
	--dsWidthDestop: 100%;
	
	
	 --nav-height: 50px;
	 --highlight-color: #4da6ff;
	 --inactive-color: rgba(255, 255, 255, 0.6);
	 --bg-color: rgba(25, 25, 25, 0.82);
	
	/*Testing*/
	/*--viewDebugBG: rgba(240, 40, 173, 0.1);
	--viewDebugBorder: rgba(240, 40, 173, 0.8);
	--viewDebug: inset 0px 0px 0px 1px var(--viewDebugBorder);*/
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
	scroll-behavior: smooth;
}

body {
	background: #000000;
	font-family: 'Montserrat', sans-serif;
	color: var(--onBGPrimary);
	padding: 0px;
	margin: 0;
	scroll-behavior: smooth;
	
	/*TESTING*/
	/*background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);*/
}

.top-background {
	background: lightblue;
	width: 100vw;
	height: 1150px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1000;
	
	opacity: 0;
	transform: translateY(100px);
	animation: animate-up-default 3s ease-in-out 0.6s forwards;
}

.top-background.home {
	background: url(/resources/images/global/bg.png) center no-repeat;
	background-size: auto 100%;
	height: 700px;
}

.top-background.cnbc {
	background: url(/resources/images/cnbc/bg.png);
	background-size: auto 100%;
}

.top-background.nbcnews {
	background: url(/resources/images/nbcnews/bg.png);
	background-size: auto 100%;
}

.top-background.today {
	background: url(/resources/images/today/bg.png);
	background-size: auto 100%;
}

.top-background.golden {
	background: url(/resources/images/golden/bg.png);
	background-size: auto 100%;
}

.top-background.wayup {
	background: url(/resources/images/wayup/bg.png);
	background-size: auto 100%;
}

.top-background.freshlist {
	background: url(/resources/images/freshlist/bg.png);
	background-size: auto 100%;
}

.top-background.sxm {
	background: url(/resources/images/sxm/bg.png);
	background-size: auto 100%;
}


.top-background.taller {
	height: 1300px;
}

.top-background.shorter {
	height: 1050px;
}

.top-background.shorter-car {
	height: 950px;
}

.wrapper {
	
	max-width: 1300px;
	margin: auto;
	width: 100%;
	overflow-x: hidden;
	padding-top: 80px;
	
	
	
	/*transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 1.0s ease-out 1s forwards;*/
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}


nav {
	/*display: flex;
	justify-content: space-between;
	align-items: center;*/
	padding: 20px;
	position: fixed;
	/*background: rgba(0, 0, 0, .75);*/
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0));
	width: 100%;
	z-index: 9999;
	/*backdrop-filter: blur(0px);*/
	box-sizing: border-box;
	/*padding-right: 30px;*/
	
	animation: animate-down 2s ease-in-out 0.2s forwards;
	transform: translateY(-40px);
	opacity: 0;
	
	/*TESTING*/
	/*background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);*/
}

@keyframes animate-down {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px; /* or however tall your nav is */
  z-index: -1; /* Sit behind nav content */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  /*mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);*/
  pointer-events: none;
  /*background: linear-gradient(to bottom, black, transparent);*/
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1300px;
	margin: auto;
	/*border-bottom: 1px solid red;*/
}

.nav-links {
	display: flex;
	gap: 20px;
	align-items: center;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.nav-links.home {
	margin: auto;
	width: 100%;
	/*background: red;*/
	justify-content: center;
	margin-bottom: 10px;
}

.nav-home {
	z-index: 999;
}

.nav-home a, .nav-links a {
	color: var(--onBGSecondary);
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
	font-size: 18px;
	font-weight: 600;
}

.nav-home a:hover, .nav-home a:focus, .nav-links a:hover, .nav-links a:focus {
	color: var(--onBGPrimary);
}

.nav-image {
	/*margin-top: 3px;*/
	margin-bottom: -2px;
	opacity: 0.7;
	transition: 0.2s ease;
}

.nav-image:hover {
	opacity: 1;
	transition: 0.2s ease;
}

/*.nav-links a {
	color: var(--onBGSecondary);
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}*/

/*.nav-links a:hover, a:focus {
	color: var(--onBGPrimary);
}*/

.nav-menu-button {
	display: none;
	
	font-size: 1.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
	  
	  z-index: 999999;
	  
	  background: url('/resources/images/global/menu.svg') no-repeat center;
	  background-size: 100%;
	  width: 24px;
	  height: 24px;
	  opacity: 0.7;
	  
	  /*TESTING*/
	/*background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);*/
}

.close-menu {
	display: none;
	
	font-size: 1.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
	  
	  z-index: 9999999999999999;
	  
	  background: url('/resources/images/global/close.svg') no-repeat center;
	  background-size: 100%;
	  width: 24px;
	  height: 24px;
	  opacity: 1.0;
}

.nav-menu-mobile {
	display: none;
	
	flex-direction: column;
	padding: 20px;
      gap: 10px;
      position: absolute;
      top: 60px;
	  /*top: 0px;*/
      /*left: 0;*/
      right: 0;
	  margin-right: 10px;
	  
      color: white;
	  z-index: 9999999999;
	  background: rgba(0, 0, 0, .8);
	  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(9px);
  position: fixed;
  /*padding-top: 80px;*/
  border-top: 1px solid #444;
  
  /*background: red;*/
  border-radius: 20px;
  text-align: right;
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 20px;
  transform: scale(1.1);
  top: 74px;
  right: 4px;
  border-top: 1px solid #444;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  background: rgba(30, 30, 30, .75);
  
  /*margin-top: -80px;*/
  /*margin-top: 100px;*/
  
	  
	  
	/*TESTING*/
	/*background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);*/
  box-shadow: 0 0 300px black, 0 0 100px black;
}

/*.nav-menu-mobile a {
	text-decoration: none;
	color: white;
}*/

/*.nav-menu-mobile .separator {
	width: 100%;
	height: 1px;
	background: #777;
	margin-bottom: 10px;
}*/

.nav-menu-mobile a, .nav-menu-mobile a {
	color: var(--onBGSecondary);
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
}

.nav-menu-mobile a:hover, .nav-menu-mobile a:focus, .nav-menu-mobile a:hover, .nav-menu-mobile a a:focus {
	color: var(--onBGPrimary);
}

/*.blur-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999999999999999999;
	pointer-events: none;
	filter: url(#gradBlur);	
	mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
	-webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}*/

.project-main-info {
	margin: 48px auto;
	text-align: center;
	max-width: 788px;
	
	/*opacity: 0;*/
	/*transform: translateY(100px);
	animation: slideUp 2s ease-in-out forwards;*/
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.phase-title {
	font-size: 42px;
	/*font-size: 32px;*/
	font-weight: 700;
	/*margin-bottom: 60px;*/
	margin-top: 30px;
	/*line-height: 220%;*/

}

.phase-title-block {
	margin-top: 100px;
	margin-bottom: 60px;
	padding-top: 80px;
	padding-bottom: 60px;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
}


.phase-label {
	background: var(--accentNBCNews);
	color: white;
	font-size: 42px;
	width: fit-content;
	padding: 10px 20px;
	
	font-family: "Google Sans Code", monospace;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	
	margin-top: 60px;
	/*margin-left: 43px;*/
	/*margin-bottom: 42px;*/
	margin-right: 20px;
	
	border-radius: 6px;
}

.phase-label-med {
	background: var(--accentNBCNews);
	color: white;
	font-size: 22px;
	width: fit-content;
	padding: 6px 10px;
	
	font-family: "Google Sans Code", monospace;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	
	margin-top: 60px;
	/*margin-left: 43px;*/
	/*margin-bottom: -20px;*/
	margin-right: 10px;
	
	border-radius: 3px;
}

.phase-label-sm {
	background: var(--accentNBCNews);
	color: white;
	font-size: 16px;
	width: fit-content;
	padding: 4px 9px;
	
	font-family: "Google Sans Code", monospace;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	
	/*margin-top: 60px;*/
	/*margin-left: 43px;*/
	margin-bottom: 10px;
	/*margin-right: 10px;*/
	
	border-radius: 3px;
}

h1 {
	font-size: 64px;
	margin: 6px auto 10px auto;
	font-weight: 800;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

h2 {
	font-size: 32px;
	font-weight: 600;
	color: var(--accentCNBC);
}

h3 {
	font-size: 26px;
	font-weight: 700;
	margin-top: 40px;
}

h4 {
	font-size: 22px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 0px;
}

h5 {
	font-size: 20px;
	font-weight: 400;
	margin-top: 40px;
	margin-bottom: 0px;
	
}

.more-top-space {
	margin-top: 40px;
}

p.title {
	color: var(--onBGPrimary);
	font-weight: 500;
	margin-top: 40px;
}

p {
	font-size: 20px;
	font-weight: 400;
	color: var(--onBGSecondary);
	line-height: 150%;
}

li {
	font-size: 20px;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 0px;
}

li.secondary {
	opacity: .6;
	font-weight: 400;
}

ul li {
	line-height: 140%;
}

ul li:not(:last-child) {
  margin-bottom: 10px;
}

.ol-title {
	font-size: 22px;
	/*color: blue;*/
	font-weight: 500;
}

ol li {
  margin-bottom: 20px;
}

.text-secondary {
	color: var(--onBGSecondary);
}

strong {
	color: #fff;
	font-weight: 500;
}


/*.section-nav-wrapper {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 30px; /* match .section-nav *!/
	padding: 1.5px; /* thickness of the border *!/
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
	opacity: 1.0; /* overall visibility of the border *!/
	margin: 80px auto;
	margin-bottom: 40px;
}*/

/*.section-nav {
	background: red;
	background: rgba(25, 25, 25, .82);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 20px; 
	color: rgba(255, 255, 255, 0.5);
	margin: 80px 0px;
	height: 84px;
	border-radius: 30px;
	position: fixed;
}*/

/*.section-nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999999999999999;
	width: 100%;
}*/

/*.section-nav::before {
	 content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  border-radius: 10px; /* slightly more than .gradient-outline to wrap around *!/
  z-index: -1;
  opacity: 0.2;
}*/

/*.section-nav a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	margin: 10px 5px;
}

.section-nav a:hover {
	color: rgba(255, 255, 255, 1.0);
	text-decoration: none;
}

.section-nav a.active {
	color: blue;
}

/* Underline animation *!/
.section-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 0%;
	background: blue;
	transition: width 0.3s ease;
}

.section-nav a.active::after {
	width: var(--progress, 100%);
}*/


.project-app-platform {
	font-size: 36px;
	font-weight: 800;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-app-platform.home {
	margin-top: 20px;
	font-size: 26px;
}

.project-app-name.home {
	margin-top: 20px;
	font-size: 26px;
	color: var(--onBGPrimary);
	font-size: 36px;
	font-weight: 900;
	margin-top: 2px;
	margin-bottom: 10px;
}

.cnbc-font-accent {
	color: var(--accentCNBC);
}

.nbcnews-font-accent {
	color: var(--accentNBCNews);
}

.today-font-accent {
	color: var(--accentTODAY);
}

.golden-font-accent {
	color: var(--accentGolden);
}

.wayup-font-accent {
	color: var(--accentWayUp);
}

.freshlist-font-accent {
	color: var(--accentFreshList);
}

.sxm-font-accent {
	color: var(--accentSXM);
}


.about-font-accent {
	color: var(--accentAbout);
}

.home-font-accent {
	color: var(--onBGSecondary);
	font-weight: 600;
}

.project-description {
	font-size: 18px;
	font-weight: 500;
	color: var(--onBGSecondary);
	line-height: 160%;
	margin: auto;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-description.medium {
	width: 60%;
}

.project-description.small {
	width: 50%;
}

.project-description.about {
	margin-top: 20px;
	font-size: 20px;
}

.project-hero-images {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	/*transition: transform 0.3s ease;*/
	width: 100%;
	/*padding-bottom: 2px;*/
	/*transform: scale(0.5);*/
	/*background: red;*/
	/*overflow: hidden;*/
	
	/*transform: translateY(100px);
	opacity: 0;
	animation: slideUp 2s ease-in-out 0.3s forwards;*/
	
	/*TESTING*/
	/*background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);*/
}

.project-hero-images.additional-gap {
	gap: 60px;
}

.project-hero-images.car {
	/*margin-top: -10px;*/
}

.project-hero-images.home {
	transform: scale(0.38) translateY(-404px);
	/*background: blue;*/
}

.project-hero-images.home.phone-old {
	transform: scale(0.45) translateY(-204px);
}

.project-hero-images.home.card {
	gap: 0px;
	margin: auto 10px;
	/*margin: -20px;*/
}



/*.reflected::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scaleY(-1);
	background: white; /* fallback *!/
	pointer-events: none;
	z-index: 100000000;

  /* Create a snapshot of the div visually *!/
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 50%);
  background-blend-mode: multiply;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 80%);
}*/

/*.reflected {
	content: "";
	/*position: absolute;*!/
	top: 100%; /* places it directly below *!/
	left: 0;
	width: 100%;
  	height: 100%;
  	background: inherit;
  	transform: scaleY(-1);
  	opacity: 0.5;
  	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 30%);
  	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 30%);
  	pointer-events: none;
}*/



.mock {
	background: clear;
	border-radius: 38px;
	width: 300px;
	height: 650px;
	aspect-ratio: 300/650;
	box-shadow: 0px 4px 80px rgba(0,0,0,0.5);
	border: 0.5px solid rgba(255, 255, 255,0.3);
}

.mock.center {
	margin: auto;
}

.mock.phone-old {
	background: clear;
	border-radius: 14px;
	width: 300px;
	height: 533px;
	aspect-ratio: 300/533;
	box-shadow: 0px 4px 80px rgba(0,0,0,0.5);
	border: 0.5px solid rgba(255, 255, 255,0.3);
}


/*NEW*/

.mock-tablet {
	background: clear;
	border-radius: 20px;
	/*width: 930px;
	height: 650px;
	aspect-ratio: 930/650;*/
	width: 740px;
	height: 516px;
	aspect-ratio: 930/650;
	box-shadow: 0px 4px 80px rgba(0,0,0,0.5);
	border: 0.5px solid rgba(255, 255, 255,0.3);
}

.mock-car {
	background: clear;
	border-radius: 20px;
	/*width: 930px;
	height: 650px;
	aspect-ratio: 930/650;*/
	width: 740px;
	height: 444px;
	aspect-ratio: 780/444;
	box-shadow: 0px 4px 80px rgba(0,0,0,1.0), 0px 4px 80px rgba(0,0,0,0.3);
	border: 1px solid rgba(40, 40, 40,1.0);
}




/*.size-tablet {
	background: clear;
	border-radius: 38px;
	width: 930px;
	height: 650px;
	aspect-ratio: 930/650;
	box-shadow: 0px 4px 80px rgba(0,0,0,0.5);
	border: 0.5px solid rgba(255, 255, 255,0.3);
}*/

img.profile {
	border-radius: 300px;
	margin-top: 0px;
	margin-bottom: 20px;
}

img.big {
	width: 100%;
	border-radius: 20px;
	margin-top: 20px;
}


img.overall {
	border-radius: 30px;
	width: 100%;
}

.mock img {
	width: 100%;
	border-radius: 38px;
}

.mock.phone-old img {
	width: 100%;
	border-radius: 14px;
	
	/*width: 100%;*/
	/*height: 100%;*/
	/*object-fit: cover; /* or "contain" depending on desired behavior *!/*/
	/*display: block;*/
}

.mock-tablet img.tablet {
	/*width: 90%;*/
	height: 100%;
	border-radius: 20px;
}

.mock-car img.car {
	/*width: 90%;*/
	height: 100%;
	border-radius: 20px;
	
}

.mock video {
	width: 100%;
	border-radius: 38px;
}

.mock.phone-old video {
	width: 100%;
	border-radius: 14px;
}

.mock-car video {
	width: 100%;
	border-radius: 20px;
}

.size-large {
	transform: translateY(0px) scale(1.0);
	z-index: 1000;
	margin: auto -50px;
	padding-bottom: 1px;
}

.size-large.no-gap {
	margin: auto 0px;
}

.size-large-tablet {
	/*transform: translateY(0px) scale(0.5);*/
	/*z-index: 1000;*/
	margin: auto 0px;
}

.size-medium {
	transform: scale(0.9);
	margin-top: 20px;
}

.size-small {
	transform: scale(0.8);
	margin: auto -80px;
	z-index: -2;
	margin-top: 30px;
}

.size-large-car {
	transform: translateY(0px) scale(1.3);
	z-index: 1000;
	/*margin: auto -50px;*/
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 120px;
	margin-left: -100px;
	margin-right: -100px;
}

.size-medium-car {
	transform: translateY(0px) scale(1.0);
	z-index: 999;
	/*margin: auto -50px;*/
	
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 180px;
	margin-left: -150px;
	margin-right: -150px;
}

.size-small-car {
	transform: translateY(0px) scale(0.7);
	z-index: 998;
	/*margin: auto -50px;*/
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 200px;
	margin-left: -200px;
	margin-right: -200px;
	
}

.size-large-car-hero {
	transform: translateY(0px) scale(1.3);
	z-index: 1000;
	/*margin: auto -50px;*/
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 120px;
	margin-left: -100px;
	margin-right: -100px;
}

.size-medium-car-hero {
	transform: translateY(0px) scale(1.0);
	z-index: 999;
	/*margin: auto -50px;*/
	
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 130px;
	margin-left: -150px;
	margin-right: -150px;
}

.size-small-car-hero {
	transform: translateY(0px) scale(0.7);
	z-index: 998;
	/*margin: auto -50px;*/
	padding-bottom: 1px;
	border-radius: 20px;
	margin-top: 130px;
	margin-left: -200px;
	margin-right: -200px;
	
}

.no-overlap {
	margin: auto 0px;
	gap: 20px;
	margin-left: 4.5vw;
}

.scale-down {
	margin-top: -130px;
	overflow: visible;
	transform: scale(1.0);
	
	/*background: red;*/
}

.overflow-visible {
	overflow: visible;
}

.overflow-hidden {
	/*background: red;*/
	overflow-x: hidden;
	width: 100%;
}

.animate-up-default {
	transform: translateY(100px) scale(1.0);
	opacity: 0;
	animation: animate-up-default 2s ease-out 0.1s forwards;
}

.animate-up-large {
	transform: translateY(100px) scale(1.0);
	opacity: 0;
	animation: animate-up-large 2s ease-out 0.6s forwards;
}

.animate-up-large-2 {
	transform: translateY(100px) scale(1.0);
	opacity: 0;
	animation: animate-up-large 2s ease-out 0.9s forwards;
}

.animate-up-medium {
	transform: translateY(100px) scale(0.9);
	opacity: 0;
	animation: animate-up-medium 2s ease-out 0.8s forwards;
}

.animate-up-small {
	transform: translateY(100px) scale(0.8);
	opacity: 0;
	animation: animate-up-small 2s ease-out 1.0s forwards;
}

@keyframes animate-up-default {
  to {
    transform: translateY(0) scale(1.0);
	opacity: 1.0;
  }
}

@keyframes animate-up-large {
  to {
    transform: translateY(0) scale(1.0);
	opacity: 1.0;
  }
}

@keyframes animate-up-medium {
  to {
    transform: translateY(0) scale(0.9);
	opacity: 1.0;
  }
}

@keyframes animate-up-small {
  to {
    transform: translateY(0) scale(0.8);
	opacity: 1.0;
  }
}


.project-specs {
	display: flex;
	gap: 46px;
	margin: auto;
	margin-top: 60px;
	justify-content: center;
	/*justify-content: space-between;*/
	/*background: red;*/
	/*width: 80%;*/
	/*max-width: 900px;*/
	overflow-x: auto;
	  	 scrollbar-width: none; /* Firefox */
	  	 -ms-overflow-style: none; /* IE 10+ */
	  	 flex-shrink: 0; 
	  	 /*justify-content: left;*/
	  	 padding: 0px 20px;
	  	 box-sizing: border-box;
	  	 
	animation: animate-up-card-4 2.5s ease-out 1.0s forwards;
	transform: translateY(200px);
	opacity: 0;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-specs.about {
	margin-bottom: 100px;
	margin-top: 60px;
}

.project-specs::-webkit-scrollbar {
	 	display: none; /* Chrome, Safari */
	 }

.project-spec {
	display: flex;
	flex-direction: column;
	/*min-width: 300px;*/
	flex-shrink: 0;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-title {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	margin-bottom: 10px;
	
	margin-bottom: 10px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 20px;
	margin-bottom: 20px;
	opacity: 0.6;
	opacity: 1.0;
	letter-spacing: 0.3em;

	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-subtitle {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	margin-bottom: 10px;
	
	margin-bottom: 10px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 10px;
	margin-bottom: 10px;
	opacity: 0.7;
	/*opacity: 1.0;*/
	letter-spacing: 0.3em;
	width: 70%;
	/*color: red;*/

	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-subtitle.top-pad {
	margin-top: 10px;
}

.project-spec-highlight {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.0em;
	color: var(--onBGPrimary);
	opacity: 0.8;
}

.project-spec-detail-title {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-detail-title-2 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	opacity: 0.9;
	/*color: var(--onBGSecondary);*/
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-detail {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 8px;
	color: var(--onBGSecondary);
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.project-spec-detail.constrained {
	width: 150px;
}

.project-spec-detail.constrained-more {
	width: 200px;
}

section {
	margin: auto;
	margin-top: 60px;
	max-width: 900px;
	padding-left: 20px;
	padding-right: 20px;
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.scroll-wrapper {
  position: relative;
  width: 100%;
  margin-top: -20px;
}

.scroll-container {
  /*background: red;*/
  width: 100%;
  /*overflow-x: visible;
  overflow-y: auto;*/
  transition: height 0.6s ease; /* Smooth transition when height changes */
  /*margin: -20px;*/
  margin-top: 60px;
  /*overflow-y: visible;
  overflow-x: scroll;*/
  overflow: auto;
  overflow-y: hidden;
  position: relative;
  /*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.scroll-container::-webkit-scrollbar {
	 	display: none; /* Chrome, Safari */
 }
 
 
.scroll-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: max-content;
}

.scroll-row img {
  width: var(--screenWidthDesktop);
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #333;
}

.scroll-row img.designsystem {
	/*background: red;*/
	/*width: 500px;*/
	width: auto;
	/*transform: scale(0.5);*/
}

.spacer {
	height: 300px;
	width: 184px;
	width: 10vw;
	width: 174px;
	/*background: blue;*/
	flex-shrink: 0;
}

/* Gradient overlays */
.gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  /*pointer-events: none;*/
  z-index: 10;
  transition: opacity 0.3s ease;
}

.gradient-left {
  left: 0;
  background: linear-gradient(to right, black, transparent);
  opacity: 0;
}

.gradient-right {
  right: 0;
  background: linear-gradient(to left, black, transparent);
  opacity: 1;
}

/*.gradient-right::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%; /* or however tall your nav is *!/
  z-index: -1; /* Sit behind nav content *!/
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
  /*mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);*!/
  pointer-events: none;
  /*background: linear-gradient(to bottom, black, transparent);*!/
}*/

/*.gradient-left::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%; /* or however tall your nav is *!/
  z-index: -1; /* Sit behind nav content *!/
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
  /*mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);*!/
  pointer-events: none;
  /*background: linear-gradient(to bottom, black, transparent);*!/
}*/

/* Class toggles controlled by JS */
.scroll-wrapper.show-left .gradient-left {
  opacity: 1;
}

.scroll-wrapper.hide-right .gradient-right {
  opacity: 0;
}



.more-space {
	margin-top: 40px;
}

.screens {
	display: flex;
	gap: 30px;
}

.screen-group {
	width: var(--screenWidthDesktop);
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.screen-group.center {
	margin: auto;
	margin-top: 60px;
}

/*.screen-group.design-system {
	width: 1000px;
	height: auto;
	background: red;
}*/

.double {
	/*width: 630px;*/
	width: calc(var(--screenWidthDesktop) * 2 + 30px);
}

.triple {
	/*width: 960px;*/
	width: calc(var(--screenWidthDesktop) * 3 + 70px);
}

.quad {
	/*width: 960px;*/
	width: calc(var(--screenWidthDesktop) * 4 + 90px);
}

.five {
	/*width: 960px;*/
	width: calc(var(--screenWidthDesktop) * 5 + 100px);
}

.six {
	width: calc(var(--screenWidthDesktop) * 6 + 170px);
}

.seven {
	width: calc(var(--screenWidthDesktop) * 7 + 200px);
}

.screen-group-title {
	font-weight: 500;
	font-size: 15px;
	color: var(--onBGPrimary);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	padding-bottom: 20px;
	margin-bottom: 24px;
	opacity: 0.6;
	letter-spacing: 0.3em;
}

.screen video {
	/*width: 300px;*/
	border-radius: 20px;
  border: 1px solid #333;
  width: var(--screenWidthDesktop);
}

/*.screen-large {
	width: 120%;
}*/

/*.screen.designsystem {
	width: 200%;
}*/

.screen-title {
	font-weight: 500;
	font-size: 18px;
	color: var(--onBGSecondary);
	text-align: center;
	margin-bottom: 14px;
}

.screen-list li {
	margin-left: 0px;
	font-size: 16px;
	color: var(--onBGSecondary);
}

.screen-group p {
	margin-left: 0px;
	font-size: 16px;
	color: var(--onBGSecondary);
	text-align: center;
}

.project-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	padding: 50px;
	width: 100%;
	/*margin: 0 auto;*/
	box-sizing: border-box;
	/*flex: 0 0 calc(50% - 25px);*/
}

.project-cards.project-page {
	margin: auto;
	/*width: 60%;*/
}

.project-card {
	background: #181818;
	/*width: 100%;*/
	border-radius: 30px;
	/*border-radius: 10px;*/
	/*border: 1px solid rgba(255, 255, 255, 0.20);*/
	/*outline: 1px solid rgba(255, 255, 255, 0.20);*/
	outline: 1px solid rgba(255, 255, 255, 0.10);
	transition: 0.6s ease-in-out;
	/*min-width: 200px;*/
	overflow: hidden;
	text-decoration: none;
	box-sizing: border-box;
	/*margin: 20px;*/
	flex: 1 1 calc(50% - 25px);
	/*height: 100px;*/
	/*height: 520px;*/
	padding-bottom: 40px;
}

.project-card.today {
	/*height: 600px;*/
	/*padding-bottom: 30px;*/
}

.project-card.taller {
	/*padding-bottom: 110px;*/
	/*height: 560px;*/
	/*padding-bottom: 60px;*/
}

.project-card.max-width {
	max-width: 600px;
	margin: auto;
}

.animate-up-card-1 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 0.8s forwards;
}

@keyframes animate-up-card-1 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-up-card-2 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 1.0s forwards;
}

@keyframes animate-up-card-2 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-up-card-3 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 1.2s forwards;
}

@keyframes animate-up-card-3 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-up-card-4 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 1.4s forwards;
}

@keyframes animate-up-card-4 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-up-card-5 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 1.6s forwards;
}

@keyframes animate-up-card-5 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-up-card-6 {
	transform: translateY(100px);
	opacity: 0;
	animation: animate-up-card-1 2s ease-out 1.8s forwards;
}

@keyframes animate-up-card-6 {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/*.project-card:hover {
	
	transition: 0.6s ease-in-out;
	/*transform: translateY(-10px) scale(1.05);
	box-shadow: 0 50px 0px -40px rgba(200, 200, 200, 0.3), 
				/*0 50px 50px -40px rgba(255, 255, 255, 0.4)*!/
				0 90px 0px -70px rgba(150, 150, 150, 0.3);
	background: #141414;*!/
	/*border: 3px solid var(--accentNBCNews);*!/
	/*transform:  scale(1.01);*!/
	/*outline: 2px solid #999;
	outline: 1px solid rgba(30,58,148,0.5);*!/
	outline: 2px solid rgba(30,58,148,1.0);
	background: #141414;
	background: rgba(30,58,148,0.3);
	/*box-shadow: 0 0 30px rgba(48,97,255,0.8);*!/
	/*box-shadow: 0 0 30px rgba(30,58,148,1.0);*!/
}*/

.project-card.cnbc:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentCNBC);
	background: var(--accentCNBCSecondary);
}

.project-card.nbcnews:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentNBCNews);
	background: var(--accentNBCNewsSecondary);
}

.project-card.today:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentTODAY);
	background: var(--accentTODAYSecondary);
}

.project-card.golden:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentGolden);
	background: var(--accentGoldenSecondary);
}

.project-card.wayup:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentWayUp);
	background: var(--accentWayUpSecondary);
}

.project-card.freshlist:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentFreshList);
	background: var(--accentFreshListSecondary);
}

.project-card.sxm:hover {
	transition: 0.6s ease-in-out;
	outline: 1px solid var(--accentSXM);
	background: var(--accentSXMSecondary);
}

.project-card .hero {
	height: 340px;
	background: grey;
	/*container-type: inline-size;*/
	/*contain: layout;*/
}

.project-card .hero.cnbc {
	/*background: red;*/
	/*height: 340px;*/
	/*overflow: hidden;*/
	background: url(/resources/images/cnbc/bg.png);
	background-size: 100% 100%;
	/*container-type: inline-size;*/
	/*height: 509px;*/
}

/*.project-card .hero.cnbc.taller {
	background: red;
	height: 200px;
}*/

.project-card .hero.nbcnews {
	background: url(/resources/images/nbcnews/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .hero.today {
	background: url(/resources/images/today/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .hero.golden {
	background: url(/resources/images/golden/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .hero.wayup {
	background: url(/resources/images/wayup/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .hero.freshlist {
	background: url(/resources/images/freshlist/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .hero.sxm {
	background: url(/resources/images/sxm/bg.png);
	/*background: lime;*/
	background-size: 100% 100%;
}

.project-card .info {
	display: flex;
	/*flex-direction: column;*/
	padding: 0px 30px 30px;
	margin-top: -20px;
	margin-bottom: -40px;
	/*background: red;*/
	/*height: 100%;*/
	/*height: 160px;*/
	
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex: 1 0 0;
	align-self: stretch;
	
	/*gap: 50px;*/
	gap: 20px;
}



.project-card .cat-title {
	/*background: yellow;*/
}

.select-work-title {
	color: var(--onBGSecondary);
	font-size: 14px;
	text-align: center;
	margin: auto;
	margin-top: 50px;
	border-top: 1px solid #333;
	padding-top: 50px;
	/*margin-left: 50px;*/
	/*margin-right: 50px;*/
	box-sizing: border-box;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	width: 60%;
	/*background: red;*/
}

.next-project-section {
	width: 100%;
	margin: auto;
	max-width: 1100px;
	box-sizing: border-box;
	
}

.project-card.next {
	/*width: 10px;*/
	margin-left: 100px;
	margin-right: 100px;
	/*background: red;*/
}

.next-project-title {
	color: var(--onBGSecondary);
	font-size: 20px;
	text-align: center;
	margin: auto;
	margin-top: 200px;
	border-top: 1px solid #333;
	padding-top: 50px;
	margin-left: 50px;
	margin-right: 50px;
	box-sizing: border-box;
	/*background: red;*/
	/*width: 50%;*/
	
	
	text-transform: uppercase;
	/*font-size: 10px;*/
	/*font-weight: 600;*/
	/*margin-bottom: 10px;*/
	
	/*margin-bottom: 10px;*/
	/*text-transform: uppercase;*/
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.8);*/
	/*padding-bottom: 20px;*/
	/*margin-bottom: 20px;*/
	/*opacity: 0.6;*/
	letter-spacing: 0.3em;
}

.heart {
	height: 0.7em;
}

footer {
	margin: auto;
	margin-bottom: 80px;
	border-top: 1px solid #333;
	width: 20%;
	width: 60%;
	/*background: red;*/
}

footer.about {
	margin-top: 50px;
}

.footer-header {
	color: var(--onBGSecondary);
	font-size: 16px;
	text-align: center;
	margin: auto;
	/*margin-top: 200px;*/
	
	padding-top: 50px;
	margin-left: 50px;
	margin-right: 50px;
	box-sizing: border-box;
	
	
	/*text-transform: uppercase;*/
	letter-spacing: 1%;
}

.footer-subheader {
	color: var(--onBGTertiary);
	text-align: center;
	letter-spacing: 5%;
	margin: auto;
	margin-top: 40px;
	font-size: 14px;
}

.resume-container {
	display: flex;
	align-content: center;
	justify-content: center;
	text-align: center;
	/*background: red;*/
	width: 80%;
	margin: auto;
}

.resume-container {
	display: flex;
	align-content: center;
	justify-content: center;
	text-align: center;
	/*background: red;*/
	width: 80%;
	margin: auto;
}

img.resume {
	width: 100%;
	border-radius: 30px;
	box-shadow: 0px 30px 120px 0px rgba(255,255,255,0.3);
	background-color: white;
	margin: auto;
}

.resume-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin: 30px auto;
	text-align: center;
	justify-content: center;
	/*align-items: center;*/
	
	/*TESTING*/
	background-color: var(--viewDebugBG);
	box-shadow: var(--viewDebug);
}

.resume-button {
	width: 100px;
	height: 100px;
	width: 200px;
	height: 80px;
	/*width: 100px;
	height: 80px;*/
	border-radius: 36px;
	border-radius: 100px;
	outline: 1px solid #333;
	
}



.resume-button.fullscreen {
	background: url(/assets-new/icn-fullscreen-long.svg) no-repeat center black;
	background-size: 100%;
	transition: 0.5s ease-in-out 0s;
}

.resume-button.download {
	background: url(/assets-new/icn-download-long.svg) no-repeat center black;
	background-size: 100%;
	transition: 0.5 ease-in-out 0s;
}

.resume-button:hover {
	transform: scale(1.05);
	background-color: var(--accentNBCNews);
	transition: 0.5s ease-in-out 0s;
}

.read-more {
	padding: 12px 20px;
	/*padding-top: 12px;*/
	margin-top: 16px;
	margin-top: 30px;
	margin-bottom: -6px;
	margin-bottom: 0px;
	/*margin-left: 20px;*/
	color: white;
	display: inline-block;
	border-radius: 40px;
	/*border: 1px solid #333;*/
	transition: 0.8s ease-in-out 0s;
	background: rgba(49, 49, 49, 0.75);
	opacity: 1.0;
	/*font-size: 16px;*/
	margin-top: auto;
	width: fit-content;
}

.more-gap {
	margin-top: 44px;
}

.project-card:hover .read-more {
	background: var(--accentNBCNews);
	transition: 0.6s ease-in-out 0s;
}

.project-card.cnbc:hover .read-more {
	background: var(--accentCNBC);
	transition: 0.6s ease-in-out 0s;
}

.project-card.nbcnews:hover .read-more {
	background: var(--accentNBCNews);
	transition: 0.6s ease-in-out 0s;
}

.project-card.today:hover .read-more {
	background: var(--accentTODAY);
	transition: 0.6s ease-in-out 0s;
}

.project-card.golden:hover .read-more {
	background: var(--accentGolden);
	transition: 0.6s ease-in-out 0s;
}

.project-card.wayup:hover .read-more {
	background: var(--accentWayUp);
	transition: 0.6s ease-in-out 0s;
	/*color: black;*/
}

.project-card.freshlist:hover .read-more {
	background: var(--accentFreshList);
	transition: 0.6s ease-in-out 0s;
}

.project-card.sxm:hover .read-more {
	background: var(--accentSXM);
	transition: 0.6s ease-in-out 0s;
}



.read-more-chevron {
	background: url(/resources/images/global/chevron-right.svg) no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-bottom: -7px;
}


.side-by-side {
	/*background: red;*/
	margin-top: 40px;
	display: flex;
	flex-wrap: no-wrap;
	align-items: center;
}

.side-by-side.wrap {
	flex-wrap: wrap;
}

.side-by-side .container {
	/*text-align: center;*/
	/*background: blue;*/
	width: 100%;
}

.side-by-side.reverse {
	/*flex-wrap: wrap-reverse;*/
	flex-direction: row-reverse;
}

.side-by-side .mock {
	margin: 0px 0px;
	margin: auto;
}

.side-by-side .text {
	/*background: lime;*/
	margin-top: -30px;
	padding-right: 70px;
}

.side-by-side.reverse .text {
	padding-left: 70px;
	padding-right: 0px;
}

.side-by-side .size-medium-car-hero {
	margin: 0px 0px;
	margin: auto;
	margin-bottom: 20px;
	width: 90%;
	height: auto;
}

#reflection a {
	color: var(--accentSXM);
	display: block;
	/*margin-top: 0px;*/
}


@media (max-width: 1300px) {
	.spacer {
		/*background: red;*/
		width: 5vw;
	}
}

@media (max-width: 1200px) {

	/*body {
		background: red;
	}*/

	.project-card .hero {	
		height: 350px;
		transform: scale();
	}
	
	.spacer {
		background: 2vw;
	}
}

p a {
	color: var(--onBGPrimary);
	text-decoration: none;
	font-weight: 500;
	opacity: 0.9;
}

p a:hover {
	opacity: 1.0;
}




/* Sticky Wrapper */
.sticky-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 0 auto;
  z-index: 999;
  margin-top: 50px;
  border-radius: 30px;
  width: fit-content;
  height: fit-content;
  background: #000;
  border: 1px solid #333;
 /* border: #555;
  background: #000;*/
  
}

/* Sticky Nav Bar */
.section-nav {
  display: flex;
  overflow-x: auto;
  /*background: var(--bg-color);*/
  gap: 10px;
  padding: 20px 20px;
  white-space: nowrap;
  position: relative;
  scroll-behavior: smooth;
  transition: box-shadow 0.3s ease;
  border-radius: 26px;
  width: fit-content;
  margin: auto;
  /*background: #000;
  border: 1px solid #333;*/
  /*height: 48px;*/
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  color: var(--inactive-color);
  text-decoration: none;
  font-size: 20px;
  flex-shrink: 0;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.section-nav a.active {
  color: var(--highlight-color);
}

/* Shadow Indicators */
.section-nav-scroll-shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 1;
}

.section-nav-scroll-shadow.left {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.section-nav-scroll-shadow.right {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

/* Sticky trigger class */
/*.is-sticky {
  position: sticky;
  top: 500px;
  z-index: 999999999999999999;
}*/
.sticky-wrapper {
  position: relative; /* default */
  z-index: 10;
}

.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*background: rgba(25, 25, 25, 0.82);  Or your desired bg */
  z-index: 99999999;
  margin-top: 70px;
  box-shadow: inset 0 1px 0px rgba(255, 255, 255, 0.2);
  width: fit-content;
  height: fit-content;
  background: rgba(25, 25, 25, .82);
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 1s ease-in-out 0s;
}



.breaker {
	width: 100%;
	height: 300px;
	background: var(--accentNBCNews);
}


.top-pad {
	margin-top: 40px;
}

img.center {
	margin: auto;
	text-align: center;
	display: block;
}

video.center {
	margin: auto;
	text-align: center;
	display: block;
}
 	


@media (max-width: 1200px) {
	.project-card .info {
		height: 200px;
		/*height: 100%;*/
	}
	/*.mock.phone-old {
		background: clear;
		border-radius: 20px;
		width: 300px;
		height: 533px;
		aspect-ratio: 300/650;
		box-shadow: 0px 4px 80px rgba(0,0,0,0.5);
		border: 0.5px solid rgba(255, 255, 255,0.3);
	}*/
}





@media (max-width: 1000px) {
	
	body {
		/*background: cyan;*/
	}
	
	.project-hero-images {
		transform: scale(0.95);
		margin: -20px auto;
		width: 100%;
	}
	
	.project-hero-images.car {
		margin-top: -140px;
	}
	
	.project-hero-images.phone-old {
		/*background: red;*/
		/*height: 550px;*/
		
	}
	
	.no-overlap {
		margin: auto 0px;
		gap: 20px;
		margin-left: 4vw;
	}
	.top-background {
		height: 1100px;
	}
	.top-background.taller {
		height: 1250px;
	}
	.top-background.shorter {
		height: 1000px;
	}
	.top-background.shorter-car {
		height: 900px;
	}
	.spacer {
		width: 0px;
	}
	.project-specs {
		padding-left: 20px;
		padding-right: 20px;
		
	}
	footer {
		width: 80%;
	}
	.footer-header {
		width: 100%;
		margin: auto;
	}
	
	
	
	
}
@media (max-width: 950px) {
	body {
		/*background: purple;*/
	}
	
	.project-hero-images {
		transform: scale(0.90);
		margin: -40px auto;
		width: 100%;
	}
	.project-hero-images.car {
		margin-top: -140px;
	}
	.top-background {
		height: 1100px;
	}
	.top-background.taller {
		height: 1180px;
	}
	.top-background.shorter {
		height: 950px;
	}
	.top-background.shorter-car {
		height: 850px;
	}
	.next-project-section {
		width: 100%;
		margin: auto;
	}
	.project-specs {
		padding-left: 20px;
		padding-right: 20px;
		/*justify-content: left;*/
	}
	.no-overlap {
		margin: -40px 0px;
		gap: 20px;
		margin-left: 4vw;
	}
	
}
@media (max-width: 900px) {
	/*body {
		background: red;
	}*/
	
	/*body {
		/*background: pink;*!/
	}*/
	
	.project-hero-images {
		transform: scale(0.85);
		margin: -60px auto;
		width: 100%;
	}
	.project-hero-images.car {
		margin-top: -150px;
	}
	.no-overlap {
		margin: -60px 0px;
		gap: 20px;
		margin-left: 4vw;
		/*background: red;*/
	}
	.top-background {
		height: 1050px;
	}
	.top-background.taller {
		height: 1100px;
	}
	.top-background.shorter {
		height: 900px;
	}
	.top-background.shorter-car {
		height: 800px;
	}
	.project-cards {
		/*display: grid;*/
		/*grid-auto-flow: column;*/
		/*grid-auto-rows: 400px;*/
		flex-direction: column;
		grid-template-columns: repeat(auto-fill);
		/*width: 60%;*/
	}
	.project-card .hero {	
		height: 340px;
	}
	
	.project-hero-images.home {
		margin-top: -20px;
	}
	
	.project-card {
		width: 100%;
	}
	
	.project-card.next {
	/*width: 10px;*/
		margin-left: 0px;
		margin-right: 0px;
		/*background: red;*/
	}
	
	.project-card.max-width {
		max-width: 1000px;
		margin: auto;
	}
	
	
}
@media (max-width: 850px) {
	
	body {
		/*background: yellow;*/
	}
	
	
	.project-hero-images {
		transform: scale(0.8);
		margin: -80px auto;
		width: 100%;
	}
	.project-hero-images.car {
		margin-top: -160px;
	}
	.no-overlap {
		margin: -80px 0px;
		gap: 20px;
		margin-left: 4vw;
		/*background: red;*/
	}
	.top-background {
		height: 1000px;
	}
	.top-background.taller {
		height: 1050px;
	}
	.top-background.shorter {
		height: 850px;
	}
	.top-background.shorter-car {
		height: 750px;
	}
	h1 {
		font-size: 56px;
	}
	.gradient-left {
		  left: 0;
		  background: none;
		  opacity: 0;
		}

		.gradient-right {
			right: 0;
			background: none;
			opacity: 1;
		}
	
		
	 /*body {
	 	background: red;
	 }*/
	
}
@media (max-width: 800px) {
	
	
	/*body {
		background: lime;
	}
	*/
	.project-hero-images {
		transform: scale(0.75);
		margin: -100px auto;
		gap: 0px;
		width: 100%;
	}
	.project-hero-images.car {
		margin-top: -170px;
	}
	.no-overlap {
		margin: -80px 0px;
		gap: 20px;
		margin-left: 4vw;
		/*background: red;*/
	}
	.top-background {
		height: 950px;
	}
	.top-background.taller {
		height: 980px;
	}
	.top-background.shorter {
		height: 800px;
	}
	.top-background.shorter-car {
		height: 700px;
	}
	h1 {
		font-size: 50px;
	}
	.project-hero-images.car {
		margin-top: -200px;
		transform: scale(0.6);
	}
	/*.project-hero-images {
		/*transform: scale(0.5);*!/
		margin: -120px auto;
		width: 100%;
	}
	
	.top-background {
		height: 900px;
	}*/
	
	.project-cards {
		width: 100%;
	}
	
	
	
	
}


@media (max-width: 748px) {
	/*body {
		background: red;
	}*/
	
	.project-card.taller {
		/*padding-bottom: 110px;*/
		/*height: 560px;*/
		padding-bottom: 60px;
		
	}
	
	/*.nav-links {
        display: none;
      }
	  .nav-links.home {
	  	display: flex;
	  }
      .nav-menu-button {
        display: block;
      }
      .nav-menu-mobile.show {
        display: flex;
      }*/
	  
	  
	  .project-specs {
	  	margin-left: 0px;
	  	margin-right: 0px;
	  	width: 100%;
	  	/*background: red;*/
	  	overflow-x: auto;
	  	 scrollbar-width: none; /* Firefox */
	  	 -ms-overflow-style: none; /* IE 10+ */
	  	 flex-shrink: 0; 
	  	 justify-content: left;
	  	 padding: 0px 20px;
	  	 box-sizing: border-box;
	  }
	 .project-specs::-webkit-scrollbar {
	 	display: none; /* Chrome, Safari */
	 }
	
	.scroll-container {
		/*width: 200px;*/
		scrollbar-width: none; /* Firefox */
	  	 -ms-overflow-style: none; /* IE 10+ */
	}
	
	.scroll-container::-webkit-scrollbar {
	 	display: none; /* Chrome, Safari */
	 }
	 
	 .project-hero-images {
		transform: scale(0.7);
		margin: -120px auto;
		width: 100%;
	}
	.top-background {
		height: 1100px;
	}
	body {
		/*background: red;*/
	}
	
	 
	
	 .scroll-row img {
	 	width: var(--screenWidthMobile);
	 }
	 
	 .screen-group {
	 	width: calc(var(--screenWidthMobile));
	 }
	 
	 .screen video {
		/*width: 300px;*/
		border-radius: 20px;
	  border: 1px solid #333;
	  width: var(--screenWidthMobile);
	}
	 
	.double {
		/*width: 630px;*/
		width: calc(var(--screenWidthMobile) * 2 + 30px);
	}

	.triple {
		/*width: 960px;*/
		width: calc(var(--screenWidthMobile) * 3 + 70px);
	}
	
	.quad {
		/*width: 960px;*/
		width: calc(var(--screenWidthMobile) * 4 + 70px);
	}
	
	.five {
		/*width: 960px;*/
		width: calc(var(--screenWidthMobile) * 5 + 70px);
	}
	
	.six {
		/*width: 960px;*/
		width: calc(var(--screenWidthMobile) * 6 + 70px);
	}
	
	.seven {
		/*width: 960px;*/
		width: calc(var(--screenWidthMobile) * 7 + 70px);
	}
	
	.project-main-info {
		padding: 0px 20px;
	}
	
	.project-cards {
		/*display: grid;*/
		/*grid-auto-flow: column;*/
		/*grid-auto-rows: 400px;*/
		flex-direction: column;
		/*grid-template-columns: repeat(auto-fill);*/
	}
	
	.project-card {
		width: 100%;
	}
	
	.project-card.max-width {
		max-width: 1000px;
		margin: auto;
	}
	
	.project-hero-images {
		transform: scale(0.95);
		margin: -20px auto;
		width: 100%;
	}
	
	.project-hero-images {
		transform: scale(0.7);
		margin: -110px auto;
		margin-bottom: -100px;
		width: 100%;
		/*height: 1000px;*/
	}
	.no-overlap {
		margin: -100px 0px;
		gap: 20px;
		margin-left: 4vw;
		/*background: red;*/
	}
	.top-background {
		height: 950px;
	}
	
	/*.nav-wrapper {
		padding-bottom: 13px;
		border-bottom: 1px solid #444;
	}*/
	/*.nav-mobile-menu {
		border-bottom: 10px solid red;
	}*/
	
	.side-by-side .text {
		/*background: lime;*/
		margin-top: 0px;
		padding: 0px;
		padding-right: 10px;
	}
	.side-by-side.reverse .text {
		padding: 0px;
		padding-left: 10px;
	}
	  
}

@media (max-width: 700px) {
	body {
		/*background: lime;*/
	}
	.side-by-side {
		/*background: red;
		margin-top: 40px;
		display: flex;*/
		flex-wrap: wrap;
	}
	.side-by-side .text {
		/*background: lime;*/
		margin-top: 0px;
		padding: 0px;
	}
	.side-by-side.reverse .text {
		padding: 0px;
	}
	
}


@media (max-width: 600px) {
	
	/*body {
		background: gray;
	}*/
	
	.nav-links {
        display: none;
      }
	  .nav-links.home {
	  	display: flex;
	  }
      .nav-menu-button {
        display: block;
      }
      .nav-menu-mobile.show {
        display: flex;
      }
}


@media (max-width: 500px) {
	
	
	
	/*.project-hero-images {
		transform: scale(0.7);
		margin: -120px auto;
	}*/
	/*.size-large {
		margin: auto -40px;
	}*/
	/*.size-small {
		margin: auto -60px;
	}*/
	/*.top-background {
		height: 130vw;
	}*/
	
	/*body {
		background: lime;
	}*/
	
	h1 {
		font-size: 40px;
	}
	
	.project-app-platform {
		font-size: 28px;
	}
	
	.project-cards {
		/*background: red;*/
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.no-overlap {
		margin-left: 120px;
	}
	
	.project-card .hero {
		/*height: 360px;*/
		/*background-size: 150% auto;*/
		/*transform: scale(1.1);*/
		/*width: 120%;*/
	}
	
	/*.project-hero-images {
		transform: scale(0.75);
		margin: -100px auto;
		gap: 0px;
		width: 100%;
		
	}*/
	
	/*.project-card .hero.cnbc {
		background-size: 104%;
	}*/
	
	 
}









