* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
}

.sgrda-header {
  width: 100%;
  background: #fff;
}

/* TOP BAR */
.sgrda-topbar-wrap {
  width: 100%;
  background: #fff;
}

.sgrda-topbar {
  position: relative;
  width: 100%;
  max-width: 1775px;
  height: 205px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 385px 1fr 390px;
  align-items: start;
  background: #fff;
}

.sgrda-logo-wrap {
  grid-column: 2;
  padding-top: 42px;
  text-align: center;
}

.sgrda-logo {
  width: 460px;
  max-width: 70%;
  height: auto;
}

.sgrda-logo-wrap p {
  margin: 4px 0 16px;
  font-size: 19px;
  color: #000;
}

.sgrda-socials {
  display: flex;
  justify-content: center;
  gap: 13px;
}

.sgrda-socials a {
  display: inline-flex;
}

.sgrda-socials img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.sgrda-contact {
  grid-column: 3;
  padding: 102px 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  font-size: 14px;
  color: #000;
}

.sgrda-contact > div {
  padding-left: 10px;
  padding-top: 10px;
  border-left: 1px solid #7a7a7a;
  border-top: 1px solid #7a7a7a;
}

.sgrda-contact span,
.sgrda-contact a {
  display: block;
  line-height: 1.25;
}

.sgrda-contact a {
  color: #0082b3;
  font-weight: 700;
  text-decoration: none;
}

/* HERO FULL WIDTH */
.sgrda-hero {
  position: relative;
  width: 100%;
  height: 695px;
  overflow: visible;
  z-index: 20;
}

.sgrda-hero-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 390px;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.sgrda-hero-main {
  grid-row: 1 / 3;
  background-image: url('assets/img/hero-main.jpg');
  background-size: cover;
  background-position: center;
}

.sgrda-hero-side {
  background-size: cover;
  background-position: center;
}

.sgrda-hero-side--top {
  background-image: url('assets/img/hero-top-right.jpg');
}

.sgrda-hero-side--bottom {
  background-image: url('assets/img/hero-bottom-right.jpg');
}

/* LEFT MENU */

.sgrda-sidebar__top {
  height: 340px;
  padding: 24px 54px 36px;
  background: #005a78;
}

.sgrda-sidebar__title {
  color: #fff;
  text-align: center;
  line-height: 1;
}

.sgrda-sidebar__title span {
  display: block;
  font-size: 31px;
  font-weight: 400;
}

.sgrda-sidebar__title strong {
  display: block;
  margin-top: 5px;
  font-size: 53.82px;
  font-weight: 700;
  letter-spacing: -1px;
}

.sgrda-overview {
  margin-top: 42px;
  min-height: 70px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 20px;
  background: #fff;
  color: #3a3a3a;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
}

.sgrda-overview img {
  width: 74px;
  height: auto;
}

.sgrda-overview span {
  font-size: 20px;
  font-weight: 700;
  line-height: 0.95;
}

.sgrda-county-menu {
  padding: 23px 31px 24px 47px;
}

.sgrda-county-menu a {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-size: 23.734px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.sgrda-county-menu a:last-child {
  border-bottom: 0;
}

.sgrda-county-menu img {
  width: 35px;
  min-width: 35px;
  max-height: 40px;
  object-fit: contain;
}

.sgrda-menu-toggle {
  display: none;
}

/* если экран меньше контейнера */
@media (max-width: 1775px) {
  .sgrda-sidebar {
    left: 0;
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .sgrda-topbar {
    height: auto;
    min-height: 150px;
    display: block;
    padding: 22px 20px;
  }

  .sgrda-logo-wrap {
    padding-top: 0;
  }

  .sgrda-logo {
    width: 270px;
    max-width: 100%;
  }

  .sgrda-logo-wrap p {
    font-size: 13px;
  }

  .sgrda-contact {
    margin-top: 14px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
  }

  .sgrda-hero {
    height: 720px;
    background-image: url('assets/img/hero-main.jpg');
    background-size: cover;
    background-position: center;
  }

  .sgrda-hero-grid {
    display: none;
  }

  .sgrda-sidebar {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent;
    pointer-events: none;
  }

  .sgrda-sidebar__top {
    width: 280px;
    height: auto;
    padding: 18px 22px 22px;
    pointer-events: auto;
  }

  .sgrda-sidebar__title span {
    font-size: 22px;
  }

  .sgrda-sidebar__title strong {
    font-size: 37px;
  }

  .sgrda-overview {
    margin-top: 24px;
    min-height: 54px;
    border-radius: 14px;
    padding: 8px 16px;
  }

  .sgrda-overview img {
    width: 48px;
  }

  .sgrda-overview span {
    font-size: 15px;
  }

  .sgrda-menu-toggle {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 42px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    border-radius: 8px;
    background: #005a78;
    cursor: pointer;
    pointer-events: auto;
  }

  .sgrda-menu-toggle span {
    height: 3px;
    display: block;
    border-radius: 99px;
    background: #fff;
  }

  .sgrda-county-menu {
    display: none;
    width: 100%;
    padding: 18px 28px 24px;
    background: #7bb719;
    pointer-events: auto;
  }

  .sgrda-sidebar.is-open .sgrda-county-menu {
    display: block;
  }

  .sgrda-county-menu a {
    min-height: 48px;
    font-size: 19px;
  }
}

.sgrda-header {
  position: relative;
  width: 100%;
  background: #fff;
}

.sgrda-topbar-wrap {
  position: relative;
  z-index: 10;
  background: #fff;
}

.sgrda-hero {
  position: relative;
  width: 100%;
  height: 695px;
  overflow: visible;
  z-index: 1;
}

.sgrda-sidebar {
  position: absolute;
  top: 0;
  left: calc((100vw - 1775px) / 2);
  width: 385px;
  height: 900px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: #7bb719;
}

@media (max-width: 1775px) {
  .sgrda-sidebar {
    left: 0;
  }
}

.sgrda-logo-wrap {
  grid-column: 2;
  position: relative;
  z-index: 2;
  padding-top: 42px;
  text-align: center;
}

.sgrda-logo-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  width: 820px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 1230px) {
  .sgrda-logo-wrap::after {
    display: none;
  }
}

@media (max-width: 991px) {
  /* .sgrda-topbar-wrap {
    display: none;
  } */

  .sgrda-hero {
    position: relative;
    height: 520px;
    background-image: url('assets/img/hero-main.jpg');
    background-size: cover;
    background-position: center;
  }

  .sgrda-hero-grid {
    display: none;
  }

  .sgrda-sidebar {
    position: absolute;
    top: 253px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    background: transparent;
  }

  /* CLOSED */
  .sgrda-sidebar__top {
    display: none;
    width: 100%;
    padding: 24px 22px 24px;
    background: #005a78;
  }

  .sgrda-sidebar.is-open .sgrda-sidebar__top {
    display: block;
  }

  .sgrda-sidebar__title span {
    font-size: 24px;
  }

  .sgrda-sidebar__title strong {
    font-size: 48px;
  }

  .sgrda-overview {
    margin-top: 24px;
  }

  .sgrda-menu-toggle {
    position: absolute;
    top: -235px;
    right: 22px;
    width: 52px;
    height: 46px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
    border-radius: 10px;
    background: #005a78;
    z-index: 10000;
    cursor: pointer;
  }

  .sgrda-menu-toggle span {
    height: 3px;
    border-radius: 99px;
    background: #fff;
  }

  .sgrda-county-menu {
    display: none;
    width: 100%;
    padding: 10px 24px 24px;
    background: #7bb719;
  }

  .sgrda-sidebar.is-open .sgrda-county-menu {
    display: block;
  }

  .sgrda-county-menu a {
    min-height: 54px;
    font-size: 20px;
  }
}

.industry-section {
  width: 100%;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
}

.industry-intro {
  position: relative;
  background: #414141;
  color: #fff;
}

.industry-intro__inner {
  position: relative;
  width: 100%;
  max-width: 1775px;
  min-height: 482px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 120px;
  padding: 74px 145px 150px 360px;
}

.industry-hand {
  position: absolute;
  left: -60px;
  top: 70px;
  width: 380px;
  opacity: 0.5;
}

.industry-intro h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 48px;
  line-height: 0.95;
  font-weight: 700;
}

.industry-intro p {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 400;
}

.industry-intro__left strong {
  font-weight: 700;
  text-decoration: underline;
}

.industry-intro__right p {
  font-size: 23px;
  line-height: 1.42;
}

.industry-stats {
  position: relative;
  z-index: 3;
  margin-top: -78px;
}

.industry-stats__inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.industry-stat {
  flex: 0 0 270px;

  width: 270px;
  height: 270px;

  padding: 28px 24px 20px;

  border-radius: 50%;
  background: #fff;

  color: #005a78;
  text-align: center;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.industry-stat img {
  height: 75px;
  max-width: 95px;
  object-fit: contain;
  margin-bottom: 8px;
}

.industry-stat h3 {
  margin: 0;
  color: #005a78;
  font-size: 25px;
  line-height: 0.93;
  font-weight: 700;
}

.industry-stat strong {
  display: block;
  margin-top: 2px;
  color: #005a78;
  font-size: 45px;
  line-height: 1;
  font-weight: 700;
}

.industry-stat p {
  margin: 9px 0 0;
  color: #000;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 400;
}

.industry-stat small {
  display: block;
  margin-top: 10px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

.industry-clusters {
  position: relative;
  margin-top: -180px;
  min-height: 620px;
  background-image: url('assets/img/industry-bg.jpg');
  background-size: cover;
  background-position: center;
}

.industry-clusters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.92) 12%,
    rgba(255, 255, 255, 0.55) 24%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
  z-index: 1;
}

.industry-clusters__inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 330px 0 80px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 110px;
  align-items: start;
}

.industry-clusters h2 {
  margin: 0;
  color: #005a78;
  font-size: 78px;
  line-height: 0.88;
  font-weight: 700;
}

.industry-clusters h2 span {
  font-weight: 300;
}

.industry-clusters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 110px;
}

.industry-stat-2 img {
  height: 100px;
}

.industry-cluster {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #005a78;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.industry-cluster img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

/* tablet */
@media (max-width: 1200px) {
  .industry-intro__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 40px 140px;
  }

  .industry-hand {
    display: none;
  }

  .industry-stats__inner {
    padding: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .industry-clusters__inner {
    padding: 260px 35px 70px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .industry-intro__inner {
    min-height: auto;
    padding: 48px 24px 120px;
  }

  .industry-intro h2 {
    font-size: 38px;
  }

  .industry-intro p,
  .industry-intro__right p {
    font-size: 19px;
    line-height: 1.35;
  }

  .industry-stats {
    margin-top: -70px;
  }

  .industry-stats__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }

  .industry-stat {
    width: 235px;
    height: 235px;
    padding: 24px 18px 18px;
  }

  .industry-stat img {
    height: 58px;
  }

  .industry-stat h3 {
    font-size: 22px;
  }

  .industry-stat strong {
    font-size: 38px;
  }

  .industry-stat p {
    font-size: 15px;
  }

  .industry-clusters {
    margin-top: -60px;
    min-height: auto;
  }

  .industry-clusters__inner {
    padding: 140px 24px 60px;
  }

  .industry-clusters h2 {
    font-size: 58px;
  }

  .industry-clusters__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .industry-cluster {
    font-size: 21px;
  }

  .industry-cluster img {
    width: 78px;
    height: 78px;
  }
}

.workforce-section {
  width: 100%;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
  background: #fff;
}

.workforce-top {
  background: #fff;
  padding: 60px 20px 0;
}

.workforce-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 0 60px;
  display: grid;
  grid-template-columns: 395px 1fr;
  gap: 95px;
}

.workforce-copy h2 {
  margin: 0 0 18px;
  color: #005a78;
  font-size: 76px;
  line-height: 0.82;
  font-weight: 700;
}

.workforce-copy h2 span {
  font-weight: 300;
}

.workforce-copy p {
  margin: 0 0 24px;
  color: #000;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 400;
}

.workforce-schools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 36px;
  padding-top: 35px;
}

.workforce-school-card {
  min-height: 205px;
  padding: 24px 34px 22px;
  border: 3px solid #005a78;
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.workforce-school-card img {
  max-width: 360px;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.workforce-school-card p {
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 400;
}

.workforce-highlight {
  grid-column: 1 / 3;
  margin-top: 28px;
}

.workforce-highlight p {
  margin: 0;
  color: #005a78;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
}

.workforce-highlight span {
  color: #76b719;
}

.workforce-highlight small {
  display: block;
  margin-top: 28px;
  color: #000;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 700;
}

.workforce-photo {
  position: relative;
  min-height: 645px;
  margin-top: -8px;
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.88) 12%,
      rgba(255, 255, 255, 0.25) 30%,
      rgba(255, 255, 255, 0) 48%
    ),
    url('assets/img/workforce-bg.jpg');
  background-size: cover;
  background-position: center;
}

.workforce-photo__inner {
  width: 100%;
  max-width: 1520px;
  min-height: 645px;
  margin: 0 auto;
  padding: 405px 65px 70px;
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.workforce-metric {
  width: 540px;
  min-height: 185px;
  padding: 35px 44px;
  display: flex;
  align-items: center;
  gap: 38px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.workforce-metric img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.workforce-metric h3 {
  margin: 0 0 4px;
  color: #000;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.workforce-metric strong {
  display: block;
  color: #005a78;
  font-size: 61px;
  line-height: 0.95;
  font-weight: 700;
}

.workforce-metric small {
  display: block;
  margin-top: 8px;
  color: #000;
  font-size: 10px;
  font-weight: 700;
}

/* tablet */
@media (max-width: 1200px) {
  .workforce-inner {
    padding: 50px 35px 60px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .workforce-schools {
    padding-top: 0;
  }

  .workforce-highlight {
    grid-column: auto;
  }

  .workforce-photo__inner {
    padding: 360px 35px 60px;
    gap: 30px;
  }

  .workforce-metric {
    width: 50%;
  }
}

/* mobile */
@media (max-width: 767px) {
  .workforce-inner {
    padding: 45px 24px 50px;
  }

  .workforce-copy h2 {
    font-size: 58px;
  }

  .workforce-copy p {
    font-size: 17px;
  }

  .workforce-schools {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workforce-school-card {
    min-height: 170px;
    padding: 24px;
  }

  .workforce-school-card img {
    max-width: 260px;
  }

  .workforce-highlight p {
    font-size: 22px;
  }

  .workforce-photo {
    min-height: auto;
  }

  .workforce-photo__inner {
    min-height: auto;
    padding: 300px 24px 45px;
    flex-direction: column;
    gap: 22px;
  }

  .workforce-metric {
    width: 100%;
    min-height: 150px;
    padding: 26px 24px;
    gap: 20px;
  }

  .workforce-metric img {
    width: 82px;
    height: 82px;
  }

  .workforce-metric h3 {
    font-size: 20px;
  }

  .workforce-metric strong {
    font-size: 48px;
  }
}

.regional-map-section {
  width: 100%;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
}

.regional-map-top {
  position: relative;
  min-height: 720px;
  background: linear-gradient(
    to bottom,
    #005a78 0%,
    #005a78 220px,
    #76b719 220px,
    #eef7df 100%
  );
  overflow: hidden;
}

.regional-map-inner {
  position: relative;
  width: 100%;
  max-width: 1520px;
  min-height: 820px;
  margin: 0 auto;
}

.regional-map-title {
  position: absolute;
  top: 42px;
  left: 520px;
  z-index: 3;
}

.regional-map-title h2 {
  margin: 0;
  color: #fff;
  font-size: 88px;
  line-height: 0.83;
  font-weight: 700;
}

.regional-map-title span {
  font-weight: 300;
}

.regional-map-image {
  position: absolute;
  left: -55px;
  top: 58px;
  width: 900px;
  z-index: 2;
}

.regional-map-image img {
  width: 100%;
  display: block;
}

.regional-map-cards {
  position: absolute;
  top: 47px;
  right: 92px;
  width: 515px;
  display: grid;
  gap: 42px;
  z-index: 4;
}

.regional-card {
  min-height: 245px;
  padding: 38px 38px 34px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.regional-card img {
  height: 62px;
  object-fit: contain;
  margin-bottom: 14px;
}

.regional-card-truck img {
  width: 120px;
  height: 120px;
}

.regional-card h3 {
  margin: 0 0 20px;
  color: #76b719;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.regional-card p {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}

.regional-card p span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0082b3;
  border-radius: 50%;
  color: #0082b3;
  font-size: 22px;
  font-weight: 400;
}

.regional-card strong {
  display: block;
  color: #000;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  background: #005a78;
  color: #fff;
}

.site-footer__inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 42px 20px 34px;
}

.site-footer__brand img {
  width: 305px;
  display: block;
}

.site-footer__info {
  margin-top: 20px;
  display: flex;
  gap: 115px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.site-footer__info p {
  margin: 0;
}

.site-footer__info a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.site-footer__bottom {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__bottom p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.site-footer__powered {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__powered span {
  font-size: 18px;
}

.site-footer__powered img {
  width: 230px;
  display: block;
}

/* tablet */
@media (max-width: 1200px) {
  .regional-map-inner {
    padding: 45px 35px 70px;
    min-height: auto;
    display: grid;
    gap: 30px;
  }

  .regional-map-title,
  .regional-map-image,
  .regional-map-cards {
    position: static;
    width: 100%;
  }

  .regional-map-title h2 {
    font-size: 72px;
  }

  .regional-map-image {
    max-width: 720px;
  }

  .regional-map-cards {
    max-width: 650px;
  }

  .site-footer__inner {
    padding: 42px 35px 34px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .regional-map-top {
    background: linear-gradient(
      to bottom,
      #005a78 0%,
      #005a78 190px,
      #76b719 190px,
      #eef7df 100%
    );
  }

  .regional-map-inner {
    padding: 38px 24px 55px;
  }

  .regional-map-title h2 {
    font-size: 58px;
  }

  .regional-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .regional-card h3 {
    font-size: 36px;
  }

  .regional-card p,
  .regional-card strong {
    font-size: 18px;
  }

  .site-footer__brand img {
    width: 250px;
  }

  .site-footer__info,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-footer__bottom p {
    font-size: 15px;
  }

  .site-footer__powered img {
    width: 190px;
  }
}

@media (max-width: 1500px) {
  .regional-map-cards {
    width: 415px;
  }

  .regional-map-title h2 {
    font-size: 70px;
  }
}

@media (max-width: 1330px) {
  .regional-map-image {
    width: 770px;
  }

  .regional-map-title {
    left: 420px;
  }

  .regional-map-cards {
    right: 5px;
  }
}

@media (max-width: 1440px) {
  .sgrda-page-title h1 {
    font-size: 42px;
  }
  .workforce-inner {
    max-width: 1180px;
    grid-template-columns: 340px 1fr;
    gap: 55px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .workforce-copy h2 {
    font-size: 64px;
  }

  .workforce-copy p {
    font-size: 17px;
  }

  .workforce-schools {
    gap: 24px;
  }

  .workforce-school-card {
    min-height: 175px;
    padding: 22px 24px;
  }

  .workforce-school-card img {
    max-width: 240px;
    max-height: 70px;
  }

  .workforce-school-card p {
    font-size: 16px;
  }

  .workforce-highlight p {
    font-size: 23px;
  }

  .workforce-photo__inner {
    max-width: 1180px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .workforce-metric {
    width: 500px;
  }
}

@media (max-width: 1600px) {
  .industry-intro__inner {
    grid-template-columns: 430px 1fr;
    gap: 70px;
    padding: 74px 60px 150px 250px;
  }

  .industry-hand {
    width: 230px;
    top: 150px;
  }

  .industry-intro h2 {
    font-size: 42px;
  }

  .industry-intro p {
    font-size: 21px;
  }

  .industry-intro__right p {
    font-size: 19px;
    line-height: 1.4;
  }
}

@media (max-width: 1600px) {
  .industry-stats__inner {
    gap: 16px;
    padding: 0 24px;
  }

  .industry-stat {
    flex: 0 0 235px;
    width: 235px;
    height: 235px;
    padding: 22px 18px 18px;
  }

  .industry-stat img {
    height: 58px;
  }

  .industry-stat h3 {
    font-size: 22px;
  }

  .industry-stat strong {
    font-size: 39px;
  }

  .industry-stat p {
    font-size: 15px;
  }
}

.workforce-section {
  position: relative;
  overflow: visible;
}

.workforce-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 650px;
  width: 53px;
  height: 1500px;
  border-radius: 0px 50px 50px 0px;
  background: rgba(17, 121, 173, 0.6);
  z-index: 5;
  pointer-events: none;
}

.workforce-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 53px;
  height: 842px;
  border-radius: 0 0 0 50px;
  background: #689a0f;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 1600px) {
  .sgrda-page-title h1 {
    font-size: 68px;
  }
}

@media (max-width: 1430px) {
  .sgrda-page-title h1 {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .sgrda-page-title h1 {
    text-align: center;
  }
}

@media (max-width: 1600px) {
  .sgrda-logo-wrap::after {
    width: 550px;
  }
  .industry-hand {
    top: 70px;
  }
}

@media (max-width: 1350px) {
  .sgrda-logo-wrap::after {
    width: 350px;
  }

  .sgrda-page-title h1 {
    font-size: 34px;
  }

  .industry-intro__inner {
    padding: 74px 60px 50px 200px;
  }
}

@media (max-width: 991px) {
  .workforce-section::before,
  .workforce-section::after {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .industry-clusters::before {
    display: none;
  }

  /* ---------- INDUSTRY ---------- */

  .industry-intro__inner {
    display: flex;
    flex-direction: column;
    padding: 42px 24px 120px;
    gap: 24px;
  }

  .industry-intro__left,
  .industry-intro__right {
    width: 100%;
  }

  .industry-stats {
    margin-top: -50px;
  }

  .industry-stats__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .industry-stat {
    flex: unset;
  }

  .industry-clusters {
    margin-top: -40px;
  }

  .industry-clusters__inner {
    display: flex;
    flex-direction: column;
    padding: 120px 24px 60px;
    gap: 36px;
  }

  .industry-clusters__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-cluster {
    align-items: center;
  }

  /* ---------- WORKFORCE ---------- */

  .workforce-top {
    padding: 45px 0 0;
  }

  .workforce-inner {
    display: flex;
    flex-direction: column;
    padding: 0 24px 50px;
    gap: 28px;
  }

  .workforce-copy,
  .workforce-schools,
  .workforce-highlight {
    width: 100%;
  }

  .workforce-schools {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workforce-school-card {
    min-height: auto;
  }

  .workforce-highlight {
    margin-top: 10px;
  }

  .workforce-highlight p {
    font-size: 20px;
    line-height: 1.3;
  }

  .workforce-photo {
    min-height: auto;
    background-position: center;
  }

  .workforce-photo__inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 240px 24px 45px;
    gap: 20px;
  }

  .workforce-metric {
    width: 100%;
    min-height: auto;
    padding: 24px 20px;
    gap: 18px;
  }

  .workforce-metric strong {
    font-size: 42px;
  }

  /* ---------- REGIONAL ---------- */

  .regional-map-top {
    min-height: auto;
  }

  .regional-map-inner {
    display: flex;
    flex-direction: column;
    padding: 36px 24px 55px;
    gap: 30px;
    min-height: auto;
  }

  .regional-map-title,
  .regional-map-image,
  .regional-map-cards {
    position: static;
    width: 100%;
  }

  .regional-map-title h2 {
    font-size: 52px;
  }

  .regional-map-image {
    max-width: 100%;
  }

  .regional-map-cards {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .regional-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .regional-card h3 {
    font-size: 34px;
  }

  .regional-card p,
  .regional-card strong {
    font-size: 17px;
  }

  /* ---------- FOOTER ---------- */

  .site-footer__inner {
    padding: 40px 24px;
  }

  .site-footer__info {
    flex-direction: column;
    gap: 16px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-footer__powered {
    flex-wrap: wrap;
  }
}

.sgrda-hero-main {
  position: relative;
}

.sgrda-page-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 82, 121, 0.57);
  z-index: 2;
}

.sgrda-page-title h1 {
  margin: 0;
  color: #fff;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
  font-size: 99.292px;
  font-weight: 600;
  line-height: 1;
  padding-left: 320px;
}

@media (max-width: 1680px) {
  .sgrda-page-title h1 {
    font-size: 72px;
  }
}

@media (max-width: 1480px) {
  .sgrda-page-title h1 {
    font-size: 52px;
  }
}

@media (max-width: 1300px) {
  .sgrda-page-title h1 {
    font-size: 42px;
  }
}

.industry-intro__inner-com {
  grid-template-columns: 1fr;
  min-height: 282px;
}

.county-sections {
  width: 100%;
  background: #fff;
  font-family: 'aktiv-grotesk', 'Aktiv Grotesk', Arial, sans-serif;
}

.county-block {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}

.county-block__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.county-block__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* CARD */
.county-card {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 735px;
  min-height: 560px;
  padding: 58px 50px 48px;
  background: #fff;
}

.county-block--photo-left .county-block__media {
  grid-column: 1;
  grid-row: 1;
  border-radius: 0 0 70px 0;
}

.county-block--photo-left .county-card {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  margin-left: -90px;
  border-radius: 22px 0 0 22px;
}

.county-block--photo-right .county-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-right: -160px;
  border-radius: 0 22px 22px 0;
}

.county-block--photo-right .county-block__media {
  grid-column: 2;
  grid-row: 1;
  border-radius: 70px 0 0 70px;
}

/* MAP + TITLE */
.county-card__head {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 34px;
}

.county-card__maps {
  position: relative;
  width: 355px;
  min-width: 355px;
  height: 124px;
}

.county-card__map {
  position: absolute;
  top: 0;
  height: 114px;
  border: 2px solid #b8b8b8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.county-card__map--small {
  left: 0;
  width: 124px;
  z-index: 1;
}

.county-card__map--small img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.county-card__map--large {
  left: 148px;
  width: 185px;
  z-index: 2;
  overflow: visible;
}

.county-card__map--large img {
  width: 155px;
  height: 155px;
  object-fit: contain;
}

.county-card h2 {
  margin: 0;
  font-size: 55px;
  line-height: 0.92;
  font-weight: 300;
}

.county-card h2 strong,
.county-card h2 span {
  display: block;
}

.county-card h2 strong {
  font-weight: 700;
}

.county-card h2 span {
  font-weight: 300;
}

.county-card p {
  margin: 0;
  color: #000;
  font-size: 22px;
  line-height: 1.48;
  font-weight: 400;
}

.county-card__btn {
  margin-top: 24px;
  min-width: 230px;
  height: 38px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

/* COLORS */
.county-block--green .county-card h2,
.county-block--green .county-card h2 strong,
.county-block--green .county-card h2 span {
  color: #76b719;
}

.county-block--green .county-card__btn {
  background: #76b719;
}

.county-block--blue .county-card h2,
.county-block--blue .county-card h2 strong,
.county-block--blue .county-card h2 span {
  color: #005a78;
}

.county-block--blue .county-card__btn {
  background: #005a78;
}

.county-block {
  overflow: hidden;
  margin: 0 0 30px;
}

.county-block--photo-left .county-block__media {
  grid-column: 1;
  grid-row: 1;
  width: calc(100% + 170px);
  margin-left: 0;
  border-radius: 0 0 70px 0;
  z-index: 1;
}

.county-block--photo-left .county-card {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  margin-left: -90px;
  border-radius: 22px 0 0 22px;
  z-index: 3;
}

.county-block--photo-right .county-block__media {
  grid-column: 2;
  grid-row: 1;
  width: calc(100% + 170px);
  margin-left: -170px;
  border-radius: 70px 0 0 70px;
  z-index: 1;
}

.county-block--photo-right .county-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  margin-right: -90px;
  border-radius: 0 22px 22px 0;
  z-index: 3;
}

/* TABLET */
@media (max-width: 1200px) {
  .county-block {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .county-block__media {
    order: 1;
    min-height: 420px;
    border-radius: 0 !important;
  }

  .county-card {
    order: 2;
    width: calc(100% - 60px);
    min-height: auto;
    margin: -80px auto 60px !important;
    padding: 46px 44px 42px;
    border-radius: 22px !important;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .county-block__media {
    min-height: 300px;
  }

  .county-card {
    width: calc(100% - 32px);
    margin: -50px auto 45px !important;
    padding: 32px 24px 30px;
  }

  .county-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .county-card__maps {
    width: 100%;
    min-width: 0;
    height: 105px;
  }

  .county-card__map {
    height: 105px;
  }

  .county-card__map--small {
    width: 105px;
  }

  .county-card__map--large {
    left: 125px;
    width: 150px;
  }

  .county-card__map--small img {
    width: 68px;
    height: 68px;
  }

  .county-card__map--large img {
    width: 140px;
    height: 140px;
  }

  .county-card h2 {
    font-size: 44px;
  }

  .county-card p {
    font-size: 17px;
    line-height: 1.5;
  }

  .county-card__btn {
    min-width: 190px;
    font-size: 16px;
  }
}

.industry-intro__left a {
  color: #fff;
}

.county-sections {
  position: relative;
  overflow: hidden;
}

.county-block {
  position: relative;
  overflow: visible;
}

.county-block::before,
.county-block::after {
  content: none;
}

.county-block .county-block__stripe {
  display: none;
}

.county-block:nth-child(1)::after,
.county-block:nth-child(5)::after,
.county-block:nth-child(7)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 40px;
  width: 53px;
  height: calc(200% - 120px);
  background: rgba(104, 154, 15, 0.75);
  border-radius: 50px 0 0 50px;
  z-index: 20;
  pointer-events: none;
}

.county-block:nth-child(3)::before,
.county-block:nth-child(6)::before,
.county-block:nth-child(8)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  width: 53px;
  height: calc(200% - 120px);
  background: rgba(17, 121, 173, 0.6);
  border-radius: 0 50px 50px 0;
  z-index: 20;
  pointer-events: none;
}

.county-card {
  position: relative;
  z-index: 30;
}

.county-block__media {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .county-block::before,
  .county-block::after {
    display: none !important;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero title */
.sgrda-page-title h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroTitleIn 0.9s ease forwards;
  animation-delay: 0.25s;
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.county-block__media img {
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.county-block:hover .county-block__media img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.county-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.county-block:hover .county-card {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.county-card__btn,
.sgrda-overview {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.county-card__btn:hover,
.sgrda-overview:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.sgrda-county-menu a {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    padding-left 0.25s ease;
}

.sgrda-county-menu a img {
  transition: transform 0.25s ease;
}

.sgrda-county-menu a:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.sgrda-county-menu a:hover img {
  transform: translateX(4px) scale(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.source {
  text-align: center;
}

.source small {
  font-weight: 600;
}

.industry-stat {
  margin-bottom: 15px;
}
