:root {
  --original-blue: #0873a8;
  --original-blue-dark: #075b87;
  --original-green: #66b84b;
  --original-green-light: #8acb61;
  --heading: #333333;
  --body: #777777;
  --border: #e7e7e7;
  --light-bg: #f7f7f7;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--heading);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(38px, 5vw, 58px); }
h2 { font-size: clamp(30px, 4vw, 40px); }
h3 { font-size: 22px; }

a {
  color: var(--original-blue);
  text-decoration: none;
  transition: all .2s ease;
}

a:hover {
  color: var(--original-green);
}

.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-header .navbar {
  min-height: 108px;
  padding: 8px 0;
}

.site-logo {
  display: block;
  width: 147px;
  height: 129px;
  object-fit: contain;
}

.logo-link {
  padding: 0;
  line-height: 0;
}

.navbar-nav .nav-link {
  position: relative;
  margin: 0 4px;
  padding: 38px 14px !important;
  color: #555 !important;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.navbar-nav .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 25px;
  left: 14px;
  height: 2px;
  background: var(--original-green);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--original-blue) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-consult {
  border: 1px solid var(--original-blue);
  border-radius: 2px;
  background: var(--original-blue);
  color: #fff;
  padding: 11px 24px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.btn-consult:hover {
  border-color: var(--original-green);
  background: var(--original-green);
  color: #fff;
}

.nav-cta .btn-consult {
  margin-left: 8px;
}

.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("../images/homepage-slide-01-1600.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 50, 75, .73), rgba(0, 75, 110, .32));
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 680px;
  color: #fff;
}

.hero-kicker {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.9);
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.hero-copy p:not(.hero-kicker) {
  margin-bottom: 30px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 21px;
}

.section-space {
  padding: 95px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--original-blue);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-intro h2,
.section-heading h2 {
  margin-bottom: 25px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
}

.about-section p {
  margin-bottom: 17px;
}

.image-frame,
.feature-image {
  overflow: hidden;
}

.image-frame img,
.feature-image img {
  width: 100%;
  display: block;
}

.image-frame {
  position: relative;
}

.image-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 4px;
  background: var(--original-green);
  content: "";
}

.consultation-strip {
  padding: 55px 0;
  background: var(--original-blue);
  color: #fff;
}

.consultation-strip h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.consultation-strip p {
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.consultation-strip .btn-light {
  border-radius: 2px;
  color: var(--original-blue);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.services-section {
  background: var(--light-bg);
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,.09);
}

.service-image {
  overflow: hidden;
}

.service-image img {
  display: block;
  width: 100%;
  aspect-ratio: 640 / 427;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.03);
}

.service-body {
  padding: 28px 27px 30px;
}

.service-body h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 21px;
  font-weight: 600;
}

.service-subtitle {
  min-height: 54px;
  margin-bottom: 14px;
  color: var(--original-blue);
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.more-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--original-blue);
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.more-link:hover {
  color: var(--original-green);
}

.feature-section {
  padding: 95px 0;
  background: #fff;
}

.feature-section h2 {
  margin-bottom: 22px;
}

.feature-section p {
  max-width: 620px;
}

.contact-section {
  background: var(--light-bg);
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--border);
  background: #fff;
}

.form-label {
  color: #555;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.form-control {
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 1px;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--original-blue);
  box-shadow: 0 0 0 .15rem rgba(8,115,168,.12);
}

textarea.form-control {
  min-height: 150px;
}

.static-note {
  margin-top: 18px;
  color: #999;
  font-size: 12px;
}

.site-footer {
  padding: 55px 0 30px;
  background: #222;
  color: #aaa;
}

.footer-logo-wrap {
  margin-bottom: 22px;
}

.footer-logo {
  width: 147px;
  height: 129px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  background: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-bottom: 25px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #ddd;
  font-size: 15px;
}

.footer-social a:hover {
  border-color: var(--original-green);
  background: var(--original-green);
  color: #fff;
}

.footer-divider {
  width: 55px;
  height: 2px;
  margin: 0 auto 20px;
  background: var(--original-green);
}

.copyright {
  color: #888;
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    min-height: 90px;
  }

  .site-logo {
    width: 120px;
    height: 105px;
  }

  .navbar-nav .nav-link {
    padding: 12px 8px !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .nav-cta .btn-consult {
    margin: 8px 0 0;
  }

  .hero-section {
    min-height: 560px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 65px 0;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p:not(.hero-kicker) {
    font-size: 18px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .consultation-strip {
    padding: 45px 0;
  }

  .footer-logo {
    width: 120px;
    height: 105px;
  }
}
