/* Apply Now Button */
.apply-now-btn .elementor-button {
    transition: all 0.18s ease-in-out;
}

.apply-now-btn .elementor-button:hover {
    background-color: #d09944; /* slightly darker gold */
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
/* Client Login Button (Default) */
.client-login-btn .elementor-button {
    border: 1.5px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    transition: all 0.2s ease-in-out;
}

/* Hover */
.client-login-btn .elementor-button:hover {
    border-color: #E6AA50;
    color: #E6AA50;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
/* Base transition */
.ims-post-card {
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

/* Card lift + shadow */
.ims-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Subtle image zoom */
.ims-post-card img {
  transition: transform .4s ease;
}

.ims-post-card:hover img {
  transform: scale(1.04);
}

/* Button nudge (if using Elementor button) */
.ims-post-card .elementor-button {
  transition: transform .25s ease;
}

.ims-post-card:hover .elementor-button {
  transform: translateX(5px);
}
.ims-post-card {
  border: 1px solid transparent;
}

.ims-post-card:hover {
  border-color: rgba(0, 90, 156, 0.15); /* adjust to brand blue */
}
/* Base transition */
.service-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}

/* Lift + depth */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,.12);
}

/* Subtle gold border accent on hover */
.service-card:hover {
  border-color: rgba(230,170,80,.6);
}

/* Icon circle subtle scale */
.service-card .elementor-icon,
.service-card .elementor-image img {
  transition: transform .3s ease;
}

.service-card:hover .elementor-icon,
.service-card:hover .elementor-image img {
  transform: scale(1.05);
}

/* Button interaction */
.service-card .elementor-button {
  transition: transform .25s ease;
}

.service-card:hover .elementor-button {
  transform: translateY(-2px);
}
/* ===== Base Card ===== */
.award-card{
  position: relative;
  padding: 34px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(35,42,69,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
  overflow: hidden;
}

/* Hover Card */
.award-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,.8);
  border-color: rgba(230,170,80,.25);
  box-shadow:
    0 18px 38px rgba(0,0,0,.07),
    0 0 0 1px rgba(230,170,80,.18);
}

/* Trophy styling */
.award-card .elementor-icon{
  color: #E6AA50;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
  position: relative;
}

/* Subtle lift */
.award-card:hover .elementor-icon{
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 10px 18px rgba(230,170,80,.18));
}

/* ===== Shimmer Sweep ===== */
.award-card .elementor-icon::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-80%;
  width:60%;
  height:160%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.6) 45%,
    rgba(255,255,255,0) 70%
  );
  transform: rotate(12deg);
  opacity: 0;
  pointer-events:none;
}

.award-card:hover .elementor-icon::after{
  opacity: .9;
  animation: awardShimmer .75s ease-out 1;
}

@keyframes awardShimmer{
  from { left: -80%; }
  to   { left: 140%; }
}
background: rgba(255,255,255,.75);
backdrop-filter: blur(6px);
border: 1px solid rgba(255,255,255,.6);
@media (max-width: 1024px){
  .elementor-nav-menu--dropdown .sub-arrow svg,
  .elementor-nav-menu--dropdown .sub-arrow svg path{
    fill:#E6AA50 !important;
  }
}
/* Force the chevron SVG to inherit link color */
  .elementor-nav-menu--dropdown .elementor-item .sub-arrow svg,
  .elementor-nav-menu--dropdown .menu-item > a .sub-arrow svg{
    fill: currentColor !important;
    color: currentColor !important;
  }

  /* Some themes target the path directly */
  .elementor-nav-menu--dropdown .sub-arrow svg path{
    fill: currentColor !important;
  }

/* ==========================================================
   IMS Pre-Approval Benefits — Brand-Aligned Version
   Section: ims-benefits
   Card: ims-benefit
   ========================================================== */

:root{
  --ims-navy: #232A45;
  --ims-gold: #E6AA50;
  --ims-border: rgba(35,42,69,.10);
  --ims-border-hover: rgba(35,42,69,.18);
  --ims-shadow: 0 8px 24px rgba(35,42,69,.06);
  --ims-shadow-hover: 0 18px 44px rgba(35,42,69,.14);
}

/* Base Card */
.ims-benefits .ims-benefit{
  position: relative;
  background: #fff;
  border: 1px solid var(--ims-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--ims-shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform, box-shadow;

  opacity: 0;
  transform: translateY(14px);
  animation: imsFadeUp .7s ease forwards;
}

/* Gold accent top line (subtle + elegant) */
.ims-benefits .ims-benefit::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(
    90deg,
    rgba(230,170,80,0),
    rgba(230,170,80,.75),
    rgba(230,170,80,0)
  );
}

/* Hover effect */
.ims-benefits .ims-benefit:hover{
  transform: translateY(-6px);
  border-color: var(--ims-border-hover);
  box-shadow: var(--ims-shadow-hover);
}

/* Icon Badge */
.ims-benefits .ims-benefit .elementor-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(35,42,69,.05);
  border: 1px solid rgba(35,42,69,.12);
  transition: all .28s ease;
}

/* Icon color */
.ims-benefits .ims-benefit .elementor-icon i,
.ims-benefits .ims-benefit .elementor-icon svg{
  font-size: 28px;
  color: var(--ims-navy);
  fill: var(--ims-navy);
}

/* Icon hover — subtle gold shift */
.ims-benefits .ims-benefit:hover .elementor-icon{
  background: rgba(230,170,80,.12);
  border-color: rgba(230,170,80,.35);
  transform: translateY(-2px);
}

.ims-benefits .ims-benefit:hover .elementor-icon i,
.ims-benefits .ims-benefit:hover .elementor-icon svg{
  color: var(--ims-gold);
  fill: var(--ims-gold);
}

/* Title */
.ims-benefits .ims-benefit .elementor-icon-box-title{
  margin-top: 14px;
  color: var(--ims-navy);
}

/* Description */
.ims-benefits .ims-benefit .elementor-icon-box-description{
  color: rgba(35,42,69,.75);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

/* Stagger (optional) */
.ims-benefits .ims-delay-1{ animation-delay: .05s; }
.ims-benefits .ims-delay-2{ animation-delay: .15s; }
.ims-benefits .ims-delay-3{ animation-delay: .25s; }
.ims-benefits .ims-delay-4{ animation-delay: .35s; }

@keyframes imsFadeUp{
  to{ opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 767px){
  .ims-benefits .ims-benefit{ padding: 20px 18px; }
  .ims-benefits .ims-benefit .elementor-icon{ width: 52px; height: 52px; }
}

.ims-trust-item{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ims-trust-item > .elementor-widget-wrap{
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  height: 100%;
}

.ims-trust-item:hover > .elementor-widget-wrap{
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.68);
}

.ims-trust-item .elementor-icon{
  transition: transform .25s ease, color .25s ease;
}

.ims-trust-item:hover .elementor-icon{
  transform: scale(1.08);
}
.ims-trust-item{
  padding: 10px;
}

.ims-trust-item > .elementor-widget-wrap{
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  height: 100%;
}

.ims-trust-item:hover > .elementor-widget-wrap{
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.68);
}

/* ================================
   IMS Testimonial Spotlight (V4)
   ================================ */

.ims-testimonial-spotlight{
  position: relative;
  background: #1f2740;
  padding: 110px 20px;
  margin: 100px 0;
  border-top: 4px solid #e6aa50;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ims-testimonial-spotlight:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Soft gold glow */
.ims-testimonial-spotlight::after{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 28%, rgba(230,170,80,0.14), transparent 62%);
  pointer-events:none;
  z-index: 0;
}

/* Giant quote mark behind the paragraph (left side) */
.ims-testimonial-spotlight::before{
  content: "“";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-580px);

  font-size: clamp(440px, 38vw, 680px);
  line-height: 0.68;
  color: #e6aa50;
  opacity: 0.12;
  font-family: Georgia, serif;

  pointer-events: none;
  z-index: 1;
}

.ims-testimonial-inner{
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ----------------
   Top: centered
   ---------------- */
.ims-testimonial-top{
  text-align: center;
  margin-bottom: 40px;
}

/* Stars */
.ims-testimonial-stars{
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-bottom: 18px;

  font-size: 24px;
  letter-spacing: 4px;
  color: #e6aa50;

  isolation: isolate;
  white-space: nowrap;
}

/* Shimmer layer inside the stars only */
.ims-testimonial-stars::after{
  content: "★★★★★";
  position: absolute;
  inset: 0;

  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: inherit;

  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 38%,
    rgba(255,255,255,0.70) 48%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.70) 52%,
    rgba(255,255,255,0) 62%,
    rgba(255,255,255,0) 100%
  );
  background-size: 220% 100%;
  background-position: -200% 0;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  pointer-events: none;
  opacity: 0;
}

/* Trigger shimmer on every testimonial hover */
.ims-testimonial-spotlight:hover .ims-testimonial-stars::after{
  opacity: 1;
  animation: imsStarShimmerHover 1.15s ease-in-out 1;
}

@keyframes imsStarShimmerHover{
  0%{
    background-position: -200% 0;
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  100%{
    background-position: 200% 0;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .ims-testimonial-spotlight{
    transition: none;
  }

  .ims-testimonial-spotlight:hover{
    transform: none;
    box-shadow: none;
  }

  .ims-testimonial-spotlight:hover .ims-testimonial-stars::after{
    animation: none;
    opacity: 0;
  }
}

/* Headline */
.ims-testimonial-headline{
  color: #ffffff;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 650;
  letter-spacing: 0.02em;
}

/* ----------------
   Quote paragraph: left aligned
   ---------------- */
.ims-testimonial-quote{
  margin: 34px 0 34px 0;

  color: #ffffff;
  font-size: clamp(20px, 2.0vw, 28px);
  line-height: 1.62;
  font-weight: 450;
  text-align: left;

  padding-left: clamp(12px, 5vw, 110px);

  position: relative;
  z-index: 3;
}

/* ----------------
   Bottom: right aligned meta
   ---------------- */
.ims-testimonial-bottom{
  text-align: right;
  padding-left: clamp(12px, 5vw, 110px);
}

.ims-testimonial-author{
  color: #ffffff;
  font-size: 17px;
  font-weight: 650;
  margin-bottom: 8px;
}

.ims-testimonial-role{
  color: #e6aa50;
  font-weight: 500;
  margin-left: 10px;
}

.ims-testimonial-source{
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

@media (max-width: 980px){
  .ims-testimonial-spotlight::before{
    transform: translateX(-52vw);
  }
}

@media (max-width: 760px){
  .ims-testimonial-spotlight{
    padding: 90px 18px;
  }

  .ims-testimonial-spotlight::before{
    top: 90px;
    font-size: clamp(260px, 46vw, 420px);
    transform: translateX(-48vw);
    opacity: 0.10;
  }

  .ims-testimonial-quote,
  .ims-testimonial-bottom{
    padding-left: 18px;
  }

  .ims-testimonial-bottom{
    text-align: left;
  }
}
.service-card > .elementor-widget-wrap{
  height: 100%;
}

.service-card .elementor-widget-container,
.service-card .ekit-wid-con,
.service-card .elementskit-infobox{
  height: 100%;
}

.service-card .elementskit-infobox{
  display: flex;
  flex-direction: column;
}

.service-card .box-body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.service-card .box-footer{
  margin-top: auto;
}
/* ================================
   IMS Client Services Cards
   ================================ */

/* GRID */
.ims-service-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: stretch;
}

@media (max-width: 900px){
  .ims-service-grid{
    grid-template-columns: 1fr;
  }
}

/* CARD */
.ims-service-card{
  background: #232a45;
  color: #ffffff;
  border-radius: 16px;
  padding: 34px 38px;

  /* ✅ UNIFORM HEIGHT */
  min-height: 240px;
  height: 100%;

  display: flex;
  align-items: center;
  gap: 34px;

  position: relative;
  overflow: hidden;

  box-shadow: 0 8px 22px rgba(0,0,0,0.08);

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* HOVER */
.ims-service-card:hover{
  background: #2f3756;
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

/* GOLD ACCENT LINE */
.ims-service-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  background:#e6aa50;
  border-radius:0 8px 8px 0;
  transform:scaleY(0);
  transition:transform .3s ease;
}

.ims-service-card:hover::before{
  transform:scaleY(1);
}

/* ICONS (FIXED — NO DISTORTION) */
.ims-service-card img,
.ims-service-card svg,
.ims-service-card .icon{
  flex: 0 0 80px;
  width: 80px;
  height: auto;
  max-width: 100%;
  object-fit: contain;

  display: block;
  opacity: 0.9;

  transition: transform .3s ease, opacity .3s ease;
}

/* ICON HOVER */
.ims-service-card:hover img,
.ims-service-card:hover svg,
.ims-service-card:hover .icon{
  transform: scale(1.08);
  opacity: 1;
}

/* TEXT */
.ims-service-card h3{
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.ims-service-card p{
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 560px;
}

/* REMOVE ANY INNER GREY BACKGROUNDS (Elementor fix) */
.ims-service-card:hover *,
.ims-service-card .elementor-widget-container,
.ims-service-card .elementor-image-box-wrapper,
.ims-service-card .elementor-icon-box-wrapper{
  background: transparent !important;
}

/* MOBILE */
@media (max-width: 600px){
  .ims-service-card{
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 18px;
  }

  .ims-service-card::before{
    top: 0;
    bottom: auto;
    left: 24px;
    right: 24px;
    width: auto;
    height: 4px;
    border-radius: 0 0 8px 8px;
    transform: scaleX(0);
  }

  .ims-service-card:hover::before{
    transform: scaleX(1);
  }
}
/* ========================================
   20TH ANNIVERSARY TIMELINE — LIGHT VERSION
======================================== */

.ims20-timeline-section {
  background: #f7f7fa;
  color: #232a45;
  padding: 110px 30px;
}


/* HEADING */

.ims20-timeline-heading {
  max-width: 800px;
  margin: 0 auto 75px;
  text-align: center;
}

.ims20-timeline-heading h2 {
  margin: 0;
  color: #232a45;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.1;
  font-weight: 400;
}

.ims20-timeline-heading p {
  max-width: 680px;
  margin: 24px auto 0;
  color: #858889;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.ims20-tap-hint {
  margin-top: 26px;
  color: #e6aa50;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.ims20-tap-hint span {
  margin-right: 7px;
}


/* TIMELINE */

.ims20-timeline {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.ims20-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #e6aa50 6%,
    #e6aa50 94%,
    transparent 100%
  );
}


/* ITEMS */

.ims20-timeline-item {
  position: relative;
  width: 50%;
  padding: 0 55px 70px;
  box-sizing: border-box;
}

.ims20-timeline-item.ims20-left {
  left: 0;
}

.ims20-timeline-item.ims20-right {
  left: 50%;
}


/* DOTS */

.ims20-timeline-dot {
  position: absolute;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 3px solid #e6aa50;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 2;
}

.ims20-left .ims20-timeline-dot {
  right: -8px;
}

.ims20-right .ims20-timeline-dot {
  left: -8px;
}


/* CARDS */

.ims20-timeline-card {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;

  text-align: left;
  font-family: inherit;

  color: #232a45;
  background: #ffffff;

  border: 1px solid rgba(230,170,80,0.55);

  padding: 28px 30px 20px;
  cursor: pointer;

  box-shadow: 0 8px 28px rgba(35,42,69,0.05);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ims20-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}


/* YEAR */

.ims20-year {
  color: #e6aa50;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 10px;
}


/* TITLE */

.ims20-timeline-card h3 {
  margin: 0;
  color: #232a45;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
}


/* PLUS / MINUS */

.ims20-card-toggle {
  flex: 0 0 auto;
  color: #e6aa50;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}


/* EXPANDABLE CONTENT */

.ims20-card-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.ims20-card-details-inner {
  overflow: hidden;
}

.ims20-card-details p {
  margin: 22px 0 4px;
  color: #858889;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.ims20-card-open .ims20-card-details {
  grid-template-rows: 1fr;
}

.ims20-card-open {
  background: #ffffff;
  border-color: #e6aa50;
  box-shadow: 0 12px 34px rgba(35,42,69,0.09);
}


/* EXPLORE LABEL */

.ims20-explore-label {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(230,170,80,0.32);
  color: #e6aa50;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
}


/* FINAL MILESTONE */

.ims20-timeline-final .ims20-timeline-dot {
  width: 22px;
  height: 22px;
  border-width: 4px;
}

.ims20-timeline-final .ims20-timeline-card {
  border-color: #e6aa50;
}


/* HOVER */

@media (hover: hover) {

  .ims20-timeline-card:hover {
    background: #ffffff;
    border-color: #e6aa50;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(35,42,69,0.10);
  }

}


/* FORCE BUTTON COLOURS */

.ims20-timeline-section button.ims20-timeline-card,
.ims20-timeline-section button.ims20-timeline-card:hover,
.ims20-timeline-section button.ims20-timeline-card:focus,
.ims20-timeline-section button.ims20-timeline-card:active {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #232a45 !important;
  border-color: rgba(230,170,80,0.55) !important;
  box-shadow: 0 8px 28px rgba(35,42,69,0.05) !important;
}

.ims20-timeline-section button.ims20-timeline-card.ims20-card-open,
.ims20-timeline-section button.ims20-timeline-card.ims20-card-open:hover,
.ims20-timeline-section button.ims20-timeline-card.ims20-card-open:focus,
.ims20-timeline-section button.ims20-timeline-card.ims20-card-open:active {
  background-color: #ffffff !important;
  background-image: none !important;
  border-color: #e6aa50 !important;
  color: #232a45 !important;
  box-shadow: 0 12px 34px rgba(35,42,69,0.09) !important;
}

.ims20-timeline-section .ims20-timeline-card h3 {
  color: #232a45 !important;
}

.ims20-timeline-section .ims20-timeline-card p {
  color: #858889 !important;
}

.ims20-timeline-section .ims20-year,
.ims20-timeline-section .ims20-card-toggle,
.ims20-timeline-section .ims20-explore-label {
  color: #e6aa50 !important;
}


/* MOBILE */

@media (max-width: 767px) {

  .ims20-timeline-section {
    padding: 72px 20px;
  }

  .ims20-timeline-heading {
    margin-bottom: 48px;
  }

  .ims20-timeline-heading h2 {
    font-size: 36px;
  }

  .ims20-timeline-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .ims20-tap-hint {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .ims20-timeline::before {
    left: 10px;
    transform: none;
  }

  .ims20-timeline-item,
  .ims20-timeline-item.ims20-left,
  .ims20-timeline-item.ims20-right {
    width: 100%;
    left: 0;
    padding: 0 0 40px 40px;
  }

  .ims20-left .ims20-timeline-dot,
  .ims20-right .ims20-timeline-dot {
    left: 2px;
    right: auto;
  }

  .ims20-timeline-final .ims20-timeline-dot {
    left: -1px;
  }

  .ims20-timeline-card {
    padding: 22px 20px 18px;
  }

  .ims20-timeline-card h3 {
    font-size: 20px;
  }

  .ims20-card-details p {
    font-size: 15px;
    line-height: 1.6;
  }

  .ims20-card-toggle {
    font-size: 24px;
  }

  .ims20-year {
    font-size: 12px;
  }
}
/* ========================================
   20TH ANNIVERSARY MEMORY FORM
======================================== */

#user-submitted-posts {
  width: 100%;
  max-width: 100%;
  margin: 45px 0 0;
  color: #232a45;
  font-family: inherit;
}

#user-submitted-posts fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

#user-submitted-posts fieldset > div {
  margin-bottom: 28px;
}


/* LABELS */

#user-submitted-posts label {
  display: block;
  margin-bottom: 9px;
  color: #232a45;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* TEXT + TEXTAREA */

#user-submitted-posts input[type="text"],
#user-submitted-posts input[type="email"],
#user-submitted-posts input[type="url"],
#user-submitted-posts textarea {
  width: 100% !important;
  box-sizing: border-box;
  padding: 16px 18px !important;

  background: #ffffff !important;
  color: #232a45 !important;

  border: 1px solid rgba(35, 42, 69, 0.25) !important;
  border-radius: 0 !important;
  outline: none !important;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#user-submitted-posts textarea {
  min-height: 150px;
  resize: vertical;
}

#user-submitted-posts input:focus,
#user-submitted-posts textarea:focus {
  border-color: #e6aa50 !important;
  box-shadow: 0 0 0 1px #e6aa50 !important;
}

#user-submitted-posts input::placeholder,
#user-submitted-posts textarea::placeholder {
  color: #858889;
  opacity: 0.75;
}


/* PHOTO UPLOAD AREA */

#user-submitted-posts input[type="file"] {
  width: 100%;
  margin-top: 10px;
  padding: 14px;

  box-sizing: border-box;
  background: rgba(230, 170, 80, 0.06);
  border: 1px dashed rgba(230, 170, 80, 0.7);

  color: #858889;
  font-family: inherit;
  font-size: 14px;
}

#user-submitted-posts input[type="file"]::file-selector-button {
  margin-right: 15px;
  padding: 11px 17px;

  background: #232a45;
  color: #ffffff;

  border: 1px solid #232a45;
  border-radius: 0;

  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  cursor: pointer;
}


/* SUBMIT BUTTON */

#user-submitted-posts input[type="submit"],
#user-submitted-posts button[type="submit"] {
  display: inline-block;
  width: auto;

  margin-top: 10px;
  padding: 16px 28px !important;

  background: #232a45 !important;
  color: #ffffff !important;

  border: 1px solid #232a45 !important;
  border-radius: 0 !important;

  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

#user-submitted-posts input[type="submit"]:hover,
#user-submitted-posts button[type="submit"]:hover {
  background: #e6aa50 !important;
  border-color: #e6aa50 !important;
  color: #232a45 !important;
}


/* SUCCESS + ERROR MESSAGES */

#user-submitted-posts .usp-success,
#user-submitted-posts .usp-error {
  padding: 20px 22px;
  margin-bottom: 25px;
  line-height: 1.6;
}

#user-submitted-posts .usp-success {
  background: rgba(230, 170, 80, 0.10);
  border-left: 3px solid #e6aa50;
  color: #232a45;
}

#user-submitted-posts .usp-error {
  border-left: 3px solid #858889;
  color: #232a45;
}


/* MOBILE */

@media (max-width: 767px) {

  #user-submitted-posts {
    margin-top: 35px;
  }

  #user-submitted-posts fieldset > div {
    margin-bottom: 24px;
  }

  #user-submitted-posts input[type="text"],
  #user-submitted-posts input[type="email"],
  #user-submitted-posts input[type="url"],
  #user-submitted-posts textarea {
    font-size: 16px;
  }

  #user-submitted-posts input[type="submit"],
  #user-submitted-posts button[type="submit"] {
    width: 100%;
    padding: 17px 20px !important;
  }

}
/* SECTION 4 INTRO ALIGNMENT */

.ims20-contribute {
  background: #ffffff;
  padding: 100px 30px 40px;
}

.ims20-contribute-inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.ims20-contribute .ims20-section-label {
  text-align: center;
}

.ims20-contribute h2 {
  margin: 0;
  color: #232a45;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
}

.ims20-contribute-lead,
.ims20-contribute p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .ims20-contribute {
    padding: 75px 22px 30px;
  }

  .ims20-contribute h2 {
    font-size: 38px;
  }
}
/* MEMORY FORM WIDTH + SPACING */

#user-submitted-posts {
  width: calc(100% - 44px);
  max-width: 1000px;
  margin: 70px auto 0;
}

@media (max-width: 767px) {
  #user-submitted-posts {
    width: calc(100% - 36px);
    margin-top: 50px;
  }
}
/* DIRECT SPACING BETWEEN USP FIELDS */

#user-submitted-posts input[type="text"] {
  margin-bottom: 28px !important;
}

#user-submitted-posts textarea {
  margin-bottom: 28px !important;
}

#user-submitted-posts input[type="file"] {
  margin-top: 14px !important;
  margin-bottom: 28px !important;
}

/* ========================================
   20TH ANNIVERSARY PARTNERS
======================================== */

.ims20-partners {
  background: #ffffff;
  padding: 110px 30px 120px;
  color: #232a45;
}

.ims20-partners-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* INTRO */

.ims20-partners-eyebrow {
  margin-bottom: 20px;
  text-align: center;
  color: #e6aa50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
}

.ims20-partners h2 {
  margin: 0;
  text-align: center;
  color: #232a45;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 400;
}

.ims20-partners-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 270px;
  margin: 32px auto 36px;
}

.ims20-partners-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #858889,
    #e6aa50
  );
}

.ims20-partners-divider span:last-child {
  transform: rotate(180deg);
}

.ims20-partners-divider b {
  color: #e6aa50;
  font-size: 14px;
  font-weight: 400;
}

.ims20-partners-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #858889;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}


/* TIER HEADINGS */

.ims20-partner-tier {
  margin-top: 90px;
}

.ims20-tier-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.ims20-tier-heading::before,
.ims20-tier-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(35, 42, 69, 0.12);
}

.ims20-tier-heading span {
  color: #e6aa50;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  white-space: nowrap;
}


/* SHARED */

.ims20-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.ims20-logo-placeholder {
  color: #858889;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.ims20-partner-label {
  margin-bottom: 9px;
  color: #e6aa50;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}


/* FOUNDING PARTNERS */

.ims20-founding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.ims20-founding-card {
  overflow: hidden;
  background: #232a45;
  border: 1px solid #e6aa50;
  box-shadow: 0 12px 40px rgba(35, 42, 69, 0.10);
}

.ims20-founding-card .ims20-partner-logo {
  min-height: 150px;
  padding: 30px;
}

.ims20-partner-video {
  background: #1c2238;
}

.ims20-video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #ffffff;
}

.ims20-video-placeholder small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.ims20-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding-left: 4px;
  border: 1px solid #e6aa50;
  border-radius: 50%;
  color: #e6aa50;
  font-size: 18px;
}

.ims20-partner-copy {
  padding: 32px 34px 36px;
}

.ims20-founding-card h3 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
}

.ims20-founding-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}


/* LEGACY PARTNERS */

.ims20-legacy-tier {
  margin-top: 80px;
}

.ims20-legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ims20-legacy-card {
  overflow: hidden;
  background: #f7f7fa;
  border: 1px solid rgba(35, 42, 69, 0.08);
}

.ims20-legacy-card .ims20-partner-logo {
  min-height: 135px;
  padding: 26px;
  border-bottom: 1px solid rgba(35, 42, 69, 0.08);
}

.ims20-legacy-video {
  background: #232a45;
}

.ims20-video-small {
  aspect-ratio: 16 / 8;
}

.ims20-small-play-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding-left: 3px;
  border: 1px solid #e6aa50;
  border-radius: 50%;
  color: #e6aa50;
  font-size: 13px;
}

.ims20-legacy-card .ims20-partner-copy {
  padding: 28px 28px 30px;
}

.ims20-legacy-card h3 {
  margin: 0 0 13px;
  color: #232a45;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 400;
}

.ims20-legacy-card p {
  margin: 0;
  color: #858889;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}


/* ANNIVERSARY PARTNERS */

.ims20-anniversary-tier {
  margin-top: 75px;
}

.ims20-anniversary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ims20-anniversary-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(35, 42, 69, 0.10);
}

.ims20-anniversary-card .ims20-partner-logo {
  min-height: 120px;
  padding: 24px;
  background: #f7f7fa;
}

.ims20-anniversary-copy {
  padding: 22px 22px 24px;
  text-align: center;
}

.ims20-anniversary-copy h3 {
  margin: 0;
  color: #232a45;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 400;
}


/* SUPPORTING PARTNERS */

.ims20-supporting-tier {
  margin-top: 70px;
}

.ims20-supporting-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ims20-supporting-card {
  padding: 20px 18px 18px;
  text-align: center;
  background: #f7f7fa;
  border: 1px solid rgba(35, 42, 69, 0.07);
}

.ims20-supporting-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.ims20-supporting-name {
  margin-top: 10px;
  color: #232a45;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}


/* HOVER */

@media (hover: hover) {

  .ims20-founding-card,
  .ims20-legacy-card,
  .ims20-anniversary-card,
  .ims20-supporting-card {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ims20-founding-card:hover,
  .ims20-legacy-card:hover,
  .ims20-anniversary-card:hover,
  .ims20-supporting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(35, 42, 69, 0.10);
  }
}


/* TABLET */

@media (max-width: 1024px) {

  .ims20-founding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ims20-legacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ims20-anniversary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ims20-supporting-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* MOBILE */

@media (max-width: 767px) {

  .ims20-partners {
    padding: 80px 22px 85px;
  }

  .ims20-partners h2 {
    font-size: 38px;
  }

  .ims20-partners-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .ims20-partner-tier {
    margin-top: 65px;
  }

  .ims20-founding-grid,
  .ims20-legacy-grid,
  .ims20-anniversary-grid,
  .ims20-supporting-grid {
    grid-template-columns: 1fr;
  }

  .ims20-tier-heading {
    gap: 12px;
    margin-bottom: 26px;
  }

  .ims20-tier-heading span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .ims20-founding-card .ims20-partner-logo {
    min-height: 125px;
  }

  .ims20-partner-copy {
    padding: 27px 24px 30px;
  }

  .ims20-founding-card h3 {
    font-size: 24px;
  }

  .ims20-legacy-card .ims20-partner-copy {
    padding: 25px 23px 27px;
  }

  .ims20-anniversary-card .ims20-partner-logo {
    min-height: 105px;
  }

  .ims20-supporting-card {
    padding: 18px 16px 16px;
  }
}
/* ========================================
   20TH ANNIVERSARY CLOSING SECTION
======================================== */

.ims20-closing {
  background: #232a45;
  color: #ffffff;
  padding: 120px 30px 70px;
  text-align: center;
}

.ims20-closing-inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.ims20-closing-eyebrow {
  margin-bottom: 20px;
  color: #e6aa50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
}

.ims20-closing h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 400;
}

.ims20-closing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin: 34px auto 38px;
}

.ims20-closing-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #8f642a,
    #e6aa50,
    #f6d98a
  );
}

.ims20-closing-divider span:last-child {
  transform: rotate(180deg);
}

.ims20-closing-divider b {
  color: #e6aa50;
  font-size: 14px;
  font-weight: 400;
}

.ims20-closing p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.ims20-closing-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 55px;
}

.ims20-closing-brand strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}

.ims20-closing-brand span {
  color: #e6aa50;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.ims20-closing-values {
  margin-top: 25px;
  color: #858889;
  font-size: 12px;
  letter-spacing: 2px;
}

.ims20-closing-link {
  display: inline-block;
  margin-top: 34px;
  color: #e6aa50;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: color 0.25s ease;
}

.ims20-closing-link:hover {
  color: #f6d98a;
}

@media (max-width: 767px) {

  .ims20-closing {
    padding: 85px 22px 55px;
  }

  .ims20-closing-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .ims20-closing h2 {
    font-size: 40px;
  }

  .ims20-closing p {
    font-size: 16px;
    line-height: 1.7;
  }

  .ims20-closing-brand {
    margin-top: 45px;
  }

  .ims20-closing-values {
    font-size: 11px;
    line-height: 1.6;
  }
}
/* ========================================
   20TH ANNIVERSARY HERO
======================================== */

.ims20-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #232a45;
  color: #ffffff;

  text-align: center;

  padding: 80px 30px;

  overflow: hidden;
  box-sizing: border-box;
}

.ims20-hero-content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}


/* CELEBRATING */

.ims20-eyebrow {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: 22px;
  font-weight: 400;
  letter-spacing: 5px;
}


/* 20 YEARS */

.ims20-years {
  margin: 0;

  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 3px;

  background: linear-gradient(
    90deg,
    #8f642a 0%,
    #c7923e 20%,
    #e6aa50 38%,
    #f6d98a 50%,
    #e6aa50 62%,
    #b77d30 82%,
    #8f642a 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ims20-years span {
  font-weight: 500;
}


/* COMPANY NAME */

.ims20-company {
  margin-top: 22px;

  color: #ffffff;

  font-size: clamp(18px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 3px;
}


/* GOLD DIVIDER */

.ims20-divider {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  width: 100%;
  max-width: 480px;

  margin: 38px auto 30px;

  color: #e6aa50;
}

.ims20-divider span {
  flex: 1;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #8f642a,
    #e6aa50,
    #f6d98a
  );
}

.ims20-divider span:last-child {
  transform: rotate(180deg);
}

.ims20-divider b {
  color: #e6aa50;
  font-size: 17px;
  font-weight: 400;
}


/* INTRO */

.ims20-intro {
  max-width: 720px;

  margin: 0 auto;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}


/* LOOK BACK CTA */

.ims20-explore {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  margin-top: 40px;

  color: #e6aa50;
  text-decoration: none;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.ims20-explore span {
  font-size: 22px;
  line-height: 1;

  transition: transform 0.25s ease;
}


/* DESKTOP HOVER */

@media (hover: hover) {

  .ims20-explore:hover {
    color: #f6d98a;
  }

  .ims20-explore:hover span {
    transform: translateY(4px);
  }
}


/* SMOOTH SCROLL */

html {
  scroll-behavior: smooth;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

  .ims20-hero {
    min-height: 100svh;

    padding: 55px 22px;
  }

  .ims20-hero-content {
    max-width: 100%;
  }


  /* CELEBRATING */

  .ims20-eyebrow {
    margin-bottom: 14px;

    font-size: 12px;
    letter-spacing: 4px;
  }


  /* 20 YEARS */

  .ims20-years {
    font-size: clamp(54px, 18vw, 78px);
    line-height: 1;
    letter-spacing: 1px;
  }


  /* COMPANY */

  .ims20-company {
    margin-top: 17px;

    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }


  /* DIVIDER */

  .ims20-divider {
    max-width: 260px;
    margin: 27px auto 24px;
    gap: 11px;
  }

  .ims20-divider b {
    font-size: 13px;
  }


  /* INTRO */

  .ims20-intro {
    max-width: 340px;

    font-size: 15px;
    line-height: 1.6;
  }


  /* CTA */

  .ims20-explore {
    margin-top: 30px;

    font-size: 10px;
    letter-spacing: 2px;
  }

  .ims20-explore span {
    font-size: 20px;
  }
}
.ims20-hero .ims20-explore,
.ims20-hero .ims20-explore:link,
.ims20-hero .ims20-explore:visited,
.ims20-hero .ims20-explore:hover,
.ims20-hero .ims20-explore:focus,
.ims20-hero .ims20-explore:active {
  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.ims20-hero .ims20-explore span {
  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;
  opacity: 1 !important;
}
/* ========================================
   20TH ANNIVERSARY MEMORY WALL
======================================== */

.ims20-memories-section {
  background: #f7f7fa;
  padding: 100px 30px 28px;
  text-align: center;
}


/* ========================================
   MEMORY WALL HEADING
======================================== */

.ims20-memories-heading {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: inherit;
}

.ims20-memories-section .ims20-section-label {
  margin-bottom: 16px;

  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ims20-memories-heading h2 {
  margin: 0;

  color: #232a45;

  font-family: inherit;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.ims20-memories-heading p {
  max-width: 700px;
  margin: 20px auto 0;

  color: #858889;

  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}


/* KEEP EXISTING HTML DIAMOND ONLY */

.ims20-memories-heading::after {
  content: none !important;
  display: none !important;
}


/* MOBILE */

@media (max-width: 767px) {

  .ims20-memories-heading {
    max-width: 100%;
    margin-bottom: 38px;
  }

  .ims20-memories-section .ims20-section-label {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .ims20-memories-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    white-space: normal;
  }

  .ims20-memories-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ========================================
   MEMORY WALL
======================================== */

.ims20-memory-wall {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 80px;

  columns: 3;
  column-gap: 24px;
}


/* ========================================
   MEMORY CARDS
======================================== */

.ims20-memory-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;

  overflow: hidden;

  background: #ffffff;
  border: 1px solid rgba(35, 42, 69, 0.08);

  break-inside: avoid;
  -webkit-column-break-inside: avoid;

  box-shadow: 0 8px 30px rgba(35, 42, 69, 0.05);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* ========================================
   IMAGE
======================================== */

.ims20-memory-image {
  width: 100%;
  overflow: hidden;
}

.ims20-memory-image img {
  display: block;
  width: 100%;
  height: auto;
}


/* ========================================
   CARD CONTENT
======================================== */

.ims20-memory-content {
  padding: 26px 27px 28px;
  text-align: left;
}

.ims20-memory-message {
  color: #232a45;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.ims20-memory-message p {
  margin: 0 0 13px;
}

.ims20-memory-message p:last-child {
  margin-bottom: 0;
}


/* ========================================
   SUBMITTER NAME
======================================== */

.ims20-memory-name {
  margin-top: 20px;

  color: #e6aa50;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}


/* ========================================
   TEXT-ONLY MEMORY CARDS
======================================== */

.ims20-memory-text-only {
  background: #232a45;
  border-color: #232a45;
}

.ims20-memory-text-only .ims20-memory-content {
  padding: 36px 30px 34px;
}

.ims20-memory-text-only .ims20-memory-message {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
}

.ims20-memory-text-only .ims20-memory-name {
  color: #e6aa50;
}

.ims20-memory-quote {
  height: 35px;
  margin-bottom: 12px;

  color: #e6aa50;

  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}


/* ========================================
   EMPTY STATE
======================================== */

.ims20-memory-empty {
  column-span: all;

  max-width: 600px;
  margin: 20px auto;
  padding: 45px 30px;

  text-align: center;
  color: #858889;

  border: 1px dashed rgba(230, 170, 80, 0.6);
}

.ims20-memory-empty span {
  color: #e6aa50;
  font-size: 22px;
}

.ims20-memory-empty p {
  margin: 12px 0 0;
}


/* ========================================
   DESKTOP HOVER
======================================== */

@media (hover: hover) {

  .ims20-memory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(35, 42, 69, 0.10);
  }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

  .ims20-memories-heading h2 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .ims20-memory-wall {
    columns: 2;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

  .ims20-memories-section {
    padding: 75px 22px 24px;
  }

  .ims20-memories-heading {
    max-width: 100%;
    margin-bottom: 38px;
  }

  .ims20-memories-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    white-space: normal;
  }

  .ims20-memories-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .ims20-memories-heading::after {
    width: 180px;
    margin-top: 20px;
  }

  .ims20-memory-wall {
    width: calc(100% - 16px);
    columns: 1;
    padding-bottom: 60px;
  }

  .ims20-memory-card {
    margin-bottom: 18px;
  }

  .ims20-memory-content {
    padding: 24px 22px 26px;
  }

  .ims20-memory-text-only .ims20-memory-content {
    padding: 30px 24px;
  }

}
.ims20-submit-section .ims20-section-label,
.ims20-submit-heading .ims20-section-label {
  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ims20-submit-section .ims20-section-label,
  .ims20-submit-heading .ims20-section-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
}
.ims20-memories-section .ims20-section-label {
  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.ims20-contribute .ims20-section-label {
  color: #e6aa50 !important;
  -webkit-text-fill-color: #e6aa50 !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
}

@media (max-width: 767px) {
  .ims20-contribute .ims20-section-label {
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }
}
/* ========================================
   HERO LOGO LOCKUP
======================================== */

.ims20-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  margin: 0 auto 38px;
}

.ims20-logo-lockup img {
  display: block;
  width: auto;
  object-fit: contain;
}

.ims20-logo-innovative {
  max-width: 180px;
  max-height: 68px;
}

.ims20-logo-invis {
  max-width: 105px;
  max-height: 52px;
}

.ims20-logo-divider {
  display: block;
  flex: 0 0 1px;

  width: 1px;
  height: 42px;

  background: #e6aa50;
  opacity: 0.65;
}


/* MOBILE */

@media (max-width: 767px) {

  .ims20-logo-lockup {
    gap: 16px;
    margin-bottom: 28px;
  }

  .ims20-logo-innovative {
    max-width: 135px;
    max-height: 52px;
  }

  .ims20-logo-invis {
    max-width: 80px;
    max-height: 40px;
  }

  .ims20-logo-divider {
    height: 34px;
  }
}
/* ========================================
   TIMELINE TOGGLE POSITION FIX
======================================== */

.ims20-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.ims20-card-top > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.ims20-card-toggle {
  flex: 0 0 28px;
  width: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;

  color: #e6aa50 !important;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;

  position: relative;
  right: 0;
  top: 0;
}


/* MOBILE */

@media (max-width: 767px) {

  .ims20-card-top {
    gap: 14px;
  }

  .ims20-card-toggle {
    flex-basis: 24px;
    width: 24px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {

  .ims20-timeline-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
    white-space: normal !important;
  }

  .ims20-card-top {
    width: 100%;
    min-width: 0;
  }

  .ims20-card-top > div:first-child {
    min-width: 0;
    max-width: calc(100% - 38px);
  }

  .ims20-timeline-card h3 {
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 20px;
    line-height: 1.3;
  }

}