 
    :root {
  --brand-clr-bg:#EFF2F6;
  --blue-main:#27397f;
  --brand-color:#27397f;
  --light-gray:#F6F8FA;
  --border-color:#DDE3EA;
  --text-color:#16233A;
  --text-light:#5C6B80;
  --bg-color:#0B1A2C;
  --card-color:#0F2236;
  --text-color-white:#ffffff;
  --yellow-clr:rgb(253,231,115);
  --gold:#A9791F;
  --display:'Big Shoulders Display',sans-serif;
  --mono:'IBM Plex Mono',monospace;
  --body:'IBM Plex Sans',sans-serif;
}

/* ============ RESET / BASE ============ */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--body);color:var(--text-color);background:#fff;overflow-x:hidden}
h1,h2,h3,h4{font-family:var(--display);font-weight:800;letter-spacing:0.01em}
img{max-width:100%}
section{position:relative}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

.section-eyebrow{font-family:var(--mono);font-size:0.74rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold);display:inline-flex;align-items:center;gap:10px;margin-bottom:14px}
.section-eyebrow::before{content:"";width:22px;height:2px;background:var(--gold)}

/* Reveal animations */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-32px);transition:opacity .7s ease,transform .7s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(32px);transition:opacity .7s ease,transform .7s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}
@media(prefers-reduced-motion:reduce){.reveal,.reveal-left,.reveal-right{transition:none;opacity:1;transform:none}}

/* ============ HEADER ============ */
.site-header{position:fixed;top:0;left:0;width:100%;z-index:200;padding:10px 0px;transition:background .35s ease,padding .35s ease,box-shadow .35s ease}
.header-shell{display:flex;align-items:center;justify-content:space-between;margin:0 auto}
.site-header.scrolled{background:rgba(11,26,44,.94);backdrop-filter:blur(10px);padding:0px 0px;box-shadow:0 10px 30px rgba(0,0,0,.18)}

.nav-logo{display:inline-flex;align-items:center;background:#fff;padding:10px 20px;clip-path:polygon(0 0,100% 0,94% 100%,0 100%);transition:padding .35s ease}
.nav-logo img{width:260px;display:block;transition:width .35s ease}
.site-header.scrolled .nav-logo{padding:8px 18px}
.site-header.scrolled .nav-logo img{width:220px}

.header-right{display:flex;align-items:center;gap:22px}
.header-cta{display:flex;align-items:center;gap:0}
.cta-block{padding:6px 18px;border-right:1px solid rgba(255,255,255,.18);text-align:left}
.cta-block:last-child{border-right:none}
.cta-block-lbl{display:block;font-family:var(--mono);font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--yellow-clr);opacity:.85;margin-bottom:2px}
.cta-block-no{font-family:var(--mono);font-size:.92rem;font-weight:600;color:#fff;text-decoration:none;white-space:nowrap;transition:color .25s}
.cta-block-no:hover{color:var(--yellow-clr)}

.social-icons{display:flex;align-items:center;gap:12px}
.social-icons a{color:#fff;font-size:.92rem;text-decoration:none;width:34px;height:34px;border:1px solid rgba(255,255,255,.25);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:.3s}
.social-icons a:hover{background:var(--gold);border-color:var(--gold)}

@media(max-width:991px){
  .header-cta{display:none}
  .site-header{padding:12px 0px}
  .nav-logo img{width:140px}
}
@media(max-width:575px){
   .site-header{padding: 10px 0px !important;background-color: #fff;}
  .nav-logo img{width:85% !important}
  .nav-logo{transition:unset;clip-path:unset; padding: unset !important; justify-content: center;}
  .social-icons a{width:30px;height:30px;font-size:.8rem}
  .header-right{display: none;}
  .header-shell{    justify-content: center; margin: 0 auto;}
  .site-header.scrolled .nav-logo { padding: unset; }
   .site-header.scrolled{padding: 10px 0px !important;background-color: #fff;}
}

/* ============ HERO :: ASYMMETRIC SPLIT ============ */
.hero-section{min-height:100vh;background:var(--bg-color);display:flex;align-items:stretch}
.hero-grid{display:grid;grid-template-columns: 56% 44%;width:100%;min-height:100vh}

.hero-media{position:relative;overflow:hidden;}
.hero-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.hero-media-fade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,26,44,.15) 0%,rgba(11,26,44,.55) 100%)}

.hero-panel{background:var(--bg-color);display:flex;align-items:center;position:relative;padding:0 4vw}
.hero-panel::before{content:"";position:absolute;left:0;top:0;bottom:0;width:1px;background:linear-gradient(180deg,transparent,rgba(253,231,115,.25),transparent)}
.hero-panel-inner{padding:120px 0 80px}

.h-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:24px}
.h-eyebrow-dash{width:34px;height:2px;background:var(--yellow-clr)}
.h-eyebrow-txt{font-family:var(--mono);font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--yellow-clr)}

.hero-section h1{    font-size: 50px;line-height:1.05;color:#fff;font-weight:800;margin-bottom:22px}
.hero-section h1 em{font-style:normal;color:var(--yellow-clr)}

.hero-sub{font-size:1.02rem;line-height:1.85;color:rgba(255,255,255,.72);max-width:420px;margin-bottom:42px}

 
@media(max-width:991px){
  .hero-grid{grid-template-columns:1fr;grid-template-rows:auto auto}
  .hero-media{clip-path:none;height:46vh;position:relative}
  .hero-panel{padding:0 6vw}
  .hero-panel-inner{padding:48px 0 60px}
  .hero-panel::before{display:none}
}
@media(max-width:575px){
  .hero-section h1{font-size:2rem} 
  .hero-spec{flex:1 1 45%;border-right:none;padding-right:16px}
  .hero-section{padding-top: 120px;}
}

/* ============ ABOUT :: DIAGONAL SPLIT ============ */
.about-section{background:var(--brand-clr-bg);padding:60px 0 60px;position:relative}
.about-diagonal-bg{position:absolute;top:0;right:0;width:46%;height:100%;background:linear-gradient(160deg,#fff 0%,var(--light-gray) 100%);clip-path:polygon(22% 0,100% 0,100% 100%,0 100%)}

.about-wrap{position:relative;max-width:1320px;margin:0 auto;padding:0 28px;display:grid;grid-template-columns:90px 1fr 1fr;gap:30px;align-items:start}

.about-mark{display:flex;justify-content:center;padding-top:10px}
.about-mark-year{font-family:var(--mono);font-size:.78rem;font-weight:600;letter-spacing:.1em;color:var(--gold);writing-mode:vertical-rl;text-orientation:mixed;border-left:1px solid var(--border-color);padding-left:14px;line-height:1.6}

.about-left h2{font-size:clamp(2rem,3.4vw,2.9rem);color:var(--text-color);line-height:1.12;margin:10px 0 32px}
.about-left h2 span{display:block;color:var(--blue-main)}

.about-img-frame{position:relative;clip-path:polygon(0 8%,100% 0,100% 92%,0 100%);overflow:hidden;border:1px solid var(--border-color)}
.about-img-frame img{display:block;width:100%}

.about-card{background:#fff;border:1px solid var(--border-color);border-radius:4px 28px 4px 28px;padding:48px 34px 32px;position:relative;box-shadow:0 24px 60px rgba(16,27,45,.06);margin-top:48px}
.about-card p{margin:0 0 20px;color:var(--text-light);font-size:1rem;line-height:1.95}
.about-card p:last-child{margin-bottom:0}
.about-card strong{color:var(--text-color);font-weight:600}

@media(max-width:991px){
  .about-diagonal-bg{display:none}
  .about-wrap{grid-template-columns:1fr;gap:0;padding: 0 12px;}
  .about-mark{display:none}
  .about-card{margin-top:36px}
}
@media(max-width:575px){
  .about-section{padding:70px 0 60px}
  .about-left h2{font-size:1.7rem}
  .about-card{padding:40px 22px 26px}
}

/* ============ PRODUCTS :: SPEC RAIL ============ */
.products-section{background:#fff;padding:60px 0}
.products-section h2{font-size:clamp(2rem,3.4vw,2.9rem);color:var(--text-color);line-height:1.1;margin-top:6px}
.products-lead{color:var(--text-light);font-size:1rem;line-height:1.85;padding-left:24px;border-left:2px solid var(--gold)}

.spec-rail{border-top:1px solid var(--border-color)}
.spec-row{display:flex;align-items:center;gap:26px;padding:28px 18px;border-bottom:1px solid var(--border-color);text-decoration:none;position:relative;border-left:3px solid transparent;transition:.35s ease;background:transparent}
.spec-row:hover{border-left-color:var(--gold);background:var(--light-gray);padding-left:28px}

.spec-gauge{font-family:var(--mono);font-size:.85rem;font-weight:600;color:var(--gold);flex:0 0 30px}
.spec-thumb { flex: 0 0 200px; height: 96px; border-radius: 14px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%); }
.spec-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.spec-row:hover .spec-thumb img{transform:scale(1.1)}

.spec-body{flex:1;min-width:0}
.spec-body h4{font-size:1.18rem;color:var(--text-color);margin-bottom:6px;font-weight:700}
.spec-body p{color:var(--text-light);font-size:.88rem;line-height:1.7;margin:0;max-width:640px}

.spec-arrow{flex:0 0 auto;width:44px;height:44px;border-radius:50%;border:1px solid var(--border-color);display:flex;align-items:center;justify-content:center;color:var(--blue-main);transition:.3s}
.spec-row:hover .spec-arrow{background:var(--blue-main);color:#fff;border-color:var(--blue-main);transform:rotate(45deg)}

@media(max-width:767px){
  .products-section{padding:70px 0}
  .spec-row{flex-wrap:wrap;gap:14px;padding:22px 12px;flex-direction: column;}
  .spec-thumb{flex:unset;height:unset}
  .spec-body{flex:1 1 calc(100% - 72px - 30px - 26px)}
  .spec-arrow{display:none}
  .products-lead{margin-top:18px}
  .spec-gauge{position: absolute; z-index: 99; top: 50px; right: 35px; background: #fff; padding: 10px; border-radius: 50%; width: 40px; height: 40px;}
}

/* ============ CERTIFICATIONS :: STAMP STRIP ============ */
.certification-section{background:var(--bg-color);padding:60px 0;margin-bottom:0}
.certification-section h2{font-size:clamp(2rem,3.4vw,2.7rem);color:#fff;margin-top:8px}
.certification-section .section-eyebrow{color:var(--yellow-clr)}
.certification-section .section-eyebrow::before{background:var(--yellow-clr)}

.cert-stamp-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.cert-stamp{display:block;text-decoration:none;background:var(--card-color);border:1px solid rgba(255,255,255,.08);padding:26px 22px 24px;position:relative;clip-path:polygon(0 0,92% 0,100% 14%,100% 100%,8% 100%,0 86%);transition:.4s}
.cert-stamp:hover{transform:translateY(-6px);border-color:rgba(253,231,115,.3)}

.cert-stamp-img{height:110px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;background:#fff;border-radius:10px}
.cert-stamp-img img{max-height:90%;max-width:90%;object-fit:contain}

.cert-stamp-info strong{display:block;color:#fff;font-size:1.1rem;font-weight:700;margin-bottom:4px}
.cert-stamp-info span{display:block;color:rgba(255,255,255,.55);font-size:.82rem;line-height:1.5}

.cert-stamp-cta{display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:var(--yellow-clr);font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase}

@media(max-width:991px){.cert-stamp-strip{grid-template-columns:repeat(2,1fr)}}
@media(max-width:575px){
  .certification-section{padding:70px 0}
  .cert-stamp-strip{grid-template-columns:1fr;gap:16px}
}

/* ============ FACILITY VIDEO ============ */
.facility-section{background:#fff;padding:0}
.video-skew-frame{position:relative;height:560px;overflow:hidden;clip-path:polygon(0 6%,100% 0,100% 94%,0 100%)}
.video-skew-frame video{width:100%;height:100%;object-fit:cover;display:block}
.video-skew-tag{position:absolute;left:6%;bottom:8%;background:rgba(11,26,44,.82);backdrop-filter:blur(6px);padding:18px 26px;border-left:3px solid var(--gold);color:#fff}
.video-skew-tag span{display:block;font-family:var(--mono);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:var(--yellow-clr);margin-bottom:6px}
.video-skew-tag strong{font-family:var(--display);font-size:1.3rem;font-weight:700}

@media(max-width:767px){
  .video-skew-frame{height:340px;clip-path:polygon(0 4%,100% 0,100% 96%,0 100%)}
  .video-skew-tag{left:5%;bottom:6%;padding:14px 18px}
  .video-skew-tag strong{font-size:1.02rem}
}

/* ============ WHY :: ZIG-ZAG ============ */
.why-section{background:var(--brand-clr-bg);padding:60px 0}
.why-section .why-hero-text h2{font-size:clamp(2rem,3.6vw,2.9rem);color:var(--text-color);margin-top:8px}
.why-section .why-lead{font-size:1rem;color:var(--text-light);max-width:600px;margin:14px auto 0;line-height:1.8}

.zigzag-list{display:flex;flex-direction:column;gap:6px;margin-bottom:0px}
.zigzag-row{display:flex;align-items:center;gap:30px;padding:30px 10px;border-bottom:1px solid var(--border-color)}
.zigzag-row:first-child{border-top:1px solid var(--border-color)}
.zz-reverse{flex-direction:row-reverse;text-align:right}

.zz-icon{flex:0 0 76px;height:76px;background:var(--blue-main);clip-path:polygon(20% 0,100% 0,80% 100%,0 100%);display:flex;align-items:center;justify-content:center}
.zz-icon i{font-size:1.5rem;color:var(--yellow-clr)}

.zz-text{flex:1}
.zz-text h4{font-size:1.4rem;color:var(--text-color);margin-bottom:8px;font-weight:700}
.zz-text p{color:var(--text-light);font-size:.92rem;line-height:1.8;margin:0;max-width:560px}
.zz-reverse .zz-text p{margin-left:auto}

.manifesto-split{display:grid;grid-template-columns:1fr 1fr;gap:0;clip-path:polygon(0 0,100% 0,100% 100%,0 100%)}
.manifesto-panel{padding:54px 46px;position:relative}
.manifesto-dark{background:var(--blue-main);clip-path:polygon(0 0,96% 0,100% 100%,0 100%)}
.manifesto-dark p{color:rgba(255,255,255,.85)}
.manifesto-light{background:#fff;border:1px solid var(--border-color);clip-path:polygon(0 0,100% 0,100% 100%,4% 100%);margin-left:-30px;padding-left:76px}
.manifesto-light p{color:var(--text-light)}

.manifesto-label{font-family:var(--mono);font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:16px}
.manifesto-dark .manifesto-label{color:var(--yellow-clr)}
.manifesto-light .manifesto-label{color:var(--gold)}
.manifesto-panel p{font-size:.95rem;line-height:2;margin:0}

@media(max-width:991px){
  .zigzag-row,.zz-reverse{flex-direction:row;text-align:left}
  .zz-reverse .zz-text p{margin-left:0}
  .manifesto-split{grid-template-columns:1fr;clip-path:none}
  .manifesto-dark,.manifesto-light{clip-path:none;margin-left:0;padding:40px 30px}
}
@media(max-width:575px){
  .why-section{padding:70px 0}
  .zigzag-row{gap:18px;padding:22px 4px}
  .zz-icon{flex:0 0 60px;height:60px}
  .zz-text h4{font-size:1.15rem}
}

/* ============ CTA BANNER ============ */
.cta-banner-section{padding:0;background:var(--brand-clr-bg)}
.cta-banner{background:linear-gradient(120deg,var(--blue-main) 0%,#1d2d68 100%);clip-path:polygon(0 12%,100% 0,100% 88%,0 100%);padding:60px 6vw;display:flex;justify-content:space-between;align-items:center;gap:40px;flex-wrap:wrap}

.cta-banner-text h3{font-size:clamp(1.8rem,3vw,2.4rem);color:#fff;margin-bottom:10px}
.cta-banner-text p{color:rgba(255,255,255,.75);font-size:1rem;margin:0}

.cta-banner-pills{display:flex;gap:16px;flex-wrap:wrap}
.cta-pill-flat{display:inline-flex;align-items:center;gap:10px;background:var(--yellow-clr);color:var(--bg-color);padding:16px 26px;text-decoration:none;font-weight:700;font-family:var(--mono);font-size:.92rem;clip-path:polygon(8% 0,100% 0,92% 100%,0 100%);transition:.3s}
.cta-pill-flat:hover{background:#fff}

@media(max-width:767px){
  .cta-banner{padding:46px 6vw;clip-path:polygon(0 6%,100% 0,100% 94%,0 100%)}
  .cta-banner-text h3{font-size:1.5rem}
}

/* ============ CLIENTS :: STAGGERED GRID ============ */
.clients-section{background:#fff;padding:60px 0}
.clients-section h2{font-size:clamp(2rem,3.4vw,2.9rem);color:var(--text-color)}
.clients-sub{color:var(--text-light);font-size:.9rem;margin-top:6px}

.segments-stagger{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:1rem}
.segment{background:var(--light-gray);border:1px solid var(--border-color);border-radius:18px;padding:28px 24px}
.seg-offset{transform:translateY(26px)}

.segment .seg-header{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.segment .seg-icon{width:38px;height:38px;background:var(--blue-main);clip-path:polygon(15% 0,100% 0,85% 100%,0 100%);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.segment .seg-icon i{color:var(--gold);font-size:.9rem}
.segment .seg-title{font-size:.95rem;font-weight:700;color:var(--text-color);line-height:1.2}
.segment .seg-sub{font-size:.65rem;color:var(--text-light);letter-spacing:.1em;text-transform:uppercase;margin-top:2px;font-family:var(--mono)}
.segment .divider{height:1px;background:var(--border-color);margin-bottom:16px}
.segment .client-list{display:flex;flex-direction:column}
.segment .client-row{display:flex;align-items:center;gap:9px;padding:7px 0;border-bottom:1px solid var(--border-color)}
.segment .client-row:last-child{border-bottom:none}
.segment .client-dot{width:4px;height:4px;background:var(--gold);border-radius:50%;flex-shrink:0}
.segment .client-name{font-size:.8rem;color:var(--text-color);font-weight:500}
.segment .more-tag{font-size:.68rem;color:var(--text-light);margin-top:8px;font-style:italic;padding-left:13px;font-family:var(--mono)}

@media(max-width:1100px){
  .segments-stagger{grid-template-columns:repeat(2,1fr)}
  .seg-offset{transform:none}
}
@media(max-width:575px){
  .clients-section{padding:70px 0}
  .segments-stagger{grid-template-columns:1fr;margin-top:2rem;gap:14px}
  .segment{padding:22px 20px}
}

/* ============ FOOTER ============ */
.site-footer{background:var(--bg-color);position:relative;overflow:hidden}
.footer-skew-top { height: 50px; background: #fff; clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%); position: relative; top: -2px; }
.footer-skew-top::before{content:""}

.site-footer .footer-top{padding:80px 0 56px;position:relative;z-index:2}
.site-footer .footer-logo{background:#fff;padding:20px;border-radius:4px 18px 4px 18px;display:inline-block;margin-bottom:24px}
.site-footer .footer-logo img{max-height:64px}
.site-footer .footer-desc{color:rgba(255,255,255,.65);font-size:.92rem;line-height:1.9;max-width:380px;margin-bottom:24px}

.site-footer .footer-social-row{display:flex;gap:12px}
.site-footer .footer-social-row a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);color:#fff;transition:.3s}
.site-footer .footer-social-row a:hover{background:var(--gold);border-color:var(--gold);transform:translateY(-3px)}

.site-footer .footer-col-title{font-family:var(--display);font-size:1.45rem;color:#fff;margin-bottom:24px;padding-bottom:14px;position:relative}
.site-footer .footer-col-title::after{content:"";position:absolute;left:0;bottom:0;width:48px;height:3px;background:var(--gold)}

.site-footer .footer-contact-item{display:flex;gap:14px;margin-bottom:18px}
.site-footer .footer-contact-item i{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.05);display:flex;align-items:center;justify-content:center;color:var(--yellow-clr);font-size:.86rem;flex-shrink:0}
.site-footer .footer-contact-item span{color:rgba(255,255,255,.65);font-size:.88rem;line-height:1.8}
.site-footer .footer-contact-item a{color:#fff;text-decoration:none;transition:.3s}
.site-footer .footer-contact-item a:hover{color:var(--yellow-clr)}

.footer-link-list{list-style:none}
.footer-link-list li{padding:9px 0;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-link-list li:last-child{border-bottom:none}
.footer-link-list li a{color:rgba(255,255,255,.65);font-size:.88rem;text-decoration:none;transition:.25s;display:inline-flex;align-items:center;gap:8px}
.footer-link-list li a i{color:var(--gold);font-size:.68rem}
.footer-link-list li a:hover{color:var(--yellow-clr);padding-left:4px}

.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:18px 0;position:relative;z-index:2}
.footer-bottom .container{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}
.footer-bottom .copyright,.footer-bottom .designer{color:rgba(255,255,255,.45);font-size:.82rem}
.footer-bottom .designer a{color:var(--yellow-clr);text-decoration:none;font-weight:600}

@media(max-width:767px){
    br{display: none !important;}
  .footer-bottom .container{flex-direction:column;text-align:center}
  .site-footer .footer-top{padding:56px 0 40px}
  .site-footer .footer-col-title{margin-top:30px}
  section{overflow-x: hidden;}
  footer br{display: block !important;}
  .site-footer .footer-logo{display: none !important;}
}

/* ============ MOBILE CALL STRIP / BACK TO TOP ============ */
.mobile-call-strip{position:fixed;left:5px;right:5px;bottom:5px;display:none;align-items:center;justify-content:center;gap:6px;padding:12px;background:var(--blue-main);color:#fff;font-size:12px;font-weight:600;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.18);z-index:9999}
.mobile-call-strip a{color:#fff;text-decoration:none;white-space:nowrap}
.mobile-call-strip span{color:#fff}
@media(max-width:767px){.mobile-call-strip{display:flex}body{padding-bottom:60px}}

#backToTop{position:fixed;right:20px;bottom:20px;width:44px;height:44px;border:0;background:var(--blue-main);color:#fff;font-size:18px;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 14px rgba(0,0,0,.22);opacity:0;visibility:hidden;transform:translateY(15px);transition:.3s;z-index:9999;clip-path:polygon(20% 0,100% 0,80% 100%,0 100%)}
#backToTop.show{opacity:1;visibility:visible;transform:translateY(0)}
#backToTop:hover{background:var(--gold)}
@media(max-width:767px){#backToTop{width:40px;height:40px;font-size:16px;right:15px;bottom:62px}}
 
