.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 {
  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;
}
.expand-collapse .block-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 120px auto;
}
@media only screen and (max-width: 767px) {
  .expand-collapse .block-wrap {
    margin: 40px;
    flex-direction: column;
  }
}
.expand-collapse .block-wrap .section.desc {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .expand-collapse .block-wrap .section.desc {
    width: 100%;
  }
}
.expand-collapse .block-wrap .section.desc h2 {
  color: #B91C8D;
}
.expand-collapse .block-wrap .callout-inner {
  width: 50%;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .expand-collapse .block-wrap .callout-inner {
    width: 100%;
  }
}
.expand-collapse .callout-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.expand-collapse .callout-inner > img {
  margin-bottom: 20px;
  width: auto;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .expand-collapse .callout-inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.expand-collapse .callout {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 10px 0;
  margin: 0;
  width: calc(50% - 5px);
}
.expand-collapse .callout .content {
  display: none;
}
.expand-collapse .callout .img-wrap {
  background: #eee;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.expand-collapse .callout .img-wrap img {
  width: auto;
  max-width: 50%;
  max-height: 50px;
  height: auto;
  filter: grayscale(100%) contrast(1000%);
}
.expand-collapse .item {
  border-bottom: 2px solid #B91C8D;
}
.expand-collapse .item .expand-collapse-title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  padding: 20px 0;
  display: block;
  margin: 0px;
}
@media only screen and (max-width: 767px) {
  .expand-collapse .item .expand-collapse-title {
    font-size: 27px;
    line-height: 1.3;
  }
}
.expand-collapse .item .expand-collapse-title a {
  display: block;
  padding: 10px 0;
  position: relative;
  text-decoration: none;
  color: #414042;
}
.expand-collapse .item .expand-collapse-title a.open span:before {
  content: "-";
}
.expand-collapse .item .expand-collapse-title a span:before {
  content: "+";
  position: absolute;
  right: 10px;
  text-align: center;
  width: 25px;
  color: #B91C8D;
}
.js .expand-collapse .item .expand-collapse-description {
  display: none;
}
.expand-collapse .item .expand-collapse-description .description-wrap {
  padding-bottom: 10px;
  margin-top: -20px;
}
