/* =============================================================
   CVision International — Scaling Fix  FINAL
   Load LAST in <head>, after all other stylesheets.

   ONLY affects Windows 125% OS scaling (devicePixelRatio=1.25).
   Everything — zoom AND font fixes — is inside the media query.
   100%, 150%, 200% scaling = completely untouched.
   Mobile = completely untouched.
   ============================================================= */

@media screen and (resolution: 1.25dppx),
       screen and (-webkit-device-pixel-ratio: 1.25),
       screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {

  html {
    zoom: 0.8;
  }

  /* Font sizes = intended_px ÷ 0.8 so zoom:0.8 cancels out
     zoom:0.8 × CSS_value = original intended visual size
     e.g. h2: 60px × 0.8 = 48px visual ✓                    */

  html {
    font-size: 22.5px;
  }
  body, p, .description-wrap p {
    font-size: 22.5px;
  }
  h1, .h1, .rich-text-content h1, .rich-text-content-uf h1 {
    font-size: 80px;
  }
  h2, .h2, .rich-text-content h2, .rich-text-content-uf h2 {
    font-size: 60px;
  }
  h3, .h3, .rich-text-content h3, .rich-text-content-uf h3 {
    font-size: 40px;
  }
  h4, .h4, .rich-text-content h4, .rich-text-content-uf h4 {
    font-size: 30px;
  }
  h5, .h5, .rich-text-content h5, .rich-text-content-uf h5 {
    font-size: 25px;
  }
  h6, .h6, .rich-text-content h6, .rich-text-content-uf h6 {
    font-size: 22.5px;
  }
  .navbar.navbar-dark .navbar-nav .nav-link,
  .navbar.navbar-dark .dropdown-menu .dropdown-item {
    font-size: 22.5px !important;
  }
  .button-primary, .button-secondary,
  .bg-c3 .button-primary, .bg-c4 .button-primary, .bg-c5 .button-primary,
  .bg-c3 .button-secondary, .bg-c4 .button-secondary, .bg-c5 .button-secondary {
    font-size: 22.5px !important;
  }
  footer a, footer .footer_quicklinks .footer-list li a,
  .footer-nav ul li a, .desig-credit a, .copyright-year,
  footer.four-column-view .copyright-year, footer.four-column-view .design-dev-credit,
  footer.four-column-view .footer-contact-list p,
  .footer_contact p, address, .address-text p, .email-text p, .phone-text p {
    font-size: 22.5px !important;
  }
  .footer_social-title h4, .footer_contact-title h4 {
    font-size: 30px !important;
  }
  footer .footer_quicklinks-title h4 {
    font-size: 25px !important;
  }
  .rich-text-content p, .rich-text-content ul li, .rich-text-content-uf ul li {
    font-size: 22.5px;
  }
  .hero-banner .hero-caption-title p {
    font-size: 75px;
  }
  .hero-banner .achievement-controls .achievement-title .counter-heading,
  .hero-banner .achievement-controls .achievement-title .counter-heading .counter {
    font-size: 40px;
  }
  .stripe-partner .left-text p {
    font-size: 35px;
  }
  .highlight-text {
    font-size: 25px !important;
  }
  .media-partners p {
    font-size: 17.5px !important;
  }
  .livechat-button {
    font-size: 18.75px !important;
  }
  .livechat-button i {
    font-size: 31.25px !important;
  }
  .pods.pod-box-variation .pods-inner .pods-inner-items .pods-title {
    font-size: 30px !important;
  }
  .whitepaper-card .fi-large-card .content-col .whitepaper-title {
    font-size: 40px;
  }
  .career-listing .career-jobs-list .career-job-box .job-box-top-content .job-title-text {
    font-size: 40px;
  }
}


/* Firefox < 126 fallback */
@supports not (zoom: 1) {
  @media screen and (resolution: 1.25dppx),
         screen and (min-resolution: 120dpi) and (max-resolution: 143dpi) {
    html {
      transform: scale(0.8);
      transform-origin: top left;
      width: 125%;
      overflow-x: hidden;
    }
  }
}
