/* North Sydney Concrete - site UI fixes */

/* Services dropdown: template was 220px - too narrow for longer labels */
@media only screen and (min-width: 992px) {
	.navbar-nav > li.has-dropdown > ul.dropdown-menu {
		width: auto;
		min-width: 280px;
		max-width: 360px;
		padding: 16px 24px;
		white-space: nowrap;
		margin-top: 4px;
	}

	.navbar-nav > li.has-dropdown > ul.dropdown-menu > li > a {
		white-space: nowrap;
	}
}

/* North Sydney Concrete - hero slider fixes
   Box + arrows are separate blocks in one section.
   Box is flex-centered in a safe zone (below fixed nav, above arrows). */

.hero-2 {
	position: relative;
	overflow: hidden;
}

.hero-2 .hero-slider {
	position: relative;
}

.hero-2 .hero-slider .owl-controls {
	display: none !important;
}

.hero-2 .hero-slider .item {
	height: 650px !important;
	position: relative;
	box-sizing: border-box;
}

.hero-2 .hero-slider .item .item-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-attachment: scroll !important;
}

/* Keep overlay light so hero photos stay clear */
.hero-2 .hero-slider .item .item-bg.bg-overlay:before,
.hero-2 .hero-slider .item .item-bg:before {
	background-color: rgba(34, 34, 34, 0.08) !important;
	z-index: 1;
}

/* Keep My Story portrait sharp and correctly cropped */
.shortcode-5 .feature img {
	height: 415px;
	width: 100%;
	object-fit: cover;
	object-position: center top;
	image-rendering: auto;
}

/* Projects grid: even image heights + visible All Projects CTA */
#projects .projects-filter {
	position: relative;
	z-index: 2;
	margin-top: 30px;
	margin-bottom: 30px;
}

#projects .project-img {
	height: 280px;
	overflow: hidden;
	background: #1a1a1a;
}

#projects .project-img > img {
	width: 100%;
	height: 100% !important;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	-webkit-transform: none;
	transform: none;
}

#projects .project-img:hover > img {
	-webkit-transform: none;
	transform: none;
}

#projects .nsc-project-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	background: #1a1a1a;
}

.hero-2 .hero-layout {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	/* Top clears fixed header; bottom reserves arrow block */
	padding: 150px 15px 110px;
	box-sizing: border-box;
}

.hero-2 .hero-slide {
	position: relative !important;
	left: auto !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	margin: 0 auto !important;
	width: 370px;
	max-width: 100%;
	height: auto !important;
	min-height: 0;
	max-height: none;
	padding: 28px 28px 24px;
	overflow: visible;
	box-sizing: border-box;
	background-color: #fff;
	flex-shrink: 0;
}

.hero-2 .hero-slide .slide-title h2 {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 26px;
}

.hero-2 .hero-slide .slide-action {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	clear: both;
	justify-content: flex-start;
}

.hero-2 .hero-slide .slide-action a,
.hero-2 .hero-slide .slide-action .pull-right {
	float: none !important;
	width: auto;
	min-width: 140px;
	margin: 0;
	text-align: center;
}

/* Arrow block - sibling of slider, always under the box */
.hero-2 .hero-arrows {
	position: absolute;
	left: 50%;
	bottom: 44px;
	transform: translateX(-50%);
	z-index: 6;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hero-2 .hero-arrow {
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: #2f2f2f;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

.hero-2 .hero-arrow:hover,
.hero-2 .hero-arrow:focus {
	background-color: #ffc527;
	outline: none;
}

.hero-2 .hero-arrow i {
	font-size: 20px;
	line-height: 1;
	color: #fff;
}

@media only screen and (max-width: 991px) {
	.hero-2 .hero-slider .item {
		height: 560px !important;
	}

	.hero-2 .hero-layout {
		padding: 120px 15px 90px;
	}

	.hero-2 .hero-arrows {
		bottom: 28px;
	}
}

@media only screen and (max-width: 767px) {
	.hero-2 .hero-slide {
		width: 100%;
		max-width: 370px;
	}

	.hero-2 .hero-slide .slide-action a {
		min-width: 0;
		flex: 1 1 calc(50% - 6px);
	}
}

/* Services - illustration icons instead of tall photos */
#service-1 .nsc-services-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

#service-1 .nsc-service-block {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-bottom: 40px;
}

#service-1 .nsc-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	margin: 0 auto 28px;
	border-radius: 50%;
	background: #2f2f2f;
	-webkit-transition: background-color 0.25s ease, transform 0.25s ease;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

#service-1 .nsc-service-icon svg {
	width: 72px;
	height: 72px;
	display: block;
}

#service-1 .nsc-service-block:hover .nsc-service-icon {
	background-color: #ffc527;
	transform: translateY(-4px);
}

#service-1 .nsc-service-block .service-content {
	float: none;
	width: 100%;
	text-align: center;
}

#service-1 .nsc-service-block .service-content > img {
	display: none;
}

#service-1 .nsc-service-block .service-desc {
	padding: 0 10px;
}

#service-1 .nsc-service-icon .nsc-i-body {
	fill: #ffffff;
	stroke: #ffffff;
}

#service-1 .nsc-service-icon .nsc-i-body[fill="none"] {
	fill: none;
}

#service-1 .nsc-service-icon .nsc-i-cut {
	stroke: #2f2f2f;
}

#service-1 .nsc-service-icon .nsc-i-accent {
	fill: #ffc527;
	stroke: none;
}

#service-1 .nsc-service-icon .nsc-i-on-accent {
	fill: none;
	stroke: #2f2f2f;
}

#service-1 .nsc-service-block:hover .nsc-service-icon .nsc-i-body {
	fill: #2f2f2f;
	stroke: #2f2f2f;
}

#service-1 .nsc-service-block:hover .nsc-service-icon .nsc-i-body[fill="none"] {
	fill: none;
}

#service-1 .nsc-service-block:hover .nsc-service-icon .nsc-i-cut {
	stroke: #ffffff;
}

#service-1 .nsc-service-block:hover .nsc-service-icon .nsc-i-accent {
	fill: #2f2f2f;
}

#service-1 .nsc-service-block:hover .nsc-service-icon .nsc-i-on-accent {
	stroke: #ffc527;
}

@media only screen and (max-width: 767px) {
	#service-1 .nsc-service-icon {
		width: 110px;
		height: 110px;
	}

	#service-1 .nsc-service-icon svg {
		width: 58px;
		height: 58px;
	}
}

/* Testimonials - stop review text overlapping names */
.testimonial-1 .testimonial-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-bottom: 8px;
}

.testimonial-1 .testimonial-content {
	height: auto !important;
	min-height: 220px;
	overflow: visible;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding-bottom: 28px;
	box-sizing: border-box;
}

.testimonial-1 .testimonial-content p {
	flex: 1 1 auto;
	margin-bottom: 0;
	overflow: visible;
}

.testimonial-1 .testimonial-divider,
.testimonial-1 .testimonial-meta {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.testimonial-1 .testimonial-meta {
	margin-top: 4px;
	padding-top: 12px;
}

/* Initials badge when no real photo */
.testimonial-1 .testimonial-img,
.testimonial-3 .testimonial-img {
	position: relative;
	overflow: hidden;
	background: #2f2f2f;
}

.testimonial-3 .testimonial-img {
	width: 50px;
	height: 50px;
}

.testimonial-1 .testimonial-img img,
.testimonial-3 .testimonial-img img {
	display: none;
}

.testimonial-1 .testimonial-img[data-initials]::after,
.testimonial-3 .testimonial-img[data-initials]::after {
	content: attr(data-initials);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffc527;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
}

/* Footer / contact bar - icon | line | label, details below without wrapping under icon */
#footer .widgets-contact {
	display: block;
	text-align: center;
}

#footer .widgets-contact > .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-left: 0;
	margin-right: 0;
}

#footer .widgets-contact .widget,
.contact .widgets-contact .widget {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	float: none;
	gap: 0;
	padding-left: 24px;
	padding-right: 24px;
	border-left: none !important;
	box-sizing: border-box;
	text-align: left;
}

@media only screen and (min-width: 992px) {
	#footer .widgets-contact .widget {
		width: 33.33333333%;
		max-width: 360px;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0;
		flex: 1 1 0;
	}
}

#footer .widgets-contact .widget-contact-icon,
.contact .widgets-contact .widget-contact-icon {
	float: none !important;
	flex: 0 0 auto;
	margin: 0 16px 0 0;
	position: relative;
	line-height: 1;
}

#footer .widgets-contact .widget-contact-icon:after,
.contact .widgets-contact .widget-contact-icon:after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 22px;
	margin-left: 16px;
	vertical-align: middle;
	background-color: #ffc527;
}

#footer .widgets-contact .widget-contact-info,
.contact .widgets-contact .widget-contact-info {
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
	padding-top: 2px;
	text-align: left;
}

#footer .widgets-contact .widget-contact-info p,
.contact .widgets-contact .widget-contact-info p {
	margin: 0;
	line-height: 1.35;
}

#footer .widgets-contact .widget-contact-info p:first-child {
	margin-bottom: 6px;
	color: #fff;
}

#footer .widgets-contact .widget-contact-info p:last-child,
#footer .widgets-contact .widget-contact-info p.font-heading,
.contact .widgets-contact .widget-contact-info p.font-heading {
	text-transform: none !important;
	word-break: break-word;
	overflow-wrap: anywhere;
}

#footer .widgets-contact .widget-contact-info p:last-child,
#footer .widgets-contact .widget-contact-info p.font-heading {
	color: #828282;
}

#footer .widgets-contact .widget-contact-info a,
.contact .widgets-contact .widget-contact-info a {
	color: inherit;
	text-decoration: none;
}

/* Contact page details: icon, bar, and text on one aligned row */
#contact .nsc-contact-details .widget {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	float: none;
	width: 100%;
	max-width: none;
	margin: 0 0 32px;
	padding: 0;
	gap: 0;
	border: 0;
}

#contact .nsc-contact-details .widget:last-child {
	margin-bottom: 0;
}

#contact .nsc-contact-details .widget-contact-icon {
	float: none !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	line-height: 1;
}

#contact .nsc-contact-details .widget-contact-icon i {
	font-size: 28px;
	line-height: 1;
	color: #ffc527;
}

#contact .nsc-contact-details .widget-contact-icon:after {
	display: none;
}

#contact .nsc-contact-details .widget-contact-info {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 16px;
	padding: 4px 0 4px 16px;
	border-left: 2px solid #ffc527;
	overflow: visible;
}

#contact .nsc-contact-details .widget-contact-info p {
	margin: 0;
	line-height: 1.45;
}

#contact .nsc-contact-details .widget-contact-info p:first-child {
	margin-bottom: 4px;
	color: #9e9e9e;
}

#contact .nsc-contact-details .widget-contact-info p.font-heading {
	color: #5e5e5e;
	text-transform: none !important;
	word-break: normal;
	overflow-wrap: break-word;
}

#contact .nsc-contact-details .widget-contact-info a {
	color: inherit;
	word-break: break-word;
}

@media only screen and (max-width: 991px) {
	#contact .nsc-contact-details .widget {
		width: 100%;
		max-width: none;
		margin: 0 0 28px;
		padding: 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#contact .nsc-contact-details .widget:last-child {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 991px) {
	#footer .widgets-contact .widget,
	.contact .widgets-contact .widget {
		width: 100%;
		max-width: 420px;
		margin: 0 auto 24px;
		border-left: none !important;
		padding-left: 15px;
		padding-right: 15px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#footer .widgets-contact .widget:last-child {
		margin-bottom: 0;
	}
}


/* Brand logo - hat mark + NORTH SYDNEY CONCRETE text */
.navbar .logo.nsc-logo {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	height: 94px;
	max-width: calc(100% - 70px);
	line-height: 1.15;
	vertical-align: middle;
}

.navbar .logo.nsc-logo .nsc-logo-mark {
	height: 38px;
	width: auto;
	display: block;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 10px; /* fallback when flex gap unsupported */
}

.navbar .logo.nsc-logo .nsc-logo-text {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.2;
	color: #2f2f2f;
	text-transform: uppercase;
	max-width: none;
	white-space: nowrap;
}

/* Home / light header */
.full-header .navbar .logo.nsc-logo .nsc-logo-text,
.full-header .navbar.affix .logo.nsc-logo .nsc-logo-text {
	color: #2f2f2f;
}

/* Inner pages - logo over dark page titles */
.transparent-header .navbar .logo.nsc-logo .nsc-logo-text,
.transparent-header .navbar.affix .logo.nsc-logo .nsc-logo-text {
	color: #ffffff;
}

#footer .nsc-footer-brand {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 15px;
	margin-top: 8px;
	line-height: 1.3;
	word-break: break-word;
}

/* ==========================================================================
   Global responsive / cross-browser safety (no overlap, no horizontal scroll)
   ========================================================================== */

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background-color: #1f1f1f;
}

body {
	overflow-x: hidden;
	max-width: 100%;
}

img,
svg,
video,
iframe,
embed,
object {
	max-width: 100%;
	height: auto;
}

table {
	max-width: 100%;
}

/* Keep fixed header from covering content when menu opens */
.navbar-collapse {
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* Footer about: long brand + hat must not collide */
#footer .widgets-links .widget-about {
	overflow: hidden;
}

#footer .widgets-links .widget-about .widget-about-info {
	min-width: 0;
}

#footer .widgets-links .widget-about .widget-about-info p {
	word-break: break-word;
	overflow-wrap: anywhere;
}

/* CTA / feature images */
.shortcode-5 .feature img,
#projects .project-img > img {
	max-width: 100%;
}

/* Why NSC silhouette - keep full hard hat visible (no top clip) */
#shortcode-8 .feature-img {
	overflow: visible;
	height: auto;
	min-height: 0;
	position: relative;
}

#shortcode-8 .feature-img img {
	position: relative;
	bottom: auto !important;
	left: auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

/* Inner page heroes: real img, not stretched CSS background */
.about-story-hero,
.nsc-page-hero {
	position: relative;
	overflow: hidden;
	background: #1a1a1a;
}

.about-story-hero-photo,
.nsc-page-hero-photo {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	z-index: 0;
	-webkit-transform: none;
	transform: none;
	image-rendering: auto;
}

.about-story-hero:after,
.nsc-page-hero:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(20, 18, 16, 0.28), rgba(20, 18, 16, 0.16));
	z-index: 1;
	pointer-events: none;
}

.about-story-hero .container,
.nsc-page-hero .container {
	position: relative;
	z-index: 2;
}

/* Service detail pages: no photos — icons only */
.nsc-page-hero-plain {
	background: #2a2a2a !important;
}

.nsc-page-hero-plain:after {
	background: none;
}

.single-service .service-img,
.single-service .service-img2 {
	display: none !important;
}

.nsc-service-art {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px 40px;
}

.nsc-service-art-item {
	flex: 1 1 180px;
	min-width: 160px;
	padding: 0 10px;
	margin-bottom: 24px;
	text-align: center;
}

.nsc-service-art .nsc-service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #2f2f2f;
}

.nsc-service-art .nsc-service-icon svg {
	width: 64px;
	height: 64px;
	display: block;
}

.nsc-service-art .nsc-i-body {
	fill: #ffffff;
	stroke: #ffffff;
}

.nsc-service-art .nsc-i-body[fill="none"] {
	fill: none;
}

.nsc-service-art .nsc-i-cut {
	stroke: #2f2f2f;
}

.nsc-service-art .nsc-i-accent {
	fill: #ffc527;
	stroke: none;
}

.nsc-service-art .nsc-i-on-accent {
	fill: none;
	stroke: #2f2f2f;
}

.nsc-service-art-item p {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #2f2f2f;
}

/* Sidebar service buttons: whole row is the link */
.widget-categories li {
	padding: 0 !important;
}

.widget-categories li a {
	display: block;
	padding: 20px;
	position: relative;
	z-index: 2;
}

/* Page title text wrapping */
.page-title h2 {
	word-break: break-word;
	overflow-wrap: anywhere;
}

/* Quote popup: centered, with a smooth fade in and out */
.modal.model-quote {
	padding: 16px !important;
}

.modal.model-quote.fade {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.modal.model-quote.fade.in {
	opacity: 1;
}

.modal.model-quote.in,
.modal.model-quote[style*="block"] {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.model-quote .modal-dialog {
	width: 100%;
	max-width: 400px;
	margin: 0 auto !important;
	position: relative;
	opacity: 0;
	-webkit-transform: translateY(16px);
	-ms-transform: translateY(16px);
	transform: translateY(16px);
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.model-quote.in .modal-dialog {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.model-quote .modal-content {
	overflow: hidden;
	width: 100%;
}

.model-quote .modal-header {
	position: relative;
	padding-right: 52px;
}

.model-quote .modal-header .close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 5;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	line-height: 32px;
	font-size: 32px;
	font-weight: 400;
	color: #fff !important;
	opacity: 1;
	text-shadow: none;
	background: transparent;
	border: 0;
}

.model-quote .modal-header .close:hover,
.model-quote .modal-header .close:focus {
	color: #2f2f2f !important;
	opacity: 1;
}

/* Forms */
.form-control {
	max-width: 100%;
	box-sizing: border-box;
}

/* ---- Tablet (keep logo + nav from overlapping): collapse earlier ---- */
@media only screen and (max-width: 991px) {
	.navbar-header {
		float: none;
		width: 100%;
		display: block;
	}

	.navbar-toggle {
		display: block;
		float: right;
		margin-top: 28px;
		margin-right: 0;
		z-index: 5;
		position: relative;
	}

	.navbar-collapse.collapse {
		display: none !important;
		width: 100%;
		float: none !important;
		clear: both;
		margin: 0;
		padding: 0 15px 15px;
		background-color: #2f2f2f;
	}

	.navbar-collapse.collapse.in {
		display: block !important;
	}

	.navbar-collapse.collapsing {
		width: 100%;
		float: none !important;
		clear: both;
	}

	.navbar-nav {
		float: none !important;
		margin: 0;
		width: 100%;
	}

	.navbar-nav > li {
		float: none !important;
		height: auto !important;
		margin-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.navbar-nav > li > a {
		line-height: 44px !important;
		padding: 0 !important;
		color: #fff !important;
	}

	.navbar-nav > li.active {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.navbar-nav > li.has-dropdown > ul.dropdown-menu,
	ul.mega-menu {
		position: relative !important;
		float: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		background-color: transparent !important;
		box-shadow: none !important;
		border: 0 !important;
		padding: 0 0 8px 12px !important;
		margin: 0 !important;
		white-space: normal !important;
	}

	.navbar-nav > li.has-dropdown > ul.dropdown-menu > li > a {
		color: #cfcfcf !important;
		line-height: 36px;
		white-space: normal !important;
	}

	.module.module-search,
	.module.module-cart {
		float: none !important;
		display: block;
		border: 0;
		padding: 10px 0;
	}

	.module-search .search-icon i,
	.module-cart .cart-icon {
		color: #fff !important;
		border-left: 0 !important;
	}

	.navbar .logo.nsc-logo {
		max-width: calc(100% - 64px);
	}

	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 12px;
		max-width: none;
		white-space: nowrap;
	}

	/* Top bar: stack / avoid clipped quote button */
	#top-bar .text-right {
		text-align: center !important;
	}

	#top-bar .top-widget {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	#top-bar .top-widget > li {
		margin: 4px 6px !important;
	}

	#top-bar .top-social {
		border-left: none !important;
	}

	/* Hero breathing room under sticky header */
	.hero-2 .hero-slider .item {
		height: auto !important;
		min-height: 520px;
	}

	.hero-2 .hero-layout {
		padding: 130px 20px 100px;
	}

	.hero-2 .hero-slide {
		width: 100%;
		max-width: 420px;
	}

	/* Story / features */
	.shortcode-5 .feature img {
		height: auto;
		max-height: 420px;
		object-fit: cover;
	}

	#projects .project-img {
		height: 240px;
	}

	/* Footer contact widgets already stack; keep centered */
	#footer .widgets-contact .widget,
	.contact .widgets-contact .widget {
		width: 100%;
		max-width: 420px;
	}

	#footer .widgets-links .widget-about .widget-about-logo {
		padding-top: 0;
		float: none !important;
		display: inline-block;
		margin-bottom: 12px;
	}

	#footer .widgets-links .widget-about .widget-about-info {
		padding-left: 0;
		clear: both;
	}
}

/* ---- Phones ---- */
@media only screen and (max-width: 767px) {
	.navbar .logo.nsc-logo {
		height: 72px;
		gap: 8px;
	}

	.navbar .logo.nsc-logo .nsc-logo-mark {
		height: 32px;
	}

	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 11px;
		letter-spacing: 0.04em;
		max-width: none;
		white-space: nowrap;
	}

	.navbar-toggle {
		margin-top: 18px;
	}

	.full-header .navbar-fixed-top {
		height: auto;
		min-height: 72px;
	}

	.full-header .navbar-header,
	.transparent-header .navbar-header {
		min-height: 72px;
	}

	.hero-2 .hero-slider .item {
		min-height: 480px;
	}

	.hero-2 .hero-layout {
		padding: 100px 16px 88px;
	}

	.hero-2 .hero-slide {
		padding: 22px 18px 18px;
		max-width: 100%;
	}

	.hero-2 .hero-slide .slide-title h2 {
		font-size: 16px;
		line-height: 24px;
	}

	.hero-2 .hero-slide .slide-action {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.hero-2 .hero-slide .slide-action a {
		width: 100%;
		flex: 1 1 auto;
		min-width: 0;
	}

	.hero-2 .hero-arrows {
		bottom: 18px;
	}

	#cta-2 .cta-2 .cta-action,
	#cta-2 .cta-action {
		text-align: center !important;
		float: none !important;
		margin-top: 20px;
	}

	#cta-2 .cta-desc h3,
	#cta-2 .cta-desc p {
		text-align: center;
	}

	.testimonial-1 .testimonial-content {
		min-height: 0;
		padding-bottom: 20px;
	}

	#footer .nsc-footer-brand {
		font-size: 14px;
	}

	.copyrights,
	.copyrights .text-right,
	.copyrights .text-left {
		text-align: center !important;
	}

	.page-title h2 {
		font-size: 28px;
		line-height: 1.25;
	}

	.model-quote .modal-dialog {
		max-width: 360px;
		margin: 0 auto !important;
	}
}

/* ---- Small phones ---- */
@media only screen and (max-width: 479px) {
	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 10px;
		max-width: none;
		white-space: nowrap;
	}

	.hero-2 .hero-slider .item {
		min-height: 440px;
	}

	#service-1 .nsc-service-icon {
		width: 96px;
		height: 96px;
	}

	#service-1 .nsc-service-icon svg {
		width: 48px;
		height: 48px;
	}

	#projects .project-img {
		height: 240px;
	}
}

/* ---- Short / landscape viewports: keep hero content + arrows apart ---- */
@media only screen and (max-height: 560px) and (orientation: landscape) {
	.hero-2 .hero-slider .item {
		min-height: 100vh;
		height: auto !important;
	}

	.hero-2 .hero-layout {
		padding: 90px 16px 70px;
	}

	.hero-2 .hero-arrows {
		bottom: 12px;
	}

	.hero-2 .hero-slide .slide-title h2 {
		font-size: 15px;
		line-height: 22px;
	}
}

/* Homepage FAQ under testimonials */
#home-faq {
	padding-top: 90px;
	padding-bottom: 90px;
	background: #fff;
}

#home-faq .heading {
	margin-bottom: 50px;
}

#home-faq .accordion .panel-heading h4 {
	line-height: 1.35;
}

#home-faq .accordion .panel-heading a {
	display: block;
	padding-right: 42px;
	line-height: 1.4;
}

#home-faq .home-faq-cta {
	margin-top: 20px;
	margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
	#home-faq {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	#home-faq .heading {
		margin-bottom: 36px;
	}
}

/* Prefixed flex helpers already used above; ensure box-sizing on custom layout */
.hero-2 .hero-layout,
.hero-2 .hero-slide,
.navbar .logo.nsc-logo,
#footer .widgets-contact .widget {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Blog listing + single post */
.blog .entry-img img,
.single-post .entry-img img,
.entry-related img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.blog .entry,
.single-post .entry-related .entry {
	margin-bottom: 30px;
}

#nsc-search-empty {
	display: none;
	padding: 24px 16px 40px;
	text-align: center;
}

#nsc-search-empty p {
	margin-bottom: 18px;
}

.widget-recent .recent-entry a.nsc-recent-img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 70px;
	height: 70px;
}

.widget-recent .recent-entry a.nsc-recent-img img {
	position: static;
	width: 70px;
	height: 70px;
	object-fit: cover;
}

.single-post .entry-bio .entry-bio-desc a {
	margin-right: 16px;
}

.single-post .entry-prev-next .entry-prev.is-empty,
.single-post .entry-prev-next .entry-next.is-empty {
	visibility: hidden;
}

.entry-prev-content,
.entry-next-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 90px;
}

.entry-next-content {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.entry-prev-next .entry-prev img,
.entry-prev-next .entry-next img {
	position: static !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	width: 70px;
	height: 70px;
	-o-object-fit: cover;
	object-fit: cover;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.entry-prev-next .entry-prev .entry-desc,
.entry-prev-next .entry-next .entry-desc {
	margin-left: 14px !important;
	margin-right: 0 !important;
	min-width: 0;
}

.entry-prev-next .entry-next .entry-desc {
	margin-left: 0 !important;
	margin-right: 14px !important;
}

.entry-prev-next p {
	margin: 0 0 6px !important;
}

.entry-prev-next a {
	margin-top: 0 !important;
	display: block;
	line-height: 1.35;
	word-break: break-word;
}

/* ==========================================================================
   Responsive layout: phones, tablets, laptops, desktops, large screens
   ========================================================================== */

html,
body {
	max-width: 100%;
}

#primary-menu,
#primary-menu *,
#top-bar,
#top-bar * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#primary-menu.navbar > .row {
	margin-left: 0;
	margin-right: 0;
}

#primary-menu .container {
	width: 100%;
	max-width: 1170px;
}

/* Laptop / small desktop: keep logo + links on one row */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.navbar-nav > li {
		margin-right: 16px;
	}

	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 12px;
	}

	.module-search .search-icon i {
		padding-left: 16px;
		padding-right: 12px;
	}
}

/* Large / TV-width screens stay centered, no stretch */
@media only screen and (min-width: 1400px) {
	#primary-menu .container,
	.container {
		max-width: 1170px;
	}
}

/* ---- Tablet and phone: hamburger + readable full-width menu ---- */
@media only screen and (max-width: 991px) {
	#top-bar .top-social {
		display: none !important;
	}

	#top-bar.top-bar {
		height: auto;
		min-height: 0;
		line-height: 1.3;
		overflow: visible;
		padding: 8px 10px;
		text-align: center;
	}

	#top-bar .top-widget {
		border: 0;
		margin: 0;
		padding: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#top-bar .top-widget > li {
		border: 0 !important;
		margin: 0 !important;
	}

	#top-bar .button-quote {
		display: inline-block;
		margin: 0;
		padding: 8px 16px;
		line-height: 1.2;
	}

	.full-header {
		height: auto !important;
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1030;
		background: #fff;
	}

	.full-header .navbar-fixed-top {
		position: relative !important;
		top: 0 !important;
		height: auto;
		min-height: 72px;
		width: 100%;
	}

	.transparent-header {
		height: 72px;
	}

	.transparent-header + section {
		margin-top: -72px;
	}

	.transparent-header .navbar {
		height: auto;
		min-height: 72px;
	}

	#primary-menu .navbar-header {
		float: none !important;
		width: 100%;
		display: block;
		min-height: 72px;
		margin: 0 !important;
		padding: 0;
		position: relative;
	}

	#primary-menu .navbar-toggle {
		display: block !important;
		float: right !important;
		width: 44px;
		height: 44px;
		margin: 14px 0 0;
		padding: 9px 8px;
		border: 1px solid #ffc527;
		z-index: 20;
	}

	#primary-menu .navbar-toggle .icon-bar {
		background-color: #ffc527;
		display: block;
		width: 22px;
	}

	#primary-menu .navbar-collapse,
	#primary-menu .navbar-collapse.collapse,
	#primary-menu .navbar-collapse.collapsing,
	#primary-menu .navbar-collapse.in,
	#primary-menu .container > .navbar-collapse {
		display: none !important;
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 8px 0 16px !important;
		left: auto !important;
		right: auto !important;
		clear: both;
		background-color: #2f2f2f !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		max-height: calc(100vh - 130px);
		-webkit-overflow-scrolling: touch;
	}

	#primary-menu .navbar-collapse.in,
	#primary-menu .navbar-collapse.collapsing {
		display: block !important;
	}

	#primary-menu .navbar-nav,
	#primary-menu .navbar-nav.navbar-left {
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 20px !important;
	}

	#primary-menu .navbar-nav > li {
		float: none !important;
		height: auto !important;
		margin: 0 !important;
		width: 100%;
		position: relative;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	#primary-menu .navbar-nav > li:after {
		display: none !important;
	}

	#primary-menu .navbar-nav > li.active {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	#primary-menu .navbar-nav > li > a,
	#primary-menu .navbar-nav > li.has-dropdown > a {
		display: block;
		width: 100%;
		padding: 14px 28px 14px 4px !important;
		line-height: 1.35 !important;
		color: #fff !important;
		overflow: visible;
		white-space: normal;
		position: relative;
	}

	#primary-menu .navbar-nav > li.has-dropdown > a:after,
	#primary-menu .navbar-nav > li.has-dropdown.open > a:after {
		display: none !important;
	}

	#primary-menu .navbar-nav > li.has-dropdown > ul.dropdown-menu,
	#primary-menu ul.mega-menu {
		display: block !important;
		position: static !important;
		float: none !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 0 10px 16px !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		white-space: normal !important;
	}

	#primary-menu .navbar-nav > li.has-dropdown > ul.dropdown-menu > li > a {
		display: block;
		padding: 8px 4px !important;
		line-height: 1.4;
		color: #d4d4d4 !important;
		white-space: normal !important;
	}

	#primary-menu .module.module-search,
	#primary-menu .module.module-cart {
		float: none !important;
		display: block;
		width: 100%;
		padding: 12px 20px 4px;
		border: 0;
	}

	#primary-menu .module-search .search-icon {
		display: none;
	}

	#primary-menu .module-search .search-box,
	#primary-menu .module-search:hover .search-box {
		position: static !important;
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		width: 100% !important;
		max-width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		box-shadow: none;
		-webkit-transform: none;
		transform: none;
		background: transparent;
	}

	#primary-menu .module-search .search-form .input-group {
		width: 100%;
		display: table;
	}

	#primary-menu .module-search .search-form .form-control {
		height: 44px;
		padding: 8px 12px;
	}

	.navbar .logo.nsc-logo {
		max-width: calc(100% - 60px);
		height: 72px;
	}

	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 12px;
		white-space: nowrap;
	}

	.hero-2 .hero-slider .item {
		height: auto !important;
		min-height: 0;
	}

	.hero-2 .hero-layout {
		padding: 120px 16px 88px;
	}

	.hero-2 .hero-slide {
		width: 100%;
		max-width: 440px;
	}

	#cta-2 .cta-2,
	#cta-2 .cta-2 .row > [class*="col-"] {
		text-align: center;
		float: none !important;
		width: 100%;
	}

	#cta-2 .cta-desc h5,
	#cta-2 .cta-desc p {
		text-align: center;
		word-break: break-word;
	}

	#cta-2 .cta-action {
		text-align: center !important;
		float: none !important;
		margin-top: 16px;
	}

	#cta-2 .cta-action .btn {
		display: inline-block;
		margin: 6px 4px;
	}

	.sidebar {
		padding: 24px 18px;
		margin-top: 30px;
	}

	.blog .articles,
	.single-post .col-md-9 {
		width: 100%;
	}

	.entry-prev-next .entry-prev,
	.entry-prev-next .entry-next {
		width: 100%;
		margin-bottom: 16px;
	}

	.nsc-page-hero .page-title h2,
	.about-story-hero .page-title h2 {
		font-size: 28px;
		line-height: 1.25;
	}

	#footer .widgets-links .widget-about,
	#footer .widgets-links .widget-navigation,
	#footer .widgets-links .widget-services {
		width: 100%;
		max-width: 100%;
		float: none;
	}
}

@media only screen and (max-width: 767px) {
	#top-bar {
		display: none !important;
	}

	.full-header .navbar-fixed-top {
		top: 0 !important;
	}

	.navbar .logo.nsc-logo {
		height: 64px;
	}

	.navbar .logo.nsc-logo .nsc-logo-mark {
		height: 30px;
	}

	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 11px;
		letter-spacing: 0.03em;
	}

	#primary-menu .navbar-toggle {
		margin-top: 10px;
	}

	.hero-2 .hero-layout {
		padding: 96px 12px 80px;
	}

	.hero-2 .hero-slide {
		padding: 20px 16px 16px;
		max-width: 100%;
	}

	.hero-2 .hero-slide .slide-heading p {
		font-size: 13px;
		line-height: 1.4;
	}

	.hero-2 .hero-slide .slide-title h2 {
		font-size: 16px;
		line-height: 1.35;
	}

	.hero-2 .hero-slide .slide-action {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.hero-2 .hero-slide .slide-action a {
		width: 100%;
	}

	#cta-2 .cta-desc h5 {
		font-size: 18px;
		line-height: 1.4;
	}

	#cta-2 .cta-action .btn {
		display: block;
		width: 100%;
		max-width: 280px;
		margin: 8px auto;
	}

	.page-title h2 {
		font-size: 24px;
	}

	.sidebar {
		padding: 18px 14px;
	}

	.widget-recent .recent-entry .recent-desc a {
		font-size: 13px;
		line-height: 1.3;
	}

	.single-post .entry-share {
		text-align: left;
	}
}

@media only screen and (max-width: 479px) {
	.navbar .logo.nsc-logo .nsc-logo-text {
		font-size: 10px;
	}

	#top-bar .button-quote {
		font-size: 12px;
		padding: 7px 12px;
	}

	.hero-2 .hero-layout {
		padding: 88px 10px 72px;
	}

	.hero-2 .hero-slide .slide-title h2 {
		font-size: 15px;
	}
}

/* Landscape phones: keep menu and hero usable */
@media only screen and (max-height: 500px) and (orientation: landscape) {
	#primary-menu .navbar-collapse.in {
		max-height: calc(100vh - 80px);
	}

	.hero-2 .hero-layout {
		padding: 80px 16px 64px;
	}
}


.nsc-legal {
	padding-top: 70px;
	padding-bottom: 90px;
}

.nsc-legal h3 {
	margin-top: 36px;
	margin-bottom: 12px;
	font-size: 20px;
}

.nsc-legal p,
.nsc-legal li {
	color: #555;
	line-height: 1.75;
}

.nsc-legal ul {
	margin-bottom: 18px;
	padding-left: 22px;
}

.nsc-legal-updated {
	color: #777;
	margin-bottom: 18px;
}

.nsc-legal-note {
	font-size: 13px;
	color: #777;
	margin-bottom: 28px;
}

.nsc-legal-links {
	margin: 8px 0;
}

.nsc-legal-links a {
	color: #ffc527;
}

.nsc-form-privacy {
	font-size: 13px;
	color: #777;
	margin-bottom: 14px;
}

.nsc-recaptcha {
	margin: 0 0 16px;
	min-height: 78px;
}

.modal-body .nsc-recaptcha {
	margin-top: 10px;
}

.nsc-recaptcha .g-recaptcha {
	transform-origin: left top;
}

/* Sticky Call / Quote bar */
.nsc-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0 !important;
	margin: 0;
	z-index: 1040;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	background: #2f2f2f;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.nsc-sticky-cta a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
}

.nsc-sticky-cta-call {
	background: #2f2f2f;
	color: #fff !important;
}

.nsc-sticky-cta-call i {
	margin-right: 8px;
	color: #ffc527;
}

.nsc-sticky-cta-quote {
	background: #ffc527;
	color: #fff !important;
}

.nsc-sticky-cta a:hover,
.nsc-sticky-cta a:focus {
	opacity: 0.92;
	text-decoration: none;
}

@media only screen and (max-width: 991px) {
	.nsc-sticky-cta::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		height: 24px;
		background: -webkit-linear-gradient(left, #2f2f2f 50%, #ffc527 50%);
		background: linear-gradient(to right, #2f2f2f 50%, #ffc527 50%);
		pointer-events: none;
	}

	.nsc-sticky-cta-on-contact::after {
		background: #2f2f2f;
	}
}

body.has-nsc-sticky-cta {
	padding-bottom: 0;
}

body.has-nsc-sticky-cta #footer {
	padding-bottom: 56px;
}

.nsc-scroll-top {
	position: fixed;
	right: 12px;
	bottom: calc(64px + env(safe-area-inset-bottom, 0px));
	z-index: 1041;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: #2f2f2f;
	color: #ffc527;
	font-size: 22px;
	line-height: 44px;
	text-align: center;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(8px);
	transform: translateY(8px);
	-webkit-transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nsc-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.nsc-scroll-top:hover,
.nsc-scroll-top:focus {
	background: #ffc527;
	color: #2f2f2f;
	outline: none;
}

body.modal-open .nsc-sticky-cta,
body.modal-open .nsc-scroll-top {
	display: none;
}

.nsc-sticky-cta-on-contact .nsc-sticky-cta-quote {
	display: none;
}

@media only screen and (min-width: 992px) {
	.nsc-sticky-cta {
		left: auto;
		right: 24px;
		bottom: 24px !important;
		width: auto;
		max-width: calc(100% - 48px);
		border-radius: 2px;
		overflow: hidden;
		padding-bottom: 0;
	}

	.nsc-scroll-top {
		right: 24px;
		bottom: 88px;
	}

	body.has-nsc-sticky-cta #footer {
		padding-bottom: 0;
	}

	.nsc-sticky-cta a {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		padding: 14px 20px;
		min-height: 48px;
	}

	body.has-nsc-sticky-cta {
		padding-bottom: 0;
	}
}

/* Location / area pages */
.nsc-locations {
	padding: 40px 0 70px;
}

.nsc-loc-lead {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 18px;
}

.nsc-area-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 8px -8px 28px;
}

.nsc-area-card {
	display: block;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 200px;
	flex: 1 1 200px;
	margin: 8px;
	padding: 16px 18px;
	background: #2f2f2f;
	color: #fff !important;
	text-decoration: none !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.nsc-area-card:hover,
.nsc-area-card:focus {
	background: #ffc527;
	color: #2f2f2f !important;
}

.nsc-loc-cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 12px;
	margin: 28px 0 12px;
}

.nsc-loc-cta .btn {
	width: auto;
	min-width: 170px;
	max-width: 100%;
	height: auto;
	line-height: 1.3;
	padding: 14px 22px;
	margin: 0;
	white-space: normal;
}

.nsc-locations h3 {
	margin-top: 28px;
	margin-bottom: 12px;
}
