.font-size-massive {
  font-size: 116px;
  line-height: 116px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .font-size-massive {
    font-size: 106px;
    line-height: 106px;
  }
}
@media only screen and (max-width: 767px) {
  .font-size-massive {
    font-size: 42px;
    line-height: 1.1;
  }
}
.font-size-jumbo {
  font-size: 80px;
  line-height: 80px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .font-size-jumbo {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .font-size-jumbo {
    font-size: 42px;
    line-height: 1.1;
  }
}
.font-size-huge {
  font-size: 72px;
  line-height: 78px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .font-size-huge {
    font-size: 58px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .font-size-huge {
    font-size: 32px;
    line-height: 1.1;
  }
}
.font-size-big {
  font-size: 48px;
  line-height: 54px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .font-size-big {
    font-size: 38px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .font-size-big {
    font-size: 32px;
    line-height: 1.1;
  }
}
.font-size-larger {
  font-size: 32px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .font-size-larger {
    font-size: 27px;
    line-height: 1.3;
  }
}
.font-size-large {
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (max-width: 767px) {
  .font-size-large {
    font-size: 24px;
    line-height: 1.3;
  }
}
.font-size-medium-large {
  font-size: 20px;
  line-height: 30px;
}
@media only screen and (max-width: 767px) {
  .font-size-medium-large {
    font-size: 20px;
    line-height: 1.3;
  }
}
.font-size-medium {
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .font-size-medium {
    font-size: 16px;
    line-height: 1.3;
  }
}
.font-size-base {
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .font-size-base {
    line-height: 1.3;
  }
}
.font-size-small {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 767px) {
  .font-size-small {
    line-height: 1.3;
  }
}
.font-size-tiny {
  font-size: 14px;
  line-height: 16px;
}
@media only screen and (max-width: 767px) {
  .font-size-tiny {
    line-height: 1.3;
  }
}
.font-size-prefooter {
  font-size: 21px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .font-size-prefooter {
    line-height: 1.3;
  }
}
.font-size-eyebrow {
  font-size: 28px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .font-size-eyebrow {
    line-height: 1.3;
  }
}
.font-size-interior-heading {
  font-size: 96px;
  line-height: 96px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .font-size-interior-heading {
    font-size: 86px;
    line-height: 86px;
  }
}
@media only screen and (max-width: 767px) {
  .font-size-interior-heading {
    font-size: 42px;
    line-height: 1.1;
  }
}
.font-size-highlights {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
}
.font-size-interior-card {
  font-size: 27px;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  .font-size-interior-card {
    line-height: 1.3;
  }
}
/*** TEXT TREATMENTS ***/
.text-shadow-standard {
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
/*** ANIMATION ***/
.transition-standard {
  transition: all 0.3s ease;
}
.transition-extended {
  transition: all 0.5s ease;
}
/*** BUTTONS ***/
.btn-standard {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #082C61;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 20px 40px;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
  border: 2px solid #082C61;
}
@media only screen and (max-width: 767px) {
  .btn-standard {
    line-height: 1.3;
  }
}
.btn-standard::after {
  font-family: "Font Awesome 6 Pro";
  /* Use the correct Font Awesome font family */
  content: "\f061";
  /* Replace with the Unicode of your desired icon */
  font-size: 18px;
  font-weight: 900;
  /* Use 400 for Regular, 900 for Solid, etc., based on the icon set */
  margin-left: 6px;
  /* Optional: Add spacing */
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-standard-hover {
  background: #fff;
  color: #082C61;
  border-color: #082C61;
}
.btn-standard-hover::after {
  margin-left: 9px;
  margin-right: -3px;
}
.btn-inverse {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #082C61;
  padding: 16px 24px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  min-width: 220px;
  max-width: 450px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .btn-inverse {
    line-height: 1.3;
  }
}
.btn-inverse::after {
  font-family: "Font Awesome 6 Pro";
  /* Use the correct Font Awesome font family */
  content: "\f061";
  /* Replace with the Unicode of your desired icon */
  font-size: 18px;
  font-weight: 900;
  /* Use 400 for Regular, 900 for Solid, etc., based on the icon set */
  margin-left: 6px;
  /* Optional: Add spacing */
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-inverse-hover {
  background: #082C61;
  color: #fff;
  border-color: #fff;
}
.btn-inverse-hover::after {
  margin-left: 9px;
  margin-right: -3px;
}
.btn-alt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #082C61;
  padding: 16px 24px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  min-width: 220px;
  max-width: 450px;
  text-align: center;
  cursor: pointer;
  border: none;
}
@media only screen and (max-width: 767px) {
  .btn-alt {
    line-height: 1.3;
  }
}
.btn-alt::after {
  font-family: "Font Awesome 6 Pro";
  /* Use the correct Font Awesome font family */
  content: "\f061";
  /* Replace with the Unicode of your desired icon */
  font-size: 18px;
  font-weight: 900;
  /* Use 400 for Regular, 900 for Solid, etc., based on the icon set */
  margin-left: 6px;
  /* Optional: Add spacing */
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-alt-hover {
  background: #fff;
  color: #082C61;
  border: none;
}
.btn-alt-hover::after {
  margin-left: 9px;
  margin-right: -3px;
}
.btn-secondary {
  background-color: transparent;
  display: inline-block;
  min-width: 0;
  width: auto;
}
.btn-secondary-hover {
  background-color: transparent;
}
/*** LAYOUT ***/
.wrap-standard {
  max-width: 1270px;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .wrap-standard {
    padding-left: 0;
    padding-right: 0;
  }
}
.rounded-standard {
  border-radius: 6px;
}
.wrap-full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.text-wrap-standard {
  max-width: 600px;
  margin: 0 auto;
}
.title-brand-line {
  content: '';
  flex: 1;
  align-self: flex-end;
  width: 100%;
  display: inline-block;
  border-bottom: 3px solid #FDBA28;
  margin: 0 0 7px 50px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.content-split .block-wrap {
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap {
    margin: 40px;
  }
}
.content-split .block-wrap h2 {
  color: #082C61;
  font-size: 48px;
  line-height: 54px;
  font-weight: 900;
}
@media only screen and (max-width: 1139px) {
  .content-split .block-wrap h2 {
    font-size: 38px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap h2 {
    font-size: 32px;
    line-height: 1.1;
  }
}
.content-split .block-wrap h3 {
  color: #082C61;
  font-size: 32px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap h3 {
    font-size: 27px;
    line-height: 1.3;
  }
}
.content-split .block-wrap h4 {
  color: #082C61;
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap h4 {
    font-size: 24px;
    line-height: 1.3;
  }
}
.content-split .block-wrap h5,
.content-split .block-wrap h6 {
  color: #082C61;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap h5,
  .content-split .block-wrap h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}
.content-split .block-wrap p {
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .content-split .block-wrap p {
    font-size: 16px;
    line-height: 1.3;
  }
}
.content-split .intro-description {
  margin-bottom: 30px;
}
.content-split .callout {
  margin-bottom: 30px;
}
.content-split .callout:last-child {
  margin-bottom: 0;
}
.content-split .callout h3 strong {
  font-weight: 300;
}
.content-split .callout h4 strong {
  font-weight: 400;
}
.content-split .callout.has-icon {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}
.content-split .callout.has-icon .icon-wrap {
  height: 36px;
  display: flex;
  align-items: flex-end;
}
.content-split .callout.has-icon .icon-wrap img {
  object-fit: contain;
  width: 100%;
}
.content-split.purple-background {
  background-color: #B91C8D;
}
.content-split.purple-background .block-wrap {
  color: #fff;
}
.content-split.purple-background .block-wrap h1,
.content-split.purple-background .block-wrap h2,
.content-split.purple-background .block-wrap h3,
.content-split.purple-background .block-wrap h4,
.content-split.purple-background .block-wrap h5,
.content-split.purple-background .block-wrap h6,
.content-split.purple-background .block-wrap .intro-text,
.content-split.purple-background .block-wrap ul li::marker {
  color: #fff;
}
.content-split.purple-background .block-wrap .description-wrap div,
.content-split.purple-background .block-wrap .description-wrap strong,
.content-split.purple-background .block-wrap .description-wrap b {
  color: #fff;
}
.content-split.purple-background .block-wrap .description-wrap p:not(.link-wrap a),
.content-split.purple-background .block-wrap .description-wrap p:not(.link-wrap span) {
  color: #fff;
}
.content-split.purple-background .block-wrap .description-wrap *:not(.link-wrap) a {
  color: #fff;
}
.content-split.blue-background {
  background-color: #082C61;
}
.content-split.blue-background .block-wrap {
  color: #fff;
}
.content-split.blue-background .block-wrap h1,
.content-split.blue-background .block-wrap h2,
.content-split.blue-background .block-wrap h3,
.content-split.blue-background .block-wrap h4,
.content-split.blue-background .block-wrap h5,
.content-split.blue-background .block-wrap h6,
.content-split.blue-background .block-wrap p,
.content-split.blue-background .block-wrap .intro-text {
  color: #fff;
}
.content-split.blue-background .block-wrap ul li::marker {
  color: #B91C8D;
}
.content-split.blue-background .block-wrap .description-wrap div,
.content-split.blue-background .block-wrap .description-wrap strong,
.content-split.blue-background .block-wrap .description-wrap b {
  color: #fff;
}
.content-split.blue-background .block-wrap .description-wrap p:not(.link-wrap a),
.content-split.blue-background .block-wrap .description-wrap p:not(.link-wrap span) {
  color: #fff;
}
.content-split.blue-background .block-wrap .description-wrap *:not(.link-wrap) a {
  color: #fff;
}
.content-split.blue-background .block-wrap .link-wrap .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #082C61;
  padding: 16px 24px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  min-width: 220px;
  max-width: 450px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .content-split.blue-background .block-wrap .link-wrap .btn {
    line-height: 1.3;
  }
}
.content-split.blue-background .block-wrap .link-wrap .btn::after {
  font-family: "Font Awesome 6 Pro";
  /* Use the correct Font Awesome font family */
  content: "\f061";
  /* Replace with the Unicode of your desired icon */
  font-size: 18px;
  font-weight: 900;
  /* Use 400 for Regular, 900 for Solid, etc., based on the icon set */
  margin-left: 6px;
  /* Optional: Add spacing */
  display: inline-block;
  transition: all 0.3s ease;
}
.content-split.blue-background .block-wrap .link-wrap .btn:hover {
  background: #082C61;
  color: #fff;
  border-color: #fff;
}
.content-split.blue-background .block-wrap .link-wrap .btn:hover::after {
  margin-left: 9px;
  margin-right: -3px;
}
.content-split.has-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.5em 0;
}
@media only screen and (min-width: 768px) {
  .content-split.half-half .content-split-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .content-split.one-third-two-third .content-split-columns {
    display: grid;
    grid-template-columns: 0.33fr 0.66fr;
    gap: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .content-split.two-third-one-third .content-split-columns {
    display: grid;
    grid-template-columns: 0.66fr 0.33fr;
    gap: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .content-split.forty-sixty .content-split-columns {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .content-split.sixty-forty .content-split-columns {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: 2em;
  }
}
.content-split .content-column-1 {
  margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
  .content-split .content-column-1 {
    margin-bottom: 0;
  }
}
