/* =====================================================
   AMR IMPEX — PREMIUM THEME ENHANCEMENTS v2.0
   Stacks on top of: amr-story-redesign.css
   ===================================================== */

/* -------------------------------------------------------
   1. GOOGLE FONTS — Load Inter & Montserrat locally
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* -------------------------------------------------------
   2. DESIGN TOKENS — Single source of truth
------------------------------------------------------- */
:root {
  --clr-navy:       #1e1c72;
  --clr-navy-light: #323092;
  --clr-navy-dark:  #13124a;
  --clr-red:        #D12B2C;
  --clr-red-dark:   #a31f20;
  --clr-red-glow:   rgba(209,43,44,0.15);
  --clr-white:      #ffffff;
  --clr-off-white:  #f8fafc;
  --clr-text:       #1e293b;
  --clr-muted:      #64748b;
  --clr-border:     rgba(50,48,146,0.08);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(50,48,146,0.10);
  --shadow-lg:   0 20px 48px rgba(50,48,146,0.14);
  --shadow-glow: 0 0 0 3px rgba(209,43,44,0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* -------------------------------------------------------
   3. BASE TYPOGRAPHY
------------------------------------------------------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: var(--clr-text) !important;
  line-height: 1.7 !important;
  /* Do NOT set background-color - preserve original beige theme per page */
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  color: var(--clr-navy) !important;
}

p, li, span {
  font-family: 'Inter', sans-serif !important;
}

a {
  transition: var(--transition) !important;
}

/* -------------------------------------------------------
   4. STICKY GLASSMORPHISM HEADER
------------------------------------------------------- */
#masthead {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease !important;
}

.main-header-bar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(50, 48, 146, 0.06) !important;
  box-shadow: 0 4px 24px rgba(50, 48, 146, 0.06) !important;
  padding: 10px 0 !important;
  transition: var(--transition) !important;
}

/* Site name + description */
.site-title a {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  color: var(--clr-navy) !important;
  letter-spacing: -0.03em !important;
  text-decoration: none !important;
}

.site-description {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 2.5px !important;
  color: var(--clr-red) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

/* -------------------------------------------------------
   5. NAVIGATION — Premium dropdown & hover states
------------------------------------------------------- */
.main-header-menu > li > a {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.6px !important;
  color: var(--clr-navy) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm) !important;
  position: relative !important;
  transition: var(--transition) !important;
}

/* Animated underline for nav links */
.main-header-menu > li > a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  width: 80% !important;
  height: 2px !important;
  background: var(--clr-red) !important;
  border-radius: 2px !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.main-header-menu > li:hover > a::after,
.main-header-menu > li.current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1) !important;
}

.main-header-menu > li:hover > a,
.main-header-menu > li.current-menu-item > a {
  color: var(--clr-red) !important;
  background: rgba(209, 43, 44, 0.04) !important;
}

/* Dropdown submenu — premium card style */
.main-header-menu .sub-menu {
  background: #ffffff !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  padding: 10px 0 !important;
}

/* Fix: Invisible bridge to prevent hover loss between header and dropdown */
.main-header-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.main-header-menu .sub-menu {
  min-width: 220px !important;
  margin-top: 8px !important;
  overflow: visible !important;
}

.main-header-menu .sub-menu li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--clr-text) !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  display: block !important;
  transition: var(--transition) !important;
}

.main-header-menu .sub-menu li a:hover {
  background: rgba(209, 43, 44, 0.05) !important;
  color: var(--clr-red) !important;
  padding-left: 20px !important;
}

/* Mobile menu toggle */
.menu-toggle {
  background: var(--clr-navy) !important;
  color: var(--clr-white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 12px !important;
  border: none !important;
  transition: var(--transition) !important;
}

.menu-toggle:hover {
  background: var(--clr-red) !important;
}

/* -------------------------------------------------------
   6. HERO SECTION — Homepage (keeps background image, adds overlay polish)
------------------------------------------------------- */

/* Homepage hero: preserve the background image, just polish the overlay */
.elementor-element-3791248 {
  position: relative !important;
  overflow: hidden !important;
  min-height: 60vh !important;
  /* Do NOT override background — let post-960c1b.css handle home.jpg */
}

/* Darken the overlay for better text contrast */
.elementor-element-3791248 > .elementor-background-overlay {
  background: linear-gradient(135deg,
    rgba(15,13,61,0.72) 0%,
    rgba(30,28,114,0.58) 50%,
    rgba(45,10,10,0.55) 100%) !important;
  opacity: 1 !important;
}

.elementor-element-3791248 .elementor-heading-title {
  color: #ffffff !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4) !important;
  letter-spacing: -0.03em !important;
}

.elementor-element-3791248 h6.elementor-heading-title {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}

/* -------------------------------------------------------
   6b. ABOUT-US HERO — Polished gradient hero banner
------------------------------------------------------- */

/* About page hero section */
.elementor-element-50f99a5f {
  background: linear-gradient(135deg, #0f0d3d 0%, #1e1c72 50%, #4a1515 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 280px !important;
}

.elementor-element-50f99a5f::before {
  content: '' !important;
  position: absolute !important;
  top: -80px !important; right: -80px !important;
  width: 400px !important; height: 400px !important;
  background: radial-gradient(circle, rgba(209,43,44,0.2) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  animation: orbFloat 6s ease-in-out infinite !important;
  pointer-events: none !important;
}

.elementor-element-50f99a5f::after {
  content: '' !important;
  position: absolute !important;
  bottom: -60px !important; left: -60px !important;
  width: 300px !important; height: 300px !important;
  background: radial-gradient(circle, rgba(50,48,146,0.4) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  animation: orbFloat 8s ease-in-out infinite reverse !important;
  pointer-events: none !important;
}

/* About-us hero heading */
.elementor-element-50f99a5f .elementor-heading-title {
  color: #ffffff !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3) !important;
}

/* Shape divider fill in about hero */
.elementor-element-50f99a5f .elementor-shape-fill {
  fill: #ffffff !important;
}

/* -------------------------------------------------------
   6c. ABOUT-US CONTENT CARDS — Premium redesign
------------------------------------------------------- */

/* Override existing .amr-about-redesign to be more premium */
.amr-about-redesign {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 60px 24px !important;
  font-family: 'Inter', sans-serif !important;
}

.amr-about-grid {
  gap: 40px !important;
  margin-top: 30px !important;
}

/* Left intro card — dark gradient version */
.amr-about-left {
  background: linear-gradient(135deg, #1e1c72 0%, #2d0a3d 100%) !important;
  padding: 40px !important;
  border-radius: 20px !important;
  border: none !important;
  border-top: none !important;
  box-shadow: 0 20px 60px rgba(30,28,114,0.25) !important;
  position: relative !important;
  overflow: hidden !important;
}

.amr-about-left::before {
  content: '' !important;
  position: absolute !important;
  top: -40px !important; right: -40px !important;
  width: 200px !important; height: 200px !important;
  background: radial-gradient(circle, rgba(209,43,44,0.15) 0%, transparent 70%) !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}

.amr-about-left h2 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
}

.amr-about-left p {
  font-size: 15.5px !important;
  line-height: 1.85 !important;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 !important;
}

/* Right cards — elevated card style */
.amr-about-card {
  background: #ffffff !important;
  padding: 32px !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(30,28,114,0.08) !important;
  border: 1px solid rgba(30,28,114,0.06) !important;
  border-top: 4px solid var(--clr-red, #D12B2C) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.amr-about-card::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--clr-navy, #1e1c72), var(--clr-red, #D12B2C)) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.amr-about-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(30,28,114,0.14) !important;
}

.amr-about-card:hover::after {
  opacity: 1 !important;
}

.amr-about-card h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--clr-navy, #1e1c72) !important;
  margin: 0 0 14px 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.amr-about-card h3::before {
  content: '' !important;
  display: inline-block !important;
  width: 6px !important; height: 22px !important;
  background: var(--clr-red, #D12B2C) !important;
  border-radius: 3px !important;
  flex-shrink: 0 !important;
}

.amr-about-card p {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
  color: #6b7280 !important;
  margin: 0 0 18px 0 !important;
}

/* About list items — premium check marks */
.amr-about-list li {
  padding-left: 30px !important;
  margin-bottom: 14px !important;
  font-size: 14px !important;
  color: #4b5563 !important;
  line-height: 1.65 !important;
}

.amr-about-list li::before {
  content: "\f058" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  color: var(--clr-red, #D12B2C) !important;
  left: 0 !important;
  top: 2px !important;
  font-size: 15px !important;
}

.amr-about-list li strong {
  color: var(--clr-navy, #1e1c72) !important;
  font-weight: 700 !important;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(15px, -20px) scale(1.05); }
  66%       { transform: translate(-10px, 10px) scale(0.98); }
}

/* -------------------------------------------------------
   7. CTA BUTTONS — Premium pill buttons
------------------------------------------------------- */
.elementor-button,
.elementor-button-link {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  border-radius: var(--radius-pill) !important;
  padding: 13px 32px !important;
  background: var(--clr-red) !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
  box-shadow: 0 6px 20px var(--clr-red-glow) !important;
  transition: var(--transition-bounce) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.elementor-button:hover,
.elementor-button-link:hover {
  background: #ffffff !important;
  color: var(--clr-red) !important;
  border-color: var(--clr-red) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-3px) scale(1.02) !important;
}

/* -------------------------------------------------------
   8. SECTION HEADINGS — Decorative underline accent
------------------------------------------------------- */
.elementor-heading-title {
  position: relative !important;
}

/* Section divider enhancement */
.elementor-divider-separator {
  background: linear-gradient(90deg, transparent, var(--clr-red), transparent) !important;
  height: 2px !important;
  border: none !important;
}

/* -------------------------------------------------------
   9. STAT COUNTER SECTION — Number animation + glow
------------------------------------------------------- */
.elementor-counter-number-wrapper {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
  color: var(--clr-red) !important;
  font-size: clamp(36px, 4vw, 52px) !important;
  line-height: 1 !important;
  display: block !important;
  text-shadow: 0 2px 16px var(--clr-red-glow) !important;
}

.elementor-counter-number-suffix,
.elementor-counter-number-prefix {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
  color: var(--clr-red) !important;
}

.elementor-counter-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--clr-muted) !important;
  margin-top: 6px !important;
}

/* -------------------------------------------------------
   10. FEATURE / SERVICE CARDS — Glass card with hover lift
------------------------------------------------------- */
.elementor-icon-box-wrapper,
.elementor-image-box-wrapper {
  /* Removed background, border, and elevation per user request */
  /* background: #ffffff !important; */
  border-radius: var(--radius-md) !important;
  padding: 28px 24px !important;
  /* border: 1px solid var(--clr-border) !important; */
  /* box-shadow: var(--shadow-sm) !important; */
  transition: var(--transition-bounce) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Removed gradient line per user request */
/*.elementor-icon-box-wrapper::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; height: 3px !important;
  background: linear-gradient(90deg, var(--clr-navy), var(--clr-red)) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}*/

.elementor-icon-box-wrapper:hover {
  /* Removed hover elevation per user request */
  /* transform: translateY(-8px) !important; */
  /* box-shadow: var(--shadow-lg) !important; */
  /* border-color: rgba(209, 43, 44, 0.15) !important; */
}

/*
.elementor-icon-box-wrapper:hover::before {
  opacity: 1 !important;
}
*/

.elementor-icon-box-icon {
  transition: var(--transition-bounce) !important;
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-icon {
  transform: scale(1.15) rotate(-5deg) !important;
}

/* -------------------------------------------------------
   11. IMAGE STYLING — Rounded & subtle hover
------------------------------------------------------- */
.elementor-widget-image img,
.elementor-image img {
  /* Removed image elevation per user request */
  /* border-radius: var(--radius-md) !important; */
  /* box-shadow: var(--shadow-md) !important; */
  /* transition: var(--transition) !important; */
}

.elementor-widget-image:hover img,
.elementor-image:hover img {
  /* Removed hover elevation per user request */
  /* transform: scale(1.02) !important; */
  /* box-shadow: var(--shadow-lg) !important; */
}

/* -------------------------------------------------------
   12. SCROLL-TO-TOP BUTTON — Premium with progress ring
------------------------------------------------------- */
.ha-scroll-to-top-button {
  background: var(--clr-red) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: 0 8px 24px var(--clr-red-glow) !important;
  transition: var(--transition-bounce) !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
}

.ha-scroll-to-top-button:hover {
  background: var(--clr-navy) !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 12px 32px rgba(50,48,146,0.25) !important;
}

.ha-scroll-to-top-button i {
  font-size: 18px !important;
  transition: var(--transition) !important;
}

.ha-scroll-to-top-button:hover i {
  transform: translateY(-2px) !important;
}

/* -------------------------------------------------------
   13. FOOTER — Dark premium footer
------------------------------------------------------- */
.site-footer,
.footer-widget-area {
  background: linear-gradient(135deg, #080727 0%, #13124a 60%, #1a0505 100%) !important;
  color: #94a3b8 !important;
  border-top: 3px solid var(--clr-red) !important;
  position: relative !important;
  overflow: hidden !important;
}

.site-footer::before {
  content: '' !important;
  position: absolute !important;
  top: -100px !important; right: -100px !important;
  width: 500px !important; height: 500px !important;
  background: radial-gradient(circle, rgba(209,43,44,0.06) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6 {
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
}

.site-footer a {
  color: #94a3b8 !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.site-footer a:hover {
  color: var(--clr-red) !important;
  padding-left: 4px !important;
}

.site-footer p {
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

/* Bottom footer bar */
.footer-bar-wrap {
  background: rgba(0,0,0,0.3) !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  padding: 16px 0 !important;
  font-size: 13px !important;
}

/* Section backgrounds: preserve original Elementor beige theme */
/* Do NOT override section backgrounds here - let each page's Elementor CSS handle it */

/* Page load animation */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site {
  animation: pageFadeIn 0.4s ease forwards !important;
}

/* -------------------------------------------------------
   16. SELECTION STYLE
------------------------------------------------------- */
::selection {
  background: var(--clr-red) !important;
  color: #ffffff !important;
}

/* -------------------------------------------------------
   17. FOCUS RING — Accessibility
------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clr-red) !important;
  outline-offset: 3px !important;
}

/* -------------------------------------------------------
   18. COOKIE BAR — Styled to match brand
------------------------------------------------------- */
#cookie-law-info-bar {
  background: var(--clr-navy) !important;
  color: rgba(255,255,255,0.88) !important;
  border-top: 3px solid var(--clr-red) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  padding: 16px 24px !important;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15) !important;
}

#cookie_action_close_header {
  background: var(--clr-red) !important;
  border-radius: var(--radius-pill) !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

#cookie_action_close_header:hover {
  background: var(--clr-red-dark) !important;
  transform: scale(1.04) !important;
}

/* -------------------------------------------------------
   19. CUSTOM SCROLLBAR
------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--clr-navy), var(--clr-red));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-red);
}

/* -------------------------------------------------------
   20. RESPONSIVE POLISH
------------------------------------------------------- */
@media (max-width: 1024px) {
  .elementor-element-3791248 {
    min-height: 50vh !important;
  }
}

@media (max-width: 768px) {
  .main-header-bar {
    padding: 8px 0 !important;
  }

  .site-title a {
    font-size: 17px !important;
  }

  .elementor-element-3791248 {
    min-height: auto !important;
    padding: 60px 20px !important;
  }

  .elementor-element-3791248 .elementor-heading-title {
    font-size: clamp(28px, 8vw, 44px) !important;
  }

  .elementor-element-3791248 h6.elementor-heading-title {
    font-size: 15px !important;
  }

  .site-footer {
    text-align: center !important;
  }

  .site-footer a:hover {
    padding-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .ha-scroll-to-top-button {
    width: 42px !important;
    height: 42px !important;
    right: 12px !important;
    bottom: 12px !important;
  }
}

/* -------------------------------------------------------
   22. SCROLLED HEADER STATE — Enhanced shadow on scroll
------------------------------------------------------- */
.amr-scrolled .main-header-bar {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 8px 32px rgba(50,48,146,0.12) !important;
  padding: 6px 0 !important;
}

/* -------------------------------------------------------
   23. READING PROGRESS BAR — Thin top line
------------------------------------------------------- */
html::before {
  content: '' !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--clr-navy), var(--clr-red)) !important;
  z-index: 99999 !important;
  width: var(--scroll-progress, 0%) !important;
  transition: width 0.1s linear !important;
  pointer-events: none !important;
}

/* -------------------------------------------------------
   21. PRINT — Clean printout
------------------------------------------------------- */
@media print {
  #masthead,
  .ha-scroll-to-top-wrap,
  #cookie-law-info-bar,
  .site-footer {
    display: none !important;
  }
  body {
    color: #000 !important;
    background: #fff !important;
  }
}
