:root {
    --bs-blue: #097cb4;
    --bs-cyan: #2cb3de;
    --bs-orange: #fd7e14;
    --bs-primary: #1b4469;
    --bs-secondary: #097cb4;
    --bs-success: #198754;
    --bs-info: #2cb3de;
    --bs-warning: #e17953;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #0f1e3c;

    --bs-primary-rgb: 27, 68, 105;
    --bs-secondary-rgb: 9, 124, 180;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 0, 173, 208;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 15, 30, 60;

    --bs-body-color-rgb: 15, 30, 60;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-body-color: #0f1e3c;
    --bs-body-bg: #fff;

    --bs-lg-hover-color: #35d0ff;
    --bs-link-color: #2cb3de;
    --bs-link-hover-color: #35d0ff;

    --bs-body-font-family: "Inter", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
    text-wrap: pretty;
}

.text-balance {
  text-wrap: balance;
}
.text-orange {
    color: var(--bs-orange);
}

.object-fit-cover {
    object-fit: cover !important;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Archivo", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
header.masthead {
  position: relative;
  background-color: #1b4469;
  background: url("/assets/img/bg-masthead.jpg") no-repeat center center;
  background-size: cover;
  /* padding-top: 8rem;
  padding-bottom: 8rem;*/
}
header.masthead:before {
  content: "";
  position: absolute;
  background-color: #1b4469;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
}
header.masthead h1, header.masthead .h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  header.masthead {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  header.masthead h1, header.masthead .h1 {
    font-size: 3rem;
  }
}
.navbar {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}
.navbar img {
    block-size: 90px;
}
.navbar a {
    text-transform: uppercase;
}
.pt-6 {
    padding-top: 6rem !important;
}
.pb-6 {
    padding-bottom: 6rem !important;
}

.btn-orange {
    background-color: var(--bs-orange);
}
.btn-orange:hover {
  background: var(--bs-info) !important;
}
.showcase-img:before {
    background-color: #1b4469;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

footer.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Mautic */
.mauticform-page-wrapper {
  display: flex !important;
  row-gap: var(--bs-gutter-x);
}
.mauticform-errormsg {
  color: rgb(var(--bs-danger-rgb));
}
.mauticform-message {
  text-align: center;
  font-weight: bold;
  color: rgb(var(--bs-success-rgb));
}
.mauticform-message:not(:empty) + .mauticform-innerform {
  display: none;
}