/* Home Run Taxes — About Us page | standalone or WordPress Custom HTML */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600;700;800&display=swap");

.hrt-site {
  --hrt-navy: #112457;
  --hrt-navy-dark: #0c1739;
  --hrt-red: #ba203c;
  --hrt-red-dark: #a41732;
  --hrt-white: #fff;
  --hrt-offwhite: #f7f8fa;
  --hrt-pale: #eef1f7;
  --hrt-ink: #14203b;
  --hrt-muted: #637087;
  --hrt-line: #dce2ec;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--hrt-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}
.hrt-site *,
.hrt-site *::before,
.hrt-site *::after {
  box-sizing: border-box;
}
.hrt-site a {
  text-decoration: none;
}
.hrt-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 36px;
}
.hrt-utility {
  background: var(--hrt-navy-dark);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.045em;
}
.hrt-utility-inner {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hrt-utility-inner > span {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.hrt-utility-inner > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
.hrt-utility a {
  color: #fff;
}
.hrt-header {
  background: #fff;
  border-bottom: 1px solid var(--hrt-line);
}
.hrt-header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hrt-logo {
  display: inline-flex;
  flex-direction: column;
  color: var(--hrt-navy);
}
.hrt-logo-name {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.025em;
}
.hrt-logo-name > span {
  margin-left: 8px;
  color: var(--hrt-red);
}
.hrt-logo-caption {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 5px;
}
.hrt-navigation {
  display: flex;
  align-items: center;
  gap: 31px;
}
.hrt-navigation a {
  font-size: 13px;
  color: var(--hrt-navy);
  font-weight: 600;
}
.hrt-navigation a:hover,
.hrt-navigation-active {
  color: var(--hrt-red) !important;
}
.hrt-navigation-active {
  position: relative;
}
.hrt-navigation-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--hrt-red);
}
.hrt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.hrt-button-red {
  background: var(--hrt-red);
  color: #fff;
}
.hrt-button-red:hover {
  background: var(--hrt-red-dark);
}
.hrt-button-white {
  background: #fff;
  color: var(--hrt-navy);
}
.hrt-button-white:hover {
  background: #edf0f6;
}
.hrt-button-outline {
  border-color: #ffffffa6;
  color: #fff;
}
.hrt-button-outline:hover {
  background: #ffffff18;
}
.hrt-eyebrow {
  margin: 0 0 19px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hrt-red);
}
.hrt-eyebrow-white {
  color: #fff;
}
.hrt-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 31px;
}
.hrt-section {
  padding: 100px 0;
}

.hrt-about-hero {
  position: relative;
  background: linear-gradient(122deg, #bd243f 0%, #ad1935 73%, #90132c 100%);
  color: #fff;
  padding: 91px 0 107px;
}
.hrt-about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--hrt-navy) 0%,
    var(--hrt-navy) 71%,
    #fff 71%,
    #fff 72%,
    var(--hrt-red-dark) 72%
  );
}
.hrt-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 87px;
  align-items: center;
}
.hrt-about-hero h1,
.hrt-final-cta h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(70px, 8vw, 106px);
  font-weight: 700;
  line-height: 0.89;
  letter-spacing: -0.015em;
  margin: 0;
}
.hrt-about-hero h1 > span {
  display: block;
  margin-top: 9px;
  font-size: 0.65em;
  line-height: 1.03;
  color: #f3bac4;
}
.hrt-hero-lead {
  max-width: 655px;
  font-size: 16px;
  line-height: 1.85;
  color: #fff;
  margin: 26px 0 14px;
}
.hrt-hero-promise {
  font-size: 14px;
  line-height: 1.8;
  color: #f3d6dc;
}
.hrt-hero-promise strong {
  color: #fff;
}
.hrt-team-card {
  background: #fff;
  padding: 26px;
  color: var(--hrt-navy);
  box-shadow: 0 22px 65px #52102042;
  border-radius: 5px;
}
.hrt-team-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hrt-line);
  font-size: 9px;
  letter-spacing: 0.055em;
}
.hrt-team-card-heading strong {
  color: var(--hrt-red);
}
.hrt-team-card-main {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--hrt-line);
}
.hrt-team-card-main > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  color: var(--hrt-red);
  font-weight: 700;
}
.hrt-team-card-main > strong {
  display: block;
  margin-top: 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 64px;
  line-height: 0.91;
  color: var(--hrt-navy);
}
.hrt-team-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hrt-line);
}
.hrt-team-card-stats > div > strong,
.hrt-team-card-stats > div > span {
  display: block;
}
.hrt-team-card-stats > div > strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  line-height: 1;
  color: var(--hrt-red);
}
.hrt-team-card-stats > div > span {
  margin-top: 6px;
  font-size: 8px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--hrt-muted);
}
.hrt-team-card > p {
  text-align: center;
  margin: 16px 0 0;
  font-size: 9px;
  font-weight: 700;
}

.hrt-proof {
  background: var(--hrt-navy-dark);
  color: #fff;
}
.hrt-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 27px;
  padding-bottom: 27px;
}
.hrt-proof-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  border-right: 1px solid #ffffff29;
}
.hrt-proof-grid > div:first-child {
  padding-left: 0;
}
.hrt-proof-grid > div:last-child {
  border: 0;
}
.hrt-proof-grid strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
  color: #f1a8b4;
}
.hrt-proof-grid span {
  max-width: 150px;
  font-size: 10px;
  color: #d5dced;
  line-height: 1.5;
}

.hrt-story-grid,
.hrt-approach-grid,
.hrt-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 93px;
  align-items: center;
}
.hrt-story-grid h2,
.hrt-section-heading h2,
.hrt-approach-grid h2,
.hrt-promise-grid h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(54px, 6vw, 77px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--hrt-navy);
  margin: 0;
}
.hrt-story-grid h2 > span,
.hrt-section-heading h2 > span,
.hrt-approach-grid h2 > span,
.hrt-promise-grid h2 > span {
  color: var(--hrt-red);
}
.hrt-story-grid > div:last-child > p,
.hrt-approach-grid > div:first-child > p:not(.hrt-eyebrow),
.hrt-promise-grid > div:last-child > p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--hrt-muted);
}
.hrt-story-grid > div:last-child > p strong {
  color: var(--hrt-navy);
}
.hrt-story-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 29px;
  padding-left: 15px;
  border-left: 3px solid var(--hrt-red);
}
.hrt-story-mark > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--hrt-navy);
  font-weight: 800;
}
.hrt-story-mark > strong {
  font-size: 11px;
  color: var(--hrt-muted);
}
.hrt-quote-card {
  padding: 15px 17px;
  background: var(--hrt-offwhite);
  border-left: 3px solid var(--hrt-red);
  font-size: 12px;
  line-height: 1.75;
  color: var(--hrt-muted);
}
.hrt-quote-card strong {
  color: var(--hrt-navy);
}

.hrt-credentials-section {
  background: var(--hrt-offwhite);
}
.hrt-section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}
.hrt-section-heading > p:not(.hrt-eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--hrt-muted);
}
.hrt-credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hrt-credential-grid > article {
  position: relative;
  min-height: 252px;
  padding: 23px 21px;
  background: #fff;
  border: 1px solid var(--hrt-line);
}
.hrt-credential-number {
  position: absolute;
  right: 16px;
  top: 17px;
  font-size: 9px;
  font-weight: 700;
  color: var(--hrt-muted);
}
.hrt-credential-grid > article > strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 43px;
  line-height: 1;
  color: var(--hrt-red);
}
.hrt-credential-grid > article > h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  line-height: 1.1;
  color: var(--hrt-navy);
  margin: 25px 0 11px;
}
.hrt-credential-grid > article > p {
  font-size: 11px;
  line-height: 1.85;
  color: var(--hrt-muted);
  margin: 0;
}

.hrt-meaning-section {
  background: var(--hrt-navy-dark);
  color: #fff;
}
.hrt-meaning-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 95px;
  align-items: center;
}
.hrt-meaning-grid h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(57px, 6vw, 79px);
  line-height: 0.98;
  margin: 0;
  color: #fff;
}
.hrt-meaning-grid h2 > span {
  color: #f0a8b3;
}
.hrt-meaning-grid > div > p:not(.hrt-eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: #d6ddec;
}
.hrt-meaning-grid > div > .hrt-button {
  margin-top: 14px;
}
.hrt-professional-card {
  background: #fff;
  padding: 26px;
  color: var(--hrt-navy);
}
.hrt-professional-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hrt-line);
}
.hrt-professional-card > div > span {
  width: 35px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--hrt-red);
}
.hrt-professional-card > div > strong {
  font-size: 12px;
  line-height: 1.55;
}
.hrt-professional-card > p {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--hrt-navy);
  margin: 19px 0 0;
}

.hrt-approach-list > article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 19px 0;
  border-bottom: 1px solid var(--hrt-line);
}
.hrt-approach-list > article:first-child {
  border-top: 1px solid var(--hrt-line);
}
.hrt-approach-list > article > span {
  width: 42px;
  flex: 0 0 42px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--hrt-red);
}
.hrt-approach-list > article > div > strong {
  font-size: 13px;
  color: var(--hrt-navy);
}
.hrt-approach-list > article > div > p {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--hrt-muted);
}

.hrt-bookkeeping-section {
  background: var(--hrt-pale);
}
.hrt-bookkeeping-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hrt-bookkeeping-grid > article {
  padding: 25px 22px;
  background: #fff;
  border: 1px solid var(--hrt-line);
  border-top: 4px solid var(--hrt-navy);
}
.hrt-bookkeeping-grid > article > span {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: var(--hrt-red);
}
.hrt-bookkeeping-grid > article > h3 {
  margin: 20px 0 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 27px;
  line-height: 1.05;
  color: var(--hrt-navy);
}
.hrt-bookkeeping-grid > article > p {
  margin: 0;
  font-size: 11px;
  line-height: 1.85;
  color: var(--hrt-muted);
}
.hrt-bookkeeping-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 25px;
  padding: 22px 24px;
  background: #fff;
  border-left: 4px solid var(--hrt-red);
}
.hrt-bookkeeping-callout > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hrt-bookkeeping-callout strong {
  font-size: 14px;
  color: var(--hrt-navy);
}
.hrt-bookkeeping-callout span {
  font-size: 11px;
  color: var(--hrt-muted);
}
.hrt-bookkeeping-callout .hrt-button {
  flex: 0 0 auto;
}

.hrt-community-section {
  background: var(--hrt-offwhite);
}
.hrt-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hrt-community-grid > article {
  padding: 25px 22px;
  background: #fff;
  border: 1px solid var(--hrt-line);
}
.hrt-community-grid > article > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hrt-red);
}
.hrt-community-grid > article > h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 32px;
  color: var(--hrt-navy);
  line-height: 1.1;
  margin: 15px 0 12px;
}
.hrt-community-grid > article > h3 > em {
  font-style: normal;
  font-size: 0.76em;
  color: var(--hrt-red);
}
.hrt-community-grid > article > p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--hrt-muted);
}
.hrt-community-grid > article > a {
  display: inline-flex;
  gap: 6px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--hrt-red);
}
.hrt-community-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 29px;
  padding: 21px 22px;
  background: var(--hrt-navy);
  color: #fff;
}
.hrt-community-bar > div {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hrt-community-bar > div > strong {
  font-size: 9px;
  letter-spacing: 0.09em;
}
.hrt-community-bar > div > span {
  font-size: 10px;
  color: #d6ddec;
}
.hrt-community-bar > p {
  font-size: 10px;
  margin: 0;
  color: #d6ddec;
}
.hrt-community-bar > p > strong {
  color: #fff;
}

.hrt-promise-grid h2 {
  font-size: clamp(50px, 5.7vw, 72px);
}
.hrt-promise-callout {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px;
  background: var(--hrt-offwhite);
  border-left: 3px solid var(--hrt-red);
}
.hrt-promise-callout > strong {
  font-size: 14px;
  color: var(--hrt-navy);
}
.hrt-promise-callout > span {
  font-size: 11px;
  color: var(--hrt-muted);
}

.hrt-final-cta {
  text-align: center;
  background: var(--hrt-red);
  color: #fff;
  padding: 99px 0;
}
.hrt-final-cta h2 {
  font-size: clamp(62px, 7vw, 92px);
}
.hrt-final-cta h2 > span {
  color: #f3bac4;
}
.hrt-final-cta > .hrt-container > p:not(.hrt-eyebrow) {
  font-size: 14px;
  color: #f5d7dd;
}
.hrt-actions-center {
  justify-content: center;
}
.hrt-contact-line {
  margin-top: 32px !important;
  font-size: 12px !important;
}
.hrt-contact-line a {
  color: #fff;
  font-weight: 700;
}
.hrt-footer {
  background: var(--hrt-navy-dark);
  color: #fff;
  padding: 73px 0 22px;
}
.hrt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 80px;
}
.hrt-logo-footer {
  color: #fff;
}
.hrt-logo-footer .hrt-logo-name > span {
  color: #f0a8b3;
}
.hrt-footer-grid > div:first-child > p {
  max-width: 405px;
  color: #c7cfdf;
  font-size: 12px;
  line-height: 1.8;
}
.hrt-footer-grid h3 {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 17px;
}
.hrt-footer-grid > div:nth-child(2) > a,
.hrt-footer-grid > div:nth-child(3) > a {
  display: block;
  color: #c7cfdf;
  font-size: 12px;
  line-height: 2;
}
.hrt-footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #ffffff25;
  color: #bbc4d5;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .hrt-navigation {
    gap: 18px;
  }
  .hrt-navigation a {
    font-size: 11px;
  }
  .hrt-hero-grid {
    gap: 46px;
  }
  .hrt-about-hero h1 {
    font-size: 84px;
  }
  .hrt-team-card-main > strong {
    font-size: 56px;
  }
  .hrt-story-grid,
  .hrt-meaning-grid,
  .hrt-approach-grid,
  .hrt-promise-grid {
    gap: 53px;
  }
  .hrt-credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hrt-bookkeeping-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hrt-credential-grid > article {
    min-height: 210px;
  }
  .hrt-community-grid {
    gap: 13px;
  }
  .hrt-community-grid > article {
    padding: 21px 15px;
  }
  .hrt-community-grid > article > h3 {
    font-size: 27px;
  }
  .hrt-community-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .hrt-proof-grid > div {
    padding: 0 11px;
  }
}

@media (max-width: 760px) {
  .hrt-container {
    padding: 0 20px;
  }
  .hrt-utility-inner {
    height: auto;
    min-height: 41px;
    gap: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .hrt-utility-inner > span {
    font-size: 8px;
  }
  .hrt-utility-inner > div > a:last-child,
  .hrt-utility-inner > div > span {
    display: none;
  }
  .hrt-header-inner {
    min-height: 76px;
    gap: 12px;
  }
  .hrt-logo-name {
    font-size: 25px;
  }
  .hrt-logo-caption {
    font-size: 8px;
  }
  .hrt-navigation {
    display: none;
  }
  .hrt-header-button {
    font-size: 10px;
    padding: 12px;
  }
  .hrt-about-hero {
    padding: 73px 0 88px;
  }
  .hrt-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hrt-about-hero h1 {
    font-size: 75px;
  }
  .hrt-hero-lead {
    font-size: 15px;
  }
  .hrt-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hrt-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hrt-proof-grid > div:nth-child(2) {
    border: 0;
  }
  .hrt-proof-grid > div:nth-child(3) {
    padding-left: 0;
  }
  .hrt-proof-grid strong {
    font-size: 30px;
  }
  .hrt-section {
    padding: 72px 0;
  }
  .hrt-story-grid,
  .hrt-meaning-grid,
  .hrt-approach-grid,
  .hrt-promise-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .hrt-story-grid h2,
  .hrt-section-heading h2,
  .hrt-approach-grid h2,
  .hrt-promise-grid h2,
  .hrt-meaning-grid h2 {
    font-size: 57px;
  }
  .hrt-section-heading {
    margin-bottom: 32px;
  }
  .hrt-credential-grid {
    grid-template-columns: 1fr;
  }
  .hrt-bookkeeping-grid {
    grid-template-columns: 1fr;
  }
  .hrt-bookkeeping-callout {
    align-items: stretch;
    flex-direction: column;
  }
  .hrt-credential-grid > article {
    min-height: auto;
    padding-bottom: 25px;
  }
  .hrt-community-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .hrt-community-grid > article > h3 {
    font-size: 32px;
  }
  .hrt-community-bar > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hrt-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hrt-footer-bottom {
    display: block;
  }
  .hrt-footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
  .hrt-final-cta {
    padding: 76px 0;
  }
  .hrt-final-cta h2 {
    font-size: 60px;
  }
}

@media (max-width: 420px) {
  .hrt-about-hero h1 {
    font-size: 64px;
  }
  .hrt-team-card {
    padding: 19px;
  }
  .hrt-team-card-main > strong {
    font-size: 54px;
  }
  .hrt-utility-inner > span {
    max-width: 180px;
  }
  .hrt-logo-name {
    font-size: 21px;
  }
  .hrt-header-button {
    padding: 10px 8px;
    font-size: 9px;
  }
  .hrt-story-grid h2,
  .hrt-section-heading h2,
  .hrt-approach-grid h2,
  .hrt-promise-grid h2,
  .hrt-meaning-grid h2 {
    font-size: 48px;
  }
  .hrt-final-cta h2 {
    font-size: 49px;
  }
  .hrt-professional-card {
    padding: 19px;
  }
}
