:root {
  --why-red: #8c2020;
  --why-red-bright: #b62a2a;
  --why-ink: #111111;
  --why-soft: #f7f4f2;
  --why-line: rgba(140, 32, 32, 0.16);
  --why-container: min(1500px, calc(100% - 80px));
}

.why-page {
  overflow-x: hidden;
  background: #ffffff;
  color: var(--why-ink);
}

.why-container {
  width: var(--why-container);
  margin-inline: auto;
}

.why-scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 12000;
  height: 3px;
  pointer-events: none;
}

.why-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #641818, #c33434);
  transform: scaleX(0);
  transform-origin: left center;
}

.why-page .project-header .footer-logo-image,
.why-page .site-footer .footer-logo-image {
  display: block;
  width: 75px;
  max-width: 100%;
  height: auto;
}

.why-section {
  position: relative;
  padding: 54px 0 86px;
  background:
    linear-gradient(90deg, rgba(140, 32, 32, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    #ffffff;
  background-size: 120px 120px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(660px, 1.65fr);
  align-items: start;
  gap: 48px;
}

.why-intro {
  position: sticky;
  top: 132px;
  padding: 8px 12px 20px 0;
}

.why-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 54px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.why-breadcrumb a:hover,
.why-breadcrumb span:last-child {
  color: var(--why-red);
}

.why-kicker {
  margin: 0 0 12px;
  color: var(--why-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.why-intro h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(72px, 6.6vw, 112px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.why-title-line {
  display: block;
  width: 84px;
  height: 4px;
  margin: 29px 0 22px;
  background: var(--why-red);
}

.why-intro h2 {
  max-width: 440px;
  margin: 0 0 15px;
  color: var(--why-red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.why-summary {
  max-width: 440px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 14px;
  line-height: 1.76;
}

.why-load {
  opacity: 0;
  transform: translateY(24px);
}

.why-page.is-ready .why-load {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-page.is-ready .why-load:nth-child(2) { transition-delay: 70ms; }
.why-page.is-ready .why-load:nth-child(3) { transition-delay: 135ms; }
.why-page.is-ready .why-load:nth-child(4) { transition-delay: 200ms; }
.why-page.is-ready .why-load:nth-child(5) { transition-delay: 265ms; }
.why-page.is-ready .why-load:nth-child(6) { transition-delay: 330ms; }

.why-list {
  border-top: 1px solid var(--why-line);
  border-left: 1px solid var(--why-line);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.065);
}

.why-item {
  position: relative;
  display: grid;
  grid-template-columns: 62px 52px minmax(0, 1fr) 220px;
  align-items: stretch;
  min-height: 148px;
  overflow: hidden;
  border-right: 1px solid var(--why-line);
  border-bottom: 1px solid var(--why-line);
  background: rgba(255, 255, 255, 0.96);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.why-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--why-red);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s ease;
}

.why-item:hover {
  z-index: 2;
  transform: translateX(-8px);
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(140, 32, 32, 0.12);
}

.why-item:hover::after {
  transform: scaleY(1);
}

.why-icon {
  display: grid;
  place-items: center;
  color: var(--why-red);
  background: rgba(140, 32, 32, 0.045);
  border-right: 1px solid var(--why-line);
}

.why-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  transition: transform 0.35s ease;
}

.why-item:hover .why-icon svg {
  transform: translateY(-3px) scale(1.08);
}

.why-number {
  display: grid;
  place-items: center;
  color: rgba(140, 32, 32, 0.62);
  border-right: 1px solid var(--why-line);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.why-copy {
  align-self: center;
  padding: 24px 28px;
}

.why-copy h3 {
  margin: 0 0 8px;
  color: var(--why-red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.why-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 12.5px;
  line-height: 1.66;
}

.why-image-wrap {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  background: #d8d8d8;
}

.why-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.why-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.why-item:hover .why-image-wrap img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.why-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.why-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-closing-section {
  padding: 0 0 90px;
  background: #ffffff;
}

.why-closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 42px 48px;
  color: #ffffff;
  background: linear-gradient(110deg, #681717, #a72525);
  box-shadow: 0 28px 76px rgba(140, 32, 32, 0.2);
}

.why-closing-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.why-closing-card h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(34px, 3.6vw, 53px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.why-closing-card a {
  min-width: 205px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.why-closing-card a:hover {
  color: var(--why-red);
  background: #ffffff;
  transform: translateY(-4px);
}

/* About Us dropdown */
.project-header .about-pages-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.project-header .about-pages-dropdown .project-nav-dropdown-toggle {
  width: auto !important;
  min-width: max-content !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap !important;
  cursor: pointer;
}

.project-header .about-pages-dropdown-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 10020;
  width: 310px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid rgba(140, 32, 32, 0.16);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.project-header .about-pages-dropdown:hover .about-pages-dropdown-menu,
.project-header .about-pages-dropdown:focus-within .about-pages-dropdown-menu,
.project-header .about-pages-dropdown.open .about-pages-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.project-header .about-pages-dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 12px 0 !important;
  white-space: nowrap !important;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-header .about-pages-dropdown-menu a:last-child {
  border-bottom: 0;
}

.project-header .about-pages-dropdown-menu a.active {
  color: var(--why-red);
}

@media (max-width: 1200px) {
  :root {
    --why-container: min(100% - 48px, 1120px);
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-intro {
    position: static;
    max-width: 760px;
  }

  .why-breadcrumb {
    margin-bottom: 34px;
  }

  .project-header .about-pages-dropdown {
    width: 100%;
    display: block;
  }

  .project-header .about-pages-dropdown .project-nav-dropdown-toggle {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: space-between;
    padding: 14px 0 !important;
  }

  .project-header .about-pages-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .project-header .about-pages-dropdown.open .about-pages-dropdown-menu {
    display: block;
  }

  .project-header .about-pages-dropdown-menu a {
    padding: 12px 0 !important;
    white-space: normal !important;
  }
}

@media (max-width: 860px) {
  .why-item {
    grid-template-columns: 56px 48px minmax(0, 1fr) 180px;
  }

  .why-copy {
    padding: 22px 22px;
  }

  .why-copy h3 {
    font-size: 21px;
  }
}

@media (max-width: 680px) {
  :root {
    --why-container: min(100% - 28px, 640px);
  }

  .why-page .project-header .footer-logo-image {
    width: 126px;
  }

  .why-section {
    padding: 36px 0 62px;
  }

  .why-intro h1 {
    font-size: 66px;
  }

  .why-item {
    grid-template-columns: 54px 44px minmax(0, 1fr);
    min-height: 0;
  }

  .why-image-wrap {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 190px;
    min-height: 190px;
  }

  .why-icon,
  .why-number,
  .why-copy {
    grid-row: 2;
  }

  .why-icon,
  .why-number {
    min-height: 150px;
  }

  .why-copy {
    min-height: 150px;
  }

  .why-item:hover {
    transform: translateY(-4px);
  }

  .why-closing-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 27px;
  }

  .why-closing-card a {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .why-intro h1 {
    font-size: 56px;
  }

  .why-item {
    grid-template-columns: 48px 40px minmax(0, 1fr);
  }

  .why-copy {
    padding: 20px 17px;
  }

  .why-copy h3 {
    font-size: 19px;
  }

  .why-copy p {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .why-load,
  .why-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .why-image-wrap img,
  .why-icon svg {
    transition: none !important;
  }
}


/* ===== Why Times Group: homepage-style sticky responsive menu ===== */
.why-page {
  --why-sticky-navbar-height: var(--sticky-navbar-height, 92px);
}

.why-page .why-profile-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11000;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px max(28px, calc((100vw - var(--container)) / 2));
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(140, 32, 32, 0.12);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-page .why-profile-navbar.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.11);
}

.why-page .why-section {
  padding-top: calc(var(--why-sticky-navbar-height) + 54px);
}

.why-page .why-profile-navbar .nav-menu,
.why-page .why-profile-navbar .nav-dropdown,
.why-page .why-profile-navbar .nav-dropdown-menu {
  overflow: visible;
}

.why-page .why-profile-navbar .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.why-page .why-profile-navbar .nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.why-page .why-profile-navbar .nav-dropdown-toggle > span {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.why-page .why-profile-navbar .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--why-red);
  transition: width 0.25s ease;
}

.why-page .why-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle,
.why-page .why-profile-navbar .nav-dropdown.open .nav-dropdown-toggle,
.why-page .why-profile-navbar .nav-dropdown-toggle:focus-visible,
.why-page .why-profile-navbar .nav-dropdown-toggle.active {
  color: var(--why-red);
}

.why-page .why-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle::after,
.why-page .why-profile-navbar .nav-dropdown.open .nav-dropdown-toggle::after,
.why-page .why-profile-navbar .nav-dropdown-toggle:focus-visible::after,
.why-page .why-profile-navbar .nav-dropdown-toggle.active::after {
  width: 100%;
}

.why-page .why-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle > span,
.why-page .why-profile-navbar .nav-dropdown.open .nav-dropdown-toggle > span {
  transform: rotate(180deg);
}

.why-page .why-profile-navbar .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: -20px;
  z-index: 11020;
  min-width: 250px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(140, 32, 32, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.why-page .why-profile-navbar .nav-dropdown:hover .nav-dropdown-menu,
.why-page .why-profile-navbar .nav-dropdown:focus-within .nav-dropdown-menu,
.why-page .why-profile-navbar .nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.why-page .why-profile-navbar .nav-dropdown-menu a,
.why-page .why-profile-navbar .nav-dropdown-menu a:link,
.why-page .why-profile-navbar .nav-dropdown-menu a:visited {
  display: block;
  width: 100%;
  padding: 14px 15px;
  color: #111111;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.why-page .why-profile-navbar .nav-dropdown-menu a::after {
  display: none;
  content: none;
}

.why-page .why-profile-navbar .nav-dropdown-menu a:hover,
.why-page .why-profile-navbar .nav-dropdown-menu a.active {
  color: var(--why-red);
  background: rgba(140, 32, 32, 0.07);
  border-left-color: var(--why-red);
}

@media (max-width: 1024px) {
  .why-page .why-profile-navbar,
  .why-page .why-profile-navbar.is-scrolled {
    padding: 14px 24px;
  }

  .why-page .why-profile-navbar .nav-menu {
    position: fixed;
    top: var(--why-sticky-navbar-height);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--why-sticky-navbar-height));
    margin: 0;
    padding: 22px 24px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.99);
    border: 0;
    border-top: 1px solid rgba(140, 32, 32, 0.12);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.15);
  }

  .why-page .why-profile-navbar .nav-dropdown {
    display: block;
    width: 100%;
  }

  .why-page .why-profile-navbar .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    text-align: left;
  }

  .why-page .why-profile-navbar .nav-dropdown-toggle::after {
    bottom: 4px;
  }

  .why-page .why-profile-navbar .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 4px 0 4px 14px;
    background: rgba(140, 32, 32, 0.035);
    border: 0;
    border-left: 2px solid rgba(140, 32, 32, 0.22);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .why-page .why-profile-navbar .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: whyMobileSubmenu 0.25s ease both;
  }

  .why-page .why-profile-navbar .nav-dropdown-menu a {
    padding: 12px 13px;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .why-page .why-section {
    padding-top: calc(var(--why-sticky-navbar-height) + 36px);
  }
}

@media (max-width: 640px) {
  .why-page .why-profile-navbar,
  .why-page .why-profile-navbar.is-scrolled {
    padding: 12px 16px;
  }

  .why-page .why-profile-navbar .nav-menu {
    padding: 18px 20px 28px;
  }
}

@keyframes whyMobileSubmenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-page .why-profile-navbar,
  .why-page .why-profile-navbar *,
  .why-page .why-profile-navbar *::before,
  .why-page .why-profile-navbar *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Why Times Group page: menu text black and menu shadows removed */
.why-page .why-profile-navbar .nav-menu > a,
.why-page .why-profile-navbar .nav-dropdown-toggle {
  color: #111111 !important;
  text-shadow: none !important;
}

/* Dropdown links black */
.why-page .why-profile-navbar .nav-dropdown-menu a,
.why-page .why-profile-navbar .nav-dropdown-menu a:link,
.why-page .why-profile-navbar .nav-dropdown-menu a:visited {
  color: #111111 !important;
  text-shadow: none !important;
}

/* Remove shadows only from header, mobile menu and dropdown */
.why-page .why-profile-navbar,
.why-page .why-profile-navbar.is-scrolled,
.why-page .why-profile-navbar .nav-menu,
.why-page .why-profile-navbar .nav-dropdown-menu {
  box-shadow: none !important;
}

/* Hover and active menu red */
.why-page .why-profile-navbar .nav-menu > a:hover,
.why-page .why-profile-navbar .nav-menu > a.active,
.why-page .why-profile-navbar .nav-dropdown-toggle:hover,
.why-page .why-profile-navbar .nav-dropdown-toggle.active,
.why-page .why-profile-navbar .nav-dropdown-menu a:hover,
.why-page .why-profile-navbar .nav-dropdown-menu a.active {
  color: var(--why-red) !important;
}