  .pc-br{ display:block; } .mobile-br{ display:none; }  @media (max-width:768px){ .pc-br{ display:none; } .mobile-br{ display:block; } }  .hero-reveal{ opacity: 0; transform: translate3d(0, 48px, 0); will-change: transform, opacity; animation: heroReveal .8s cubic-bezier(.16,.84,.44,1) forwards; } @keyframes heroReveal{ from{ opacity: 0; transform: translate3d(0, 48px, 0); } to{ opacity: 1; transform: translate3d(0, 0, 0); } }  .reveal-1{ animation-delay: .08s; } .reveal-2{ animation-delay: .22s; } .reveal-3{ animation-delay: .36s; }  @media (prefers-reduced-motion: reduce){ .hero-reveal{ animation: none; opacity: 1; transform: none; } }  .ace-card-normal-01{ background:#FCFCFC; border:1px solid #ECECEC; border-radius:20px; box-shadow: 0 1px 2px rgba(0,0,0,.03); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }  .ace-card-normal-01:hover{ border-color:#DADADA; box-shadow: 0 12px 32px -8px rgba(0,0,0,.08); }  @media (max-width:767px){ .ace-card-normal-01{ border-radius:18px; box-shadow: 0 1px 2px rgba(0,0,0,.025); } .ace-card-normal-01:hover{ box-shadow: 0 8px 24px -8px rgba(0,0,0,.06); } }