@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/7cHqv4kjgoGqM7E3p-ks51ostz0rdg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/7cHqv4kjgoGqM7E3_-gs51ostz0rdg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/7cHqv4kjgoGqM7E30-8s51ostz0rdg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {  
  --body-text-color: #203447;
  --primary-color: #ff6845;
  --light-gray: #f4f6f8;
  --gray: #6b7280;
}

html { scroll-behavior: smooth; }
html,
body {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-style: normal;
	text-rendering: optimizeLegibility;
	font-variant-ligatures: no-common-ligatures;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-width: 300px;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5em;
	overflow-x: hidden;
	color: var(--body-text-color);
}

.navbar {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(32, 52, 71, .08);
}

.navbar-brand img{
  width: 220px;
  height: auto;
}
.footer-logo img {
  width: 200px;
  height: auto;
}

.nav-link {
  color: var(--body-text-color);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

.section-padding{ 
	padding: 120px 0; 
}

.hero {
	position: relative;
	height: 100vh;
	max-height: 900px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero > .container{
	padding-top: 80px;
	box-sizing: border-box;
}
.hero-img {
	clip-path: polygon(150px 0, 100% 0, 100% 100%, 0% 100%);
	width: 200%;
	position: relative;
	height: 100%;
}
.hero-img .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 0.85;
	display: block;
	pointer-events: none;
	z-index: 2;
}
.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: rgba(255,104,69,.08);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.eyebrow {
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-left: 0.2rem;
  margin-bottom: 0.2rem;
}

h1, h2, h3, h4 { 
	font-weight: 600;
	font-weight: 600 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.03em;
	color: var(--body-text-color);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -0.04em;
}

.lead { color: #334155; }

.accent-line {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 30px 0 26px;
}
.text-center .accent-line {
	margin-left: auto;
	margin-right: auto;
}

.btn-canup {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #e95838;
  --bs-btn-hover-border-color: #e95838;
  --bs-btn-hover-color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .7rem 1.6rem .85rem;
}

.btn-outline-canup {
  --bs-btn-color: var(--body-text-color);
  --bs-btn-border-color: rgba(32,52,71,.25);
  --bs-btn-hover-bg: var(--body-text-color);
  --bs-btn-hover-border-color: var(--body-text-color);
  --bs-btn-hover-color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .7rem 1.6rem .85rem;
}

.image-placeholder {
  min-height: 380px;
  border: 2px dashed rgba(32,52,71,.18);
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray);
  overflow: hidden;
}

.image-placeholder.dark {
  background: linear-gradient(135deg, rgba(32,52,71,.95), rgba(32,52,71,.75));
  color: rgba(255,255,255,.76);
}

.info-card {
  height: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(32,52,71,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(32,52,71,.12);
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,104,69,.12);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.bg-soft { background: var(--light-gray); }

img.rounded{
	border-radius: 10px !important;
}

.standards-band {
  background:
	linear-gradient(110deg, var(--body-text-color) 0%, var(--body-text-color) 58%, var(--primary-color) 58%, var(--primary-color) 100%);
  color: #fff;
  border-radius: 36px;
  overflow: hidden;
}

.contact-card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(32,52,71,.1);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--body-text-color);
  text-decoration: none;
  font-weight: 700;
  padding: .9rem 1rem;
  border: 1px solid rgba(32,52,71,.12);
  border-radius: 16px;
  background: #fff;
}

.contact-link i { color: var(--primary-color); }
.contact-link:hover { border-color: var(--primary-color); }

footer {
  background: var(--body-text-color);
  color: rgba(255,255,255,.82);
}

footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

footer a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .hero { 
	  min-height: auto; 
	  background: #fff;
  }
  .hero > .container {
	  padding-top: 120px;
  }
  .section-padding { 
	  padding: 70px 0;
  }
  .eyebrow {
	  font-size: 0.75rem;
  }
  .hero-img {
	  margin-top: 30px;
	  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero h1 {
	  font-size: clamp(2rem, 6vw, 5.2rem);
  }
  .accent-line {
	  width: 60px;
	  height: 3px;
	  margin: 20px 0 16px;
  }
  .lead {
	  font-size: 1rem !important;
	  line-height: 1.4em;
  }
  .btn {
	  font-size: 0.9em;
	  padding: 0.6rem 1.2rem 0.75rem;
  }
  .navbar-toggler{
	  border-width: 0 !important;
  }
}

@media (max-width: 600px) {
	.container{
		--bs-gutter-x: 2.6rem;
	}
	.navbar-brand img {
		width: 160px;
		height: auto;
	}
	.display-5 {
		font-size: calc(1.25rem + 2.1vw);
	}
}

