@charset "UTF-8";
.color-white {
  color: #fff !important;
}

.color-cream {
  color: #F8F3EC !important;
}

.color-secondary {
  color: #ff3300 !important;
}

.bg-white {
  background-color: #fff !important;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal__container {
  min-width: 300px;
}

.modal__content ul {
  padding-left: 0;
  list-style: bullet;
  font-family: "Open Sans";
}
.modal__content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
}
.modal__content ul li::after {
  content: "•"; /* The bullet character */
  display: inline-block;
  position: absolute;
  left: 0; /* Align to the far left of the LI */
  top: 50%; /* Align with the first line of text */
  transform: translateY(-50%);
  color: #000; /* Match your text color or pick a brand color */
  font-weight: bold;
  font-size: 1.2rem; /* Make the bullet slightly larger if needed */
}

.modal__content .title-default {
  font-family: "ITCAvantGardeStd";
}

.blog-page {
  background: #F8F3EC;
  padding-bottom: 80px;
}
.blog-page__title {
  color: #fff;
  margin-bottom: 90px;
}
.blog-page__hero {
  padding-top: 180px;
}
.blog-page__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 620px;
  background: #070751;
  z-index: 0;
}
.blog-page__hero .container {
  position: relative;
  z-index: 1;
}
.blog-page {
  /* FEATURED (FIXED CLASS) */
}
.blog-page .blog-featured {
  margin-top: 40px;
  background: #fff;
  border-radius: 21px;
  padding: 20px;
  display: grid;
}
@media only screen and (min-width: 1170px) {
  .blog-page .blog-featured {
    padding: 80px 20px 80px;
    gap: 110px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1366px) {
  .blog-page .blog-featured {
    padding: 80px;
    gap: 110px;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) {
  .blog-page .blog-featured {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) {
  .blog-page .blog-featured__content {
    max-width: 380px;
    padding: 20px;
  }
}
@media only screen and (min-width: 1366px) {
  .blog-page .blog-featured__content {
    padding: 0;
  }
}
.blog-page .blog-featured__label {
  font-size: 19px;
}
@media only screen and (min-width: 576px) {
  .blog-page .blog-featured__label {
    font-size: 19px;
  }
}
@media only screen and (min-width: 768px) {
  .blog-page .blog-featured__label {
    font-size: 19px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-page .blog-featured__label {
    font-size: 29px;
  }
}
.blog-page .blog-featured__label {
  margin-bottom: 20px;
  font-family: "ITCAvantGardeStd", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 1170px) {
  .blog-page .blog-featured__label {
    margin-bottom: 30px;
  }
}
.blog-page .blog-featured__title {
  font-family: "ITCAvantGardeStd", sans-serif;
  margin-bottom: 50px;
  line-height: 1.3;
}
.blog-page .blog-featured__title a {
  color: inherit;
  text-decoration: none;
}
.blog-page .blog-featured__meta {
  border-left: 3px solid #ff3300;
  padding: 10px 20px 10px;
  margin-bottom: 30px;
  max-width: 250px;
}
.blog-page .blog-featured__meta p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.4em;
}
.blog-page .blog-featured__meta p:last-of-type {
  margin-bottom: 0;
}
.blog-page .blog-featured__image {
  aspect-ratio: 671/487;
  overflow: hidden;
  border-radius: 12px;
}
@media only screen and (min-width: 1170px) {
  .blog-page .blog-featured__image {
    position: absolute;
    right: 10px;
  }
}
@media only screen and (min-width: 1366px) {
  .blog-page .blog-featured__image {
    position: absolute;
    right: 0;
  }
}
.blog-page .blog-featured__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-page {
  /* GRID */
}
.blog-page__grid {
  margin-top: 40px;
}
.blog-page__grid-inner {
  display: grid;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-page__grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1440px) {
  .blog-page__grid-inner {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .blog-page__grid-inner > .blog-card {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .blog-page__grid-inner > .blog-card {
    grid-column: span 1;
  }
}
@media only screen and (min-width: 1440px) {
  .blog-page__grid-inner > .blog-card {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1440px) {
  .blog-page__grid-inner > .blog-card.blog-card--desktop-row-2-left {
    grid-column: 2/span 2;
  }
}
@media only screen and (min-width: 1440px) {
  .blog-page__grid-inner > .blog-card.blog-card--desktop-row-2-right {
    grid-column: 4/span 2;
  }
}
.blog-page__heading {
  font-family: "ITCAvantGardeStd", sans-serif;
  margin-bottom: 40px;
}
.blog-page__search-field {
  position: relative;
  max-width: 428px;
  margin: 0 auto 40px;
}
.blog-page__search-input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  border: 1px solid #595959;
  border-radius: 25px !important;
}
.blog-page__search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.blog-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto 30px;
  margin-bottom: 60px;
}
.blog-page .blog-page__filter {
  padding: 8px 16px;
  color: #070751;
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  font-family: "ITCAvantGardeStd", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.blog-page .blog-page__filter span {
  display: flex;
}
.blog-page .blog-page__filter.is-active {
  background: #ff3300;
  color: #fff;
}
.blog-page .blog-card {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 21px;
  height: 100%;
}
.blog-page .blog-card:hover .blog-card__title {
  color: #ff3300;
}
.blog-page .blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  max-width: unset;
}
.blog-page .blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-page .blog-card__image {
  aspect-ratio: 341/276;
  overflow: hidden;
  border-radius: 12px;
}
.blog-page .blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.blog-page .blog-card__title {
  font-family: "ITCAvantGardeStd", sans-serif;
  font-weight: bold;
  font-size: 22px;
  margin: 12px 0 6px;
}
.blog-page .blog-card__meta {
  margin-top: auto;
  padding-top: 30px;
  font-family: "ITCAvantGardeStd", sans-serif;
  font-weight: bold;
}
.blog-page .blog-card__readmore {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-top: 6px;
}