:root{
--blue:#2f6bff;--orange:#FF8500;--saffron:#f4c430;
--dark:#013144;--light:#f8f8ff;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins,Arial,sans-serif}
body{background:var(--dark);color:#fffefd;line-height:1.6}
/* 1) FIX: content container must never use negative calc paddings */
:root{
  --container: 1120px;
}

.content-wrap,
.container,
.wrap { /* keep whichever class you use */
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}

/* 2) FIX: hero content clipping + overflow */
.hero,
.hero-section,
.page-hero {
  overflow: hidden; /* prevents weird horizontal scroll */
}

.hero .content-wrap,
.hero-section .content-wrap,
.page-hero .content-wrap{
  position: relative;
  z-index: 2;
}

/* 3) FIX: remove the “split background” on mobile */
@media (max-width: 820px){
  /* If your hero uses a split overlay/pseudo element */
  .hero::before,
  .hero::after,
  .hero-section::before,
  .hero-section::after,
  .page-hero::before,
  .page-hero::after{
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
  }

  /* If your hero is a 2-column grid/flex on desktop */
  .hero-grid,
  .hero-row,
  .hero-inner{
    display: block !important;
  }

  /* Better mobile typography so headings don’t blow out */
  .hero h1{
    font-size: clamp(30px, 7vw, 44px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em;
    margin-inline: 0 !important;
  }

  /* Make CTA buttons wrap cleanly */
  .hero-cta,
  .cta-row{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .hero-cta a,
  .cta-row a,
  .hero-cta button{
    flex: 1 1 220px !important;
    min-width: 0 !important;
  }
}
/* LOADER */
#loader{position:fixed;inset:0;background:#016698;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999}
#loader img{width:120px;margin-bottom:20px}
.loader-bar{width:120px;height:4px;background:linear-gradient(90deg,var(--blue),var(--orange));animation:load 1.2s infinite}
@keyframes load{0%{width:0}100%{width:120px}}

/* NAV */
.header{position:fixed;top:0;width:100%;background:#016698;z-index:1000}
.nav{max-width:1200px;margin:auto;padding:15px;display:flex;justify-content:space-between;align-items:center}
.logo{height:40px}
.nav-links{display:flex;gap:25px;list-style:none}
.nav-links a{color:white;text-decoration:none;font-weight:500}
.nav-links a:hover{color:var(--orange)}
.menu-btn{display:none;font-size:26px;background:none;border:none;color:white}

/* HERO */
.hero{
  min-height:100vh;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(47,107,255,.35), transparent 60%),
    radial-gradient(700px 450px at 80% 20%, rgba(243,107,33,.28), transparent 55%),
    linear-gradient(to right, #013144, #0b0f1a);
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:110px 20px 60px; /* leave space for fixed header */
}

.hero-inner{max-width:900px;margin:auto}
.hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:16px;
  font-weight:700;
  opacity:.95;
}

.hero h1{font-size:3rem;line-height:1.1}
.hero span{color:var(--orange)}
.hero p{opacity:.9;margin:14px 0 22px}

.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
/* ✅ HERO: prevent CTA rows from crowding/overlap */
.hero-actions,
.hero-cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}

/* Make buttons stable across widths */
.hero-actions a,
.hero-cta-row a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  white-space:nowrap;
}

/* Tablet: buttons become neat 2-per-row */
@media (max-width: 900px){
  .hero-actions a,
  .hero-cta-row a{
    width: min(260px, 100%);
  }
}

/* Mobile: full width buttons */
@media (max-width: 520px){
  .hero-actions a,
  .hero-cta-row a{
    width: 100%;
  }
}

.btn-primary{
  background:linear-gradient(45deg,var(--blue),var(--orange));
  padding:14px 34px;border-radius:40px;
  text-decoration:none;color:white;font-weight:700
}
.btn-secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:14px 30px;border-radius:40px;
  text-decoration:none;color:white;font-weight:700
}
.btn-secondary:hover{border-color:rgba(255,255,255,.35)}

.hero-stats{
  margin-top:26px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.stat{
  min-width:170px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
}
.stat strong{display:block;font-size:1.05rem}
.stat span{opacity:.85}

/* SECTIONS */
.section{padding:90px 20px;max-width:1200px;margin:auto}
.light{background:var(--light);color:#013144}
.section h2{text-align:center;margin-bottom:40px;font-size:2.2rem}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:25px}

.card{
  background:#ffffff;
  padding:26px;
  border-radius:18px;
  transition:.25s;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  color:#013144;

  
}
.card:hover{transform:translateY(-8px)}

.feature-card h3{margin:10px 0 8px}
.feature-card p{opacity:.85}

.icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:linear-gradient(45deg,var(--blue),var(--orange));
  color:white;
  font-weight:900;
}

.mini-link{
  display:inline-block;
  margin-top:12px;
  text-decoration:none;
  font-weight:800;
  color:var(--blue);
}
.mini-link:hover{color:var(--orange)}


/* PORTFOLIO */
.portfolio-filters{text-align:center;margin-bottom:30px}
.portfolio-filters button{margin:8px;padding:10px 22px;border:none;border-radius:20px;background:var(--blue);color:white;cursor:pointer}
.portfolio-item{background:white;border-radius:15px;overflow:hidden;text-align:center;cursor:pointer;transition:.3s}
.portfolio-item img{width:100%;height:220px;object-fit:cover}
.portfolio-item:hover{transform:scale(1.04)}



/* ================================
   PORTFOLIO IMAGE FALLBACK
================================ */

/* Card still looks good without images */
.portfolio-item {
  display: block;
  background: linear-gradient(145deg, #0b2a3a, #0e3a52);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Image area */
.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Fallback when image is missing */
.portfolio-item.no-image::before {
  content: "Preview coming soon";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: linear-gradient(135deg, #0d3b55, #124e6d);
  color: rgba(255,255,255,.75);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* Card body spacing remains intact */
.portfolio-item > div {
  padding: 16px;
}

/* Filter tabs */
.filter-btn{
  background:#2f66ff;        /* normal */
  color:#fff;                 /* keep readable always */
  border:1px solid transparent;
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s ease;
}

.filter-btn:hover{
  filter:brightness(0.95);
}

/* Active tab */
.filter-btn.active{
  background:#0b2a63;         /* darker active */
  color:#fff;                 /* stay white */
  border-color:rgb(255, 129, 10);
  box-shadow:0 6px 18px rgba(11,42,99,0.22);
}

/* Optional: keyboard accessibility */
.filter-btn:focus-visible{
  outline:3px solid rgba(47,102,255,0.35);
  outline-offset:2px;
}

/* LIGHTBOX */
#lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);display:none;align-items:center;justify-content:center;z-index:2000}
#lightbox img{max-width:90%;max-height:85%;border-radius:15px}

/* TESTIMONIALS */
.testimonial-box{max-width:600px;margin:auto;background:white;color:#111111;padding:40px;border-radius:20px;text-align:center;box-shadow:0 20px 40px rgba(0,0,0,.2)}
.testimonial-controls button{background:var(--orange);border:none;color:white;font-size:22px;margin:10px;padding:8px 16px;border-radius:50%}

/* CONTACT */
.contact-form{max-width:500px;margin:40px auto;display:flex;flex-direction:column;gap:15px}
.contact-form input,.contact-form textarea{padding:12px;border-radius:10px;border:none}
.contact-form button{background:var(--orange);border:none;padding:12px;border-radius:20px;color:white;font-weight:600}

/* FOOTER (UPGRADED) */
.footer{
  background:#016698;
  color:#fff;
  margin-top:80px;
  font-size:.95rem;
  text-align:left;
}

.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:50px 20px 25px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.footer-col h4{margin-bottom:12px}
.footer-col p{opacity:.9;line-height:1.6}

.footer-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
  padding-left:0;
}
.footer-list a{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.footer-list a:hover{opacity:1;text-decoration:underline}

.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.badge{
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
}

.footer-cta{
  display:inline-block;
  margin-top:16px;
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  color:#0b0f1a;
  background:linear-gradient(45deg,var(--saffron),var(--orange));
}

.social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.social-btn{
  width:44px;height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.25);
  transition:.2s;
}
.social-btn:hover{
  transform:translateY(-2px);
  background:rgba(0,0,0,.28);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.22);
  text-align:center;
  padding:16px 14px;
  opacity:.95;
}

/* keep your back link */
.back-link{
  text-align:center;
  display:block;
  color:var(--blue);
  margin:40px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-wrap{grid-template-columns:1fr}
}

/* ANIMATIONS */
.animate{opacity:0;transform:translateY(40px);transition:.8s}
.animate.active{opacity:1;transform:translateY(0)}

/* MOBILE */
/* =========================
   GLOBAL MOBILE NAV FIX
   Applies to all pages
========================= */
@media (max-width: 800px){
  .nav{
    position:relative;
  }

  .menu-btn{
    display:block;
    font-size:26px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
    z-index:1102;
  }

  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:min(82vw, 340px);
    height:auto;
    max-height:calc(100vh - 90px);
    overflow-y:auto;
    background:#080808;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:18px 18px 24px;
    margin:0;
    list-style:none;
    border-radius:0 0 0 18px;
    box-shadow:-10px 0 30px rgba(0,0,0,.25);
    transition:right .28s ease;
    z-index:1101;
  }

  .nav-links.show{
    right:0;
  }

  .nav-links > li{
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.06);
    margin:0;
    padding:0;
  }

  .nav-links > li:last-child{
    border-bottom:none;
  }

  .nav-links > li > a{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:space-between;
    padding:11px 0;
    color:#fff;
    text-decoration:none;
    line-height:1.4;
  }
}

/* BLOG CARD LINKS (FIXED - removed typos that were breaking CSS) */
a.card{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.read-more{
  color:var(--blue);
  font-weight:600;
}

/* ARTICLE ACTIONS (DEDUPLICATED) */
.article-meta{
  text-align:center;
  opacity:.7;
  margin-bottom:10px;
}
.article-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  margin:10px auto 25px;
  flex-wrap:wrap;
}
.action-btn,
.article-actions button{
  border:none;
  cursor:pointer;
  padding:10px 18px;
  border-radius:999px;
  background:linear-gradient(45deg,var(--blue),var(--orange));
  color:white;
  font-weight:600;
}
.action-btn:active,
.article-actions button:active{
  transform:scale(.98);
}

.article-img{
  width:100%;
  border-radius:16px;
  margin-bottom:20px;
}
.article-date{
  opacity:.6;
  margin-bottom:25px;
}

/* INDEX: Featured Work preview (added for the index body you requested) */
.portfolio-preview{
  text-decoration:none;
  color:inherit;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  transition:.25s;
  display:block;
}
.portfolio-preview:hover{transform:translateY(-6px)}
.portfolio-preview img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.pp-text{padding:14px 16px}
.pp-text span{display:block;opacity:.75;margin-top:4px}

/* INDEX: CTA card */
.cta-card{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.cta-card{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

video{outline:1px solid rgba(0,0,0,.08)}


/* =========================
   PORTFOLIO ONLY FIX
   (keeps cards white + readable)
========================= */

/* Your portfolio cards are anchors with classes: .portfolio-item.card
   .portfolio-item was overriding .card background (dark), so text became unreadable. */
a.portfolio-item.card{
  background:#ffffff !important;
  color:#013144 !important;
  overflow:hidden;
  display:block;
}

/* Ensure the inner text area stays white too */
a.portfolio-item.card > div{
  background:#ffffff !important;
}

/* Make headings + body text readable */
a.portfolio-item.card h3{ color:#013144 !important; }
a.portfolio-item.card p{ color:#013144 !important; opacity:.85; }
a.portfolio-item.card strong{ color:#013144 !important; }

/* Keep your link accent color */
a.portfolio-item.card .mini-link{
  color:#2f66ff !important;
  font-weight:700;
}

/* If an image is missing, don’t show broken layout */
a.portfolio-item.no-image{
  min-height:220px;
  display:flex;
  align-items:center;
}

.case-credit{
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 24px;
}

/* =========================
   LOADER SAFETY (MUST ADD)
   Prevents loader from trapping mobile pages
========================= */
#loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease;
}

/* =========================
   MOBILE SAFETY FOR ANIMATIONS
   If animations.js is slow or blocked, content must still show.
========================= */
@media (max-width: 800px){
  .animate{
    opacity:1 !important;
    transform:none !important;
  }
}

/* Default (desktop & tablet) */
#postHero {
  width: 640px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 18px;
}

/* Mobile fix */
@media (max-width: 640px) {
  #postHero {
    height: auto;
    max-height: 260px;
    object-fit: contain;
    background: #0a5c85; /* optional brand-safe fallback */
  }
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Mobile/Global overflow safety (fix hero cut-off) ===== */
img{
  max-width:100%;
  height:auto;
}

/* Make hero media always fit */
.hero figure{ max-width:100%; }
.hero figure img{
  width:100%;
  height:auto;
  display:block;
}
/* =========================
   MVP HEADER ONLY
   Used on:
   - homepage
   - marketplace category pages
   - marketplace product pages
========================= */

.header--mvp .nav-caret{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  min-width:20px;
  font-size:.82rem;
  line-height:1;
  transition:transform .2s ease;
}

.header--mvp .has-dropdown > a{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.header--mvp .has-dropdown:hover > a .nav-caret,
.header--mvp .has-dropdown:focus-within > a .nav-caret,
.header--mvp .has-dropdown.open > a .nav-caret{
  transform:rotate(180deg);
}

/* desktop */
@media (min-width:1025px){
  .header--mvp,
  .header--mvp .nav,
  .header--mvp .nav-links,
  .header--mvp .nav-links > li{
    overflow:visible;
  }

  .header--mvp .nav-links > li{
    position:relative;
  }

  .header--mvp .dropdown{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    min-width:240px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    box-shadow:0 18px 40px rgba(0,0,0,.14);
    padding:10px 0;
    margin:0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(8px);
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index:1200;
  }

  .header--mvp .dropdown li{
    list-style:none;
    margin:0;
    padding:0;
  }

  .header--mvp .dropdown li a{
    display:block;
    padding:12px 18px;
    color:#08354a;
    text-decoration:none;
    line-height:1.4;
    white-space:nowrap;
  }

  .header--mvp .dropdown li a:hover{
    background:rgba(4,104,154,.07);
    color:#04689A;
  }

  .header--mvp .has-dropdown:hover > .dropdown,
  .header--mvp .has-dropdown:focus-within > .dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
}

/* mobile + tablet */
@media (max-width:1024px){
  .header--mvp .nav-links{
    width:min(82vw, 340px);
    height:auto;
    max-height:calc(100vh - 90px);
    overflow-y:auto;
    padding:18px 18px 24px;
  }

  .header--mvp .nav-links > li{
    width:100%;
  }

  .header--mvp .has-dropdown > a{
    display:flex;
    width:100%;
    justify-content:space-between;
    align-items:center;
    padding:11px 0;
  }

  .header--mvp .nav-caret{
    min-width:28px;
    margin-left:12px;
    font-size:.9rem;
  }

  .header--mvp .dropdown{
    display:block;
    position:static;
    width:100%;
    min-width:100%;
    max-height:0;
    overflow:hidden;
    background:transparent;
    border:none;
    box-shadow:none;
    margin:0;
    padding:0 0 0 14px;
    list-style:none;
    opacity:1;
    visibility:visible;
    transform:none;
    transition:max-height .25s ease, padding .25s ease;
  }

  .header--mvp .has-dropdown.open > .dropdown{
    max-height:500px;
    padding:2px 0 10px 14px;
  }

  .header--mvp .dropdown li{
    list-style:none;
    margin:0;
    padding:0;
  }

  .header--mvp .dropdown li a{
    display:block;
    width:100%;
    padding:7px 0;
    color:#fff;
    text-decoration:none;
    line-height:1.45;
    opacity:.92;
    font-size:.94rem;
  }

  .header--mvp .dropdown li a:hover{
    color:#f28c28;
  }
}




/* =========================
   KAMOG MODERN UI UPGRADE
   Add at END of style.css
========================= */

:root{
  --brand-blue:#016698;
  --brand-blue-2:#2f6bff;
  --brand-orange:#ff8500;
  --brand-dark:#013144;
  --brand-ink:#082f42;
  --brand-soft:#f6f9ff;

  --radius-lg:32px;
  --radius-md:22px;
  --shadow-soft:0 18px 50px rgba(0,0,0,.12);
  --shadow-hover:0 28px 80px rgba(0,0,0,.16);
}

/* smoother page */
html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(47,107,255,.18), transparent 60%),
    var(--brand-dark);
}

/* premium header */
.header{
  background:rgba(1,102,152,.9);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.nav{
  padding:12px 18px;
}

/* modern hero */
.hero{
  min-height:92vh;
  padding:120px 20px 80px;
  background:
    radial-gradient(800px 480px at 18% 25%, rgba(47,107,255,.38), transparent 60%),
    radial-gradient(700px 420px at 85% 20%, rgba(255,133,0,.28), transparent 58%),
    linear-gradient(135deg,#013144 0%,#061522 100%);
}

.hero h1{
  font-size:clamp(2.4rem, 6vw, 5rem);
  letter-spacing:-.05em;
  line-height:.98;
}

.hero p{
  max-width:760px;
  margin:18px auto 26px;
  font-size:clamp(1rem, 2vw, 1.18rem);
}

/* better sections */
.section{
  padding:clamp(70px, 8vw, 120px) 20px;
}

.light{
  background:linear-gradient(180deg,#f8fbff,#eef5ff);
}

/* premium cards */
.card{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(1,49,68,.08);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(47,107,255,.22);
}

/* buttons */
.btn-primary,
.btn-secondary,
.footer-cta{
  border-radius:999px;
  transition:transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.footer-cta:hover{
  transform:translateY(-2px);
}

.btn-primary{
  box-shadow:0 14px 34px rgba(47,107,255,.28);
}

/* portfolio cards */
.portfolio-preview,
.portfolio-item{
  border-radius:26px;
}

.portfolio-preview img,
.portfolio-item img{
  transition:transform .35s ease;
}

.portfolio-preview:hover img,
.portfolio-item:hover img{
  transform:scale(1.045);
}

/* faster, smoother animations */
.animate{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .5s ease, transform .5s ease;
  will-change:opacity, transform;
}

.animate.active{
  opacity:1;
  transform:translateY(0);
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }

  .animate{
    opacity:1 !important;
    transform:none !important;
  }
}
