/* =============================================================
   BSD THEME — CUSTOM OVERRIDES
   Put your site-specific styles here.
   This file is yours; it won't be touched by theme updates.
   ============================================================= */

/* Example: override the accent color for your brand
:root {
  --color-accent: #2e8b57;
  --color-accent-dark: #246b44;
}
*/


/* Hero grid settings */

.hero__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-10);
  align-items: center;
}

hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero {
  display: block;
  overflow: visible;
  min-height: 500px;
}

/* Hero site name, with custom font */
.hero h1 {
  font-family: Montserrat-Regular, serif;
}

.hero__image-wrap {
  grid-column: 1 / 6;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  /* border-radius: var(--radius-lg); */
  /* aspect-ratio: 16 / 9; */
  z-index: 1;
}

.hero__content {
  padding: 1em;
  grid-column: 4 / 9;
  grid-row: 1;
  position: relative;
  z-index: 2;
  background: color-mix(in srgb, var(--color-hero-bg) 90%, transparent);
}

/* Nav bar border */

.nav {
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.service-item__icon i.fa {
  font-family: 'FontAwesome' !important;
  font-size: 2rem;
  color: var(--color-accent);
}

.service-item {
  text-align: center;
}

.service-item__title a {
  color: var(--color-primary);
  text-decoration: none;
}

.service-item__title a:hover {
  color: var(--color-accent);
}

.service-item__title .fa {
  font-size: 0.75em;
  margin-left: var(--space-2);
  vertical-align: middle;
}
.service-item__arrow {
  display: block;
  text-align: center;
  color: var(--color-accent);
  font-size: 3em;
  margin-top: var(--space-2);
}

.service-item__arrow:hover {
  color: var(--color-primary);
}