:root {
  /* can define custom colors here */
  --core-blue: #004ea8;
  --core-blue-light: #3874bb;
  --core-red: #c8102e;
  --core-red-light: hsl(350, 85%, 38%);
  --core-grey: #58595b;

  --nav-pos: fixed; /* sitcky or relative */
  --nav-bg: var(--core-blue);
  --nav-logo-height: 60px; /* may need to adjust to size logo correctly in nav */
  --nav-link: #fff;
  --nav-link-hover: #ddd;
  --nav-link-active: #fff;
  --nav-hamburger: #fff; /* fix for hamburger menu icon on mobile */
  --nav-mobile-bg: transparent;
  --nav-caret-clr: #fff;
  --nav-caret-size: 4px;
  --nav-dropdown-bg: #fff;

  --footer-bg: var(--core-grey);
  --footer-text: #fff;
  --footer-logo-height: 50px; /* may need to adjust to size logo correctly in footer */
  --footer-link: #fff;
  --footer-link-hover: #ddd;

  --btn-color: #e2e6ea;
  --btn-text: var(--core-blue);
  --btn-hover: #ddd;
  --btn-text-hover: var(--core-blue);

  --shadow: rgba(37, 38, 39, 0.03) 0px -2px 5px 0px,
    rgba(37, 38, 39, 0.04) 0px 1px 1px -2px,
    rgba(37, 38, 39, 0.04) 0px 2px 2px -2px,
    rgba(37, 38, 39, 0.05) 0px 5px 5px -2px,
    rgba(37, 38, 39, 0.06) 0px 9px 9px -2px,
    rgba(37, 38, 39, 0.07) 0px 16px 16px -2px;
}

.t4-content {
  background-color: #f3f3f3;
}

#t4-masthead,
#t4-main-body,
#t4-bottom {
  width: var(--content-width, 100%);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

#t4-masthead {
  padding-bottom: 1rem;
}

#t4-main-body {
  flex-grow: 1;
  padding-bottom: 0;
}

body,
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

h2 {
  color: var(--core-blue);
  font-weight: 400;
}

:target {
  scroll-margin-top: 130px;
}

.t4-content-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.jrb-button {
  margin: 0 0.25em 0 0;
  padding: 0.75em 1.5em;
  border-radius: 0.25em;
  background-color: var(--btn-color);
  color: var(--btn-text);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  vertical-align: baseline;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.jrb-button[data-style~="red"] {
  --btn-color: var(--core-red);
  --btn-text: #fff;
  --btn-hover: var(--core-red-light);
  --btn-text-hover: #fff;
}

.jrb-button[data-style~="blue"] {
  --btn-color: var(--core-blue);
  --btn-text: #fff;
  --btn-hover: var(--core-blue-light);
  --btn-text-hover: #fff;
}

.jrb-button:hover,
.jrb-button:focus-visible {
  background-color: var(--btn-hover);
  color: var(--btn-text-hover);
}

.jrb-button[href^="tel:"] {
  display: inline-block;
  min-width: 9rem;
  text-align: center;
}

.jrb-container {
  max-width: 1320px;
  margin: 0 auto;
}

.jrb-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.jrb-col-25 {
  flex-basis: calc(25% - 0.5rem);
}

.jrb-col-30 {
  flex-basis: calc(30% - 0.5rem);
}

.jrb-col-33 {
  flex-basis: calc(33% - 0.5rem);
}

.jrb-col-40 {
  flex-basis: calc(40% - 0.5rem);
}

.jrb-col-50 {
  flex-basis: calc(50% - 0.5rem);
}

.jrb-col-60 {
  flex-basis: calc(60% - 0.5rem);
}

.jrb-col-70 {
  flex-basis: calc(70% - 0.5rem);
}

.jrb-col-75 {
  flex-basis: calc(75% - 0.5rem);
}

.jrb-col-100 {
  flex-basis: calc(100% - 0.5rem);
}

@media screen and (max-width: 991px) {
  .jrb-columns {
    flex-direction: column;
  }

  .jrb-columns[data-reverse] {
    flex-direction: column-reverse;
  }

  .jrb-columns > * {
    flex-basis: 100%;
  }
}

/*================
Nav Styles
=================*/

#t4-header {
  position: var(--nav-pos);
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: var(--nav-bg);
  transition: box-shadow, background-color 100ms ease-in-out;
}

:where(body.item-101) #t4-header {
  background-color: transparent;
}

#t4-main-body {
  padding-top: 148px;
}

#t4-header .header-wrap {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* sticky nav shadow on scroll */
#t4-header.jrb-scroll {
  box-shadow: rgba(37, 38, 39, 0.03) 0px -1px 2px 0px,
    rgba(37, 38, 39, 0.04) 0px 2px 1px -2px,
    rgba(37, 38, 39, 0.04) 0px 5px 5px -2px,
    rgba(37, 38, 39, 0.05) 0px 10px 10px -2px,
    rgba(37, 38, 39, 0.06) 0px 20px 20px -2px,
    rgba(37, 38, 39, 0.08) 0px 40px 40px -2px;
  background-color: var(--core-blue);
}

.navbar-brand {
  z-index: 100;
}

.logo-img {
  width: auto;
  height: var(--nav-logo-height);
}

.t4-navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t4-navbar.mx-auto {
  margin-right: 0 !important;
}

.jrb-nav-right {
  position: relative;
}

.t4-navbar ul.nav > li a.nav-link,
.jrb-menu-content .menu-side a {
  position: relative;
  color: var(--nav-link) !important;
  font-size: 1.1rem;
  font-weight: 300;
}

.t4-navbar ul.nav > li.active a.nav-link {
  color: var(--nav-link-active) !important;
  font-weight: 700;
}

.t4-navbar ul.nav > li a.nav-link:hover,
.jrb-menu-content .menu-side a:hover {
  color: var(--nav-link-hover) !important;
}

#t4-megamenu-mainmenu {
  position: fixed;
  inset: 0;
  align-items: unset;
  padding: 10rem 1rem 1rem 1rem;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 500ms ease-in-out;
  pointer-events: none;
}

#t4-megamenu-mainmenu[data-state="open"] {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: unset;
}

#t4-megamenu-mainmenu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--core-blue);
  opacity: 0.9;
}

#t4-megamenu-mainmenu .item-caret {
  border-top: var(--nav-caret-size) solid var(--nav-caret-clr);
  border-left: var(--nav-caret-size) solid transparent;
  border-right: var(--nav-caret-size) solid transparent;
}

.jrb-menu-content {
  flex-grow: 1;
  display: grid;
  grid-template-areas: "main", "side";
  grid-template-columns: 2fr 1fr;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.jrb-menu-content > ul {
  --fs: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  flex-direction: column !important;
}

.jrb-menu-content > ul a {
  font-size: var(--fs) !important;
}

.jrb-menu-content .menu-side {
  --fs: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jrb-menu-content .menu-side__heading {
  margin: 0;
  color: #fff;
  font-size: var(--fs);
  font-weight: 700;
}

.jrb-menu-content .menu-side a {
  font-size: var(--fs);
}

#t4-megamenu-mainmenu[data-state="open"] ul.nav > li,
#t4-megamenu-mainmenu[data-state="open"] .menu-side li {
  opacity: 0;
  transform: translateY(-100%);
  animation: fallIn 100ms linear forwards;
}

#t4-megamenu-mainmenu .dropdown-menu {
  z-index: -1;
  background-color: var(--nav-dropdown-bg);
}

#t4-megamenu-mainmenu .dropdown-menu .dropdown-item {
  color: var(--nav-link);
}

#t4-megamenu-mainmenu .dropdown-menu .nav-item.active > .dropdown-item {
  color: var(--nav-link-active);
}

#t4-megamenu-mainmenu .dropdown-menu .dropdown-item:hover {
  color: var(--nav-link-hover);
}

#back-to-top:hover,
#back-to-top:active,
#back-to-top:focus {
  background-color: var(--core-blue);
}

@media screen and (max-width: 991px) {
  #t4-header .header-wrap {
    padding-inline: 0;
  }

  :where(#t4-megamenu-mainmenu.show) #t4-header {
    background-color: var(--nav-bg);
  }

  #t4-megamenu-mainmenu {
    padding-top: 6rem;
    border: none;
    background-color: var(--nav-mobile-bg);
  }

  #t4-megamenu-mainmenu::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--core-blue);
  }

  .jrb-nav-right {
    display: none;
  }

  .jrb-menu-content .menu-side {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .jrb-menu-content {
    grid-template-columns: none;
    grid-auto-flow: row;
    gap: 3rem;
  }
}

@media screen and (min-width: 576px) {
  #t4-header header > div {
    max-width: 540px;
  }
}

@media screen and (min-width: 768px) {
  #t4-header header > div {
    max-width: 720px;
  }
}

@media screen and (min-width: 992px) {
  #t4-header header > div {
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  #t4-header header > div {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1400px) {
  #t4-header header > div {
    max-width: 1320px;
  }
}

@keyframes fallIn {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collapse:not(.show) {
  display: unset;
  max-height: unset;
}

/*================
Toggler
=================*/

.jrb-toggle {
  position: relative;
  z-index: 100;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.jrb-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.jrb-toggle .hamburger span {
  display: block;
  width: 2.25rem;
  height: 3px;
  background-color: #fff;
}

.jrb-toggle[data-state="closed"][data-animated~="line"] .hamburger span {
  transform: scaleX(1);
}

.jrb-toggle[data-state="open"][data-animated~="line"] .hamburger span,
.jrb-toggle[data-state="closed"]:not([data-animated~="line"]) .hamburger span {
  transform: scaleX(0);
}

.jrb-toggle[data-state="open"][data-animating~="line"] .hamburger span {
  animation: slide 200ms ease forwards;
}

.jrb-toggle[data-state="open"][data-animating~="line"]
  .hamburger
  span:nth-child(2) {
  animation-delay: 50ms;
}

.jrb-toggle[data-state="open"][data-animating~="line"]
  .hamburger
  span:first-child {
  transform-origin: left;
  animation-delay: 100ms;
}

.jrb-toggle[data-state="closed"][data-animating~="line"] .hamburger span {
  animation: slideOut 200ms ease forwards;
}

.jrb-toggle[data-state="closed"][data-animating~="line"]
  .hamburger
  span:first-child {
  transform-origin: left;
}

.jrb-toggle[data-state="closed"][data-animating~="line"]
  .hamburger
  span:nth-child(2) {
  animation-delay: 50ms;
}

.jrb-toggle[data-state="closed"][data-animating~="line"]
  .hamburger
  span:last-child {
  animation-delay: 100ms;
}

.jrb-toggle .close {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
}

.jrb-toggle .close-circle {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

.jrb-toggle[data-state="closed"][data-animated~="circle"] .close-circle {
  stroke-dashoffset: 80;
}

.jrb-toggle[data-state="open"][data-animated~="circle"] .close-circle,
.jrb-toggle[data-state="closed"]:not([data-animated~="circle"]) .close-circle {
  stroke-dashoffset: 0;
}

.jrb-toggle[data-state="open"][data-animating~="circle"] .close-circle {
  animation: dash 200ms linear forwards;
}

.jrb-toggle[data-state="closed"][data-animating~="circle"] .close-circle {
  animation: circleOut 200ms linear forwards;
}

.jrb-toggle .close-head {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.jrb-toggle[data-state="closed"][data-animated~="head"] .close-head {
  stroke-dashoffset: 20;
}

.jrb-toggle[data-state="open"][data-animated~="head"] .close-head,
.jrb-toggle[data-state="closed"]:not([data-animated~="head"]) .close-head {
  stroke-dashoffset: 0;
}

.jrb-toggle[data-state="open"][data-animating~="head"] .close-head {
  animation: dash 100ms linear forwards;
}

.jrb-toggle[data-state="closed"][data-animating~="head"] .close-head {
  animation: headOut 100ms linear forwards;
}

@keyframes slide {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@keyframes slideOut {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes circleOut {
  to {
    stroke-dashoffset: 80;
  }
}

@keyframes headOut {
  to {
    stroke-dashoffset: 20;
  }
}

/*================
Footer
=================*/

#t4-footer {
  position: relative;
  margin-top: auto;
  padding-top: 1.5rem;
  background-color: var(--footer-bg);
  color: var(--footer-text);
}

.footer-logo {
  height: var(--footer-logo-height);
}

#t4-footer a {
  padding: 0.5rem 0;
  color: var(--footer-link);
}

#t4-footer a:hover,
#t4-footer a:focus {
  color: var(--footer-link-hover);
}

#t4-footer footer > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#t4-footer .footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1rem;
}

#t4-footer .footer-columns p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

#t4-footer > .t4-section-inner {
  padding-bottom: 0;
}

#t4-footer footer > div > div:last-child {
  margin-left: auto;
  margin-right: 0;
  font-size: 0.8rem;
}

@media screen and (max-width: 991px) {
  #t4-footer .footer-columns {
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
  }

  #t4-footer .footer-columns > div:first-child {
    flex-basis: 100%;
  }

  #t4-footer .footer-columns > div:last-child {
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/*================
Form Styles
=================*/

.jrb-form form > div[data-vtype="area_container"] {
  display: flex;
  gap: 1rem;
}

.jrb-form form > div[data-vtype="area_container"] > div {
  flex: 1 1 0;
}
.jrb-form h3 {
  display: none;
}

.jrb-form label {
  font-family: "Montserrat", sans-serif;
}

.jrb-form button.ui.button {
  padding: 0.75em 1.5em;
  border-radius: 0.25em;
  background-color: var(--btn-color);
  color: var(--btn-text);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.jrb-form button.ui.button:hover,
.jrb-form button.ui.button:focus {
  background-color: var(--btn-hover);
  color: var(--btn-text-hover);
}

/*================
Homepage Styles
=================*/

.cor-checklist {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.cor-checklist[data-timeline] > div:first-child {
  padding-left: 4rem;
  padding-right: 4rem;
}

.cor-checklist[data-timeline] video {
  width: 100%;
}

.cor-checklist ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  font-size: 1.5rem;
  list-style: none;
}

.cor-checklist:not([data-timeline]) ul {
  justify-content: unset;
  gap: 3rem;
  margin-top: 2rem;
}

.cor-checklist li {
  display: flex;
  color: var(--core-blue);
  line-height: 1;
  font-weight: 300;
}

.cor-checklist[data-timeline] li {
  font-size: 1.2rem;
}

.cor-checklist[data-timeline] li:not(:last-of-type) {
  position: relative;
}

.cor-checklist[data-timeline] li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  bottom: -0.6rem;
  left: 15px;
  width: 1px;
  background-color: var(--core-grey);
}

.cor-checklist li > img {
  height: 1.5rem;
  margin-right: 1.5rem;
  vertical-align: bottom;
}

.cor-checklist__num {
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-block-start: 0.125rem;
  margin-right: 1.5rem;
  background-size: 100%;
  background-repeat: no-repeat;
}

.cor-checklist li:nth-child(1) .cor-checklist__num {
  background-image: url("/images/icons/plan_1.png");
}
.cor-checklist li:nth-child(2) .cor-checklist__num {
  background-image: url("/images/icons/plan_2.png");
}
.cor-checklist li:nth-child(3) .cor-checklist__num {
  background-image: url("/images/icons/plan_3.png");
}
.cor-checklist li:nth-child(4) .cor-checklist__num {
  background-image: url("/images/icons/plan_4.png");
}

.cor-checklist li strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .cor-checklist ul {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .cor-checklist ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .cor-checklist:not([data-timeline]) ul {
    gap: 2rem;
  }

  .cor-checklist li {
    width: fit-content;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .cor-checklist > div:first-child {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.cor-homesplit-right {
  background-color: var(--core-blue-light);
  color: #fff;
  text-align: center;
}

.cor-homesplit-right .jrb-form {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .cor-homesplit-right .jrb-form {
    width: auto;
  }
}

.cor-homesplit-right .ui.form .inline.fields {
  justify-content: center;
}

.cor-homesplit-right .ui.error-msg {
  color: #fff !important;
  font-size: 0.8em !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.cor-homesplit-right label {
  color: #fff !important;
}

.cor-homesplit-right input[type="text"],
.cor-homesplit-right textarea {
  background-color: rgba(255, 255, 255, 46%) !important;
  color: #fff !important;
}

.cor-homesplit-right input[type="text"]::placeholder,
.cor-homesplit-right textarea::placeholder {
  color: var(--core-blue) !important;
}

.cor-homesplit-left {
  display: flex;
  background-color: var(--core-blue-light);
  color: #fff;
}

.cor-homesplit-left > div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cor-homesplit-left h3 {
  text-align: center;
}

.cor-homesplit-left p {
  max-width: 27ch;
  font-size: 1.5rem;
  text-align: center;
}

.cor-homesplit-left p:last-child {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 1em;
}

.cor-homecta {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
}

.cor-homecta a {
  color: var(--core-blue) !important;
}

.cor-homecta a span {
  white-space: nowrap;
}

/*================
Service Arrows
=================*/

.jrb-servicecards {
  display: flex;
  gap: 0.125rem;
  flex-wrap: nowrap;
}

.jrb-servicecards .service {
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--core-grey);
  color: #fff;
}

.jrb-servicecards .service::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  /* transition: transform 100ms 50ms ease; */
}

@keyframes arrowbg {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.jrb-servicecards .service::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1rem;
  bottom: -1rem;
  left: 0;
  right: calc(100% - 3rem);
  background-color: var(--core-blue);
  clip-path: polygon(
    0 1rem,
    calc(100% - 3rem) 1rem,
    calc(100% - 3rem) 0,
    100% 50%,
    calc(100% - 3rem) 100%,
    calc(100% - 3rem) calc(100% - 1rem),
    0 calc(100% - 1rem)
  );
  opacity: 0;
  /* transform: translateX(-100%); */
  transition: opacity 100ms ease, right 100ms ease;
}

.jrb-servicecards .service:hover::before {
  transform-origin: right;
  animation: arrowbg 100ms 50ms ease forwards;
}

.jrb-servicecards .service:hover::after {
  opacity: 1;
  right: 0;
}

.jrb-servicecards .service__title {
  font-size: clamp(0.75rem, 0.586rem + 0.82vw, 1.2rem);
  text-align: center;
}

@media screen and (max-width: 991px) {
  .jrb-servicecards {
    display: none;
  }
}

/*================
Contact Styles
=================*/

.cor-contact {
  padding: 1.5rem 1.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--core-blue-light);
}

.cor-contact label {
  color: #fff !important;
}

.cor-contact input[type="text"],
.cor-contact textarea {
  background-color: rgba(255, 255, 255, 46%) !important;
  color: #fff !important;
}

.cor-contact input[type="text"]::placeholder,
.cor-contact textarea::placeholder {
  color: var(--core-blue) !important;
}

.cor-contact .ui.error-msg {
  color: #fff !important;
  font-size: 0.8em !important;
  font-weight: 500 !important;
}

/*================
Bio Card
=================*/

.bio-card {
  position: relative;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--core-blue-light);
}

.bio-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
}

.bio-card__header > * {
  flex-shrink: 0;
}

.bio-card__header img {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 100vw;
  overflow: hidden;
  object-fit: cover;
  transform: scaleX(-1);
}

.bio-card__details {
  color: #fff;
}

.bio-card__details h3 {
  margin-bottom: 0;
}

.bio-card__content {
  color: #fff;
}

@media screen and (min-width: 480px) {
  .bio-card__header {
    flex-direction: row;
    gap: 1rem;
    text-align: left;
  }
}

/*================
CTA Modal
=================*/

.jrb-modal {
  --margin: 15px;
  --mt: 120px;
  right: -100%;
  z-index: 99;
  box-shadow: var(--shadow);
  border: none;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  animation: slideIn 400ms ease 400ms forwards;
}

@keyframes slideIn {
  from {
    right: -100%;
  }
  to {
    right: var(--mr);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.jrb-modal h2 {
  color: var(--core-blue);
  font-size: 1.5rem;
  font-weight: 600;
}

.jrb-modal-close {
  display: grid;
  place-content: center;
  top: 0.5rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
}

.jrb-modal-content {
  max-width: 39ch;
}

.jrb-modal[data-state="show"] + .jrb-modal-overlay {
  z-index: 98;
  opacity: 0;
  animation: fadeIn 100ms 7s linear forwards;
}

@media screen and (max-width: 991px) {
  .jrb-modal {
    right: 0;
    max-width: 80%;
    opacity: 0;
    animation: fadeIn 100ms 7s linear forwards;
  }
}

/*================
Content Width
=================*/

.com-content-article {
  max-width: 90ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.com-content-article[data-fullwidth="true"] {
  max-width: unset;
}

@media screen and (min-width: 576px) {
  #t4-masthead,
  #t4-main-body,
  #t4-bottom,
  .jrb-menu-content {
    --content-width: 540px;
  }

  #t4-masthead > .t4-section-inner,
  #t4-main-body > .t4-section-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) {
  #t4-masthead,
  #t4-main-body,
  #t4-bottom,
  .jrb-menu-content {
    --content-width: 720px;
  }
}

@media screen and (min-width: 992px) {
  #t4-masthead,
  #t4-main-body,
  #t4-bottom,
  .jrb-menu-content {
    --content-width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  #t4-masthead,
  #t4-main-body,
  #t4-bottom,
  .jrb-menu-content {
    --content-width: 1140px;
  }
}

@media screen and (min-width: 1400px) {
  #t4-masthead,
  #t4-main-body,
  #t4-bottom,
  .jrb-menu-content {
    --content-width: 1320px;
  }
}

/*================
Utility Classes
=================*/

@media screen and (max-width: 991px) {
  .mobile-center {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
