@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700|Roboto+Slab:400,100,300,700);

* {
  box-sizing: border-box;
}




body {
  margin: 0;
  font-family: "Roboto Slab", serif;
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= HERO ================= */
.hero {
  min-height: 1000px;
  background-image: url("https://noycework.com/images/NoyceWorkBack.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* stationary background */
}





.hero-overlay {
  min-height: 100vh;
  position: relative;
	
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 140px 0px 80px 0px;
	
}


.hero-title-row {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: stretch;
margin-left: 0px;
}

.title-left,
.title-right {
  font-family: "Roboto Slab", serif;
  font-size: 64px;
  font-weight: 200;
  padding: 30px 40px;
}

.title-left {
  background: #fff;
}

.title-right {
  background: #000;
  color: #fff;
}

.hero-body {
  width: 800px;
  margin-left: auto;   /* pushes to right */
  margin-right: 0;
  background: #fff;
  padding: 40px;
}

.intro-large {
  font-size: 30px;
  line-height: 40px;
  font-weight: 100;
  margin: 0;
}

.cta {
display: block;
  text-align: right;
  margin-top: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #000;
letter-spacing: 1px;
}




.cta:hover {
	opacity: 0.5;

}

/* ================= SCROLL INDICATOR ================= */
.scroll-indicator-wrapper {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  pointer-events: none;

}

.scroll-indicator {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-align: center;
transition: opacity 0.4s ease, transform 0.4s ease;
	text-shadow: 0 0 40px black;
	z-index: 8;

}


.scroll-indicator .arrow {
  margin: 5px auto 0;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid white;
  animation: nudge 1.8s ease-in-out infinite;
	tex-shadow: 0 0 30px black;
	
}

@keyframes nudge {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(6px); opacity: 0.85; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ================= CLIENTS ================= */
.clients {
  padding: 80px 60px 0px 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}



.clients h2 {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow{
	font-family: "Montserrat", sans-serif !important;
  font-size:16px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  position: relative;
color: black;
	
}


.clients-overview {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 20px;
font-weight: 300;
  line-height: 30px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0px auto 30px auto;
}

.logo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ================= INDUSTRIES ================= */
.industries {
  padding: 0px 60px 150px 60px;
}

h2{
	font: 100 40px "Roboto Slab", serif;
	letter-spacing: -0.5px;
	
	
}


h3{
	font: 300 14px "Roboto Slab", serif !important;
	float: left;
	padding-bottom: 2px;
	border-bottom: black 1px solid;
	display: block;
	color: white;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	background: black;
	padding: 20px 25px;
	margin-top: -80px;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-bottom: 0px;
	font-weight: 900;
}


hr {
	width: 100%;
	padding-top: 0px;
	border-top: none;
	border-bottom: 1px solid black;
	border-left: none;
	border-right: none;
	display: inline-block;
	clear: none;
	margin-bottom: 40px;
}
	


.industries h4 {
  margin-bottom: 0px;
}

.industries h4 span {
  font-weight: 700;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease;
}

.industry-tile:hover {
  transform: scale(1.03);
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1),
    transparent
  );
}

.industry-tile h4 {
  position: absolute;
  top: 0px;
  left: 20px;
  right: 20px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 25px;
  z-index: 2;
}

/* ================= FOOTER ================= */

.tagline {
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	color: black;
	text-align: center;
	float: left;
	width: 100%;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	text-transform: uppercase;
	padding: 10px 0px;
	margin-top: 30px;
	font-weight: 400;
}



.section {
	max-width: 980px;
	position: relative;
	padding: 50px
}
.top {
	top: 0;
	width: 100%;
	height: 18px;
	z-index: 9999;
	background: white;
	position: fixed;
}
.bottom {
	bottom: 0;
	width: 100%;
	height: 18px;
	z-index: 9998;
	background: white;
	position: fixed;
}
.left {
	left: 0;
	width: 18px;
	height: 100%;
	z-index: 9997;
	background: white;
	position: fixed;
}
.right {
	right: 0;
	width: 18px;
	height: 100%;
	z-index: 9996;
	background: white;
	position: fixed;
}
.footer {
	position: fixed;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	background: black;
	z-index: 9999;
	padding: 10px 10px 10px 20px;
	width: 580px;
	
}
.contact {
	font-size: 12px;
	text-align: left;
	color: white;
	font-family: "Roboto Slab", serif;
	display: block;
	float: left;
	clear: right;
	font-weight: 400;
	padding: 7px 10px 5px 0px;
}
.social-media {
	width: 25px;
	height: 25px;
	margin: 5px;
	float: left;
	clear: right;
	display: block;
}
.social-media:hover {
	opacity: 0.6;
}

.aside{
	float: left;
	clear: right;
	width: 20%;
	display: block;
	padding-right: 5%;
}

.content{
	float: left;
	display: block;
	width: 65%;
	border-left:1px solid black; padding-left:50px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {


.hero {
    min-height: 1000px !important;
	background-image: url("https://noycework.com/images/NoyceWorkBackMobile.jpg") !important;
 background-size: contain !important;
  background-position: center;
  background-attachment: fixed !important;
	background-repeat: none !important;
  }
	
	.hero-content{
		padding-top: 250px;
	}
	
	h2{
		
		font-size: 35px;
		line-height: 35px;
	}
	
	.title-left,
.title-right {
	
  font-size: 45px;
  font-weight: 200;
  padding: 15px 15px;
	display: block  !important;
  width: auto;
	
	
}
	
	.title-left{
	justify-self: start;
    text-align: left;
    padding-left: 15px;
		display: block !important;
		
	}
	
	  .title-right {
    justify-self: end;
    text-align: right;
    padding-right: 15px;
		  display: block  !important;

  }
	
	
.hero-title-row {
  display: flex;  
  flex-wrap: wrap;
}
	
	
	.cta {
display: block;
  text-align: left;
  margin-top: 20px;
  font-size: 14px;
  color: black;
}
	

	
	 .hero-body {
    width: 100%;
    margin: 100px 0 0;
	background-color: white;
	padding: 30px;
  }
	
	.scroll-indicator-wrapper {
  display: none;

}
	
		.scroll-indicator {
  display: none;

}

	.clients{
		padding: 80px 40px;
	}
	
	.clients-overview {
  margin-bottom: 0px;
}
	
	
	
	
  .hero-content {
    padding: 80px 20px 140px;
	  
  }

  .hero h1 {
    font-size: 38px;
  }
	
	
	  .clients-grid {
    grid-template-columns: 1fr;
  }
	
	.industries{
		padding: 0px 40px 80px 40px;
	}
	

  .intro-large {
    font-size: 20px;
	line-height: 30px;
	  color: black;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
	  margin-bottom: 0px;
	  gap: 50px;
	 
  }
	

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-tile {
    aspect-ratio: 1 / 1;
  }

  .industry-tile h3 {
    font-size: 20px;
  }
	

	
	.footer {
	left: 0px;
	position: relative;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	bottom: 0px;
	z-index: 9999;
	padding: 0px;
	float: none;
	width: 100%;
	margin: 0px;
	height: 180px;
}
.contact {
	text-align: center;
	display: block;
	clear: both;
	float: none;
	font-weight: 400;
	width: 100% !important;
	padding: 20px 0px;
}
.social-media {
	width: 40px;
	height: 40px;
	margin: 5px;
	float: left;
	clear: none;
	display: block;
}
.social-block {
	left: 20px;
	display: block;
	width: 300px;
	margin: 10px auto;
}
.social-media:hover {
	opacity: 0.6;
}
}