/**
 * CyberGuard skin for CyberTools (/tools)
 * Maps Certthor CyberGuard colors/layout onto Tools UI
 */

:root {
  --primary-color: #4a81d3;
  --primary-color-rgb: 74, 129, 211;
  --secondary-color: #514A9D;
  --bg-dark-1: #12132c;
  --bg-dark-2: #191b36;
  --bg-dark-3: #222e66;
  --ct-accent: #4a81d3;
  --ct-accent-2: #514A9D;
  --color-white: #fff;
}

body.ct-cyberguard,
body.ct-cyberguard.dark {
  background: var(--bg-dark-1) !important;
  color: #c8cbe0 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Hide original CyberTools chrome leftovers */
body.ct-cyberguard > .container > .main-section > header,
body.ct-cyberguard .main-section > footer {
  display: none !important;
}

/* Tools content panel */
body.ct-cyberguard .ct-tools-section {
  padding-top: 60px;
  padding-bottom: 80px;
  background: var(--bg-dark-1) !important;
}

body.ct-cyberguard .ct-tools-panel {
  position: relative;
  z-index: 2;
}

/* Remove old hero inside homepage content (we use CyberGuard slider hero) */
body.ct-cyberguard .ct-tools-panel > .hero-section {
  display: none !important;
}

/* Search */
body.ct-cyberguard .main-search-sec {
  margin: 0 0 40px !important;
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.ct-cyberguard .main-search-sec input {
  background: var(--bg-dark-2) !important;
  border: 1px solid rgba(74, 129, 211, 0.35) !important;
  color: #fff !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  min-height: 54px;
  padding: 14px 20px !important;
}

body.ct-cyberguard .main-search-sec input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Category blocks */
body.ct-cyberguard .content-sec .content-sec-inner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 48px !important;
  padding: 0 !important;
}

body.ct-cyberguard .content-sec .content-title-sec {
  border-bottom: 1px solid rgba(74, 129, 211, 0.25) !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
}

body.ct-cyberguard .content-title-sec .main-subtitle,
body.ct-cyberguard .content-title-sec h2,
body.ct-cyberguard .content-title-sec h3,
body.ct-cyberguard .main-subtitle {
  color: #fff !important;
}

body.ct-cyberguard .content-title-icon {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
  border-radius: 12px !important;
  color: #fff !important;
}

body.ct-cyberguard .content-title-icon svg,
body.ct-cyberguard .content-title-icon svg path {
  fill: #fff !important;
}

/* Tool cards */
body.ct-cyberguard .content-cats-inner {
  background: var(--bg-dark-2) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease !important;
  color: #d7daf0 !important;
}

body.ct-cyberguard .content-cats-inner:hover {
  border-color: rgba(74, 129, 211, 0.55) !important;
  background: var(--bg-dark-3) !important;
  transform: translateY(-3px);
}

body.ct-cyberguard .content-cats-inner h3,
body.ct-cyberguard .content-cats-inner .content-cats-title,
body.ct-cyberguard .content-cats-inner strong {
  color: #fff !important;
}

body.ct-cyberguard .content-cats-inner p,
body.ct-cyberguard .content-cats-inner .content-cats-desc {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.ct-cyberguard .content-cats-icon {
  background: rgba(74, 129, 211, 0.15) !important;
  border-radius: 10px !important;
}

body.ct-cyberguard .content-cats-icon svg[stroke]:not([stroke="none"]),
body.ct-cyberguard .content-cats-icon svg [stroke]:not([stroke="none"]),
body.ct-cyberguard .single-page-icon svg[stroke]:not([stroke="none"]),
body.ct-cyberguard .single-page-icon svg [stroke]:not([stroke="none"]) {
  stroke: #fff !important;
}

body.ct-cyberguard .content-cats-icon svg[fill]:not([fill="none"]),
body.ct-cyberguard .content-cats-icon svg [fill]:not([fill="none"]),
body.ct-cyberguard .single-page-icon svg[fill]:not([fill="none"]),
body.ct-cyberguard .single-page-icon svg [fill]:not([fill="none"]) {
  fill: #fff !important;
}

/* Single tool / pages */
body.ct-cyberguard .single-page-sec,
body.ct-cyberguard .single-page-inner {
  background: transparent !important;
  color: #c8cbe0 !important;
}

body.ct-cyberguard .single-page-main-title,
body.ct-cyberguard .single-page-sec h1,
body.ct-cyberguard .single-page-sec h2,
body.ct-cyberguard .single-page-sec h3,
body.ct-cyberguard .tool-description-section h2,
body.ct-cyberguard .tool-description-section h3 {
  color: #fff !important;
}

body.ct-cyberguard .single-page-main-desc,
body.ct-cyberguard .tool-description-content,
body.ct-cyberguard .tool-description-content p {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.ct-cyberguard .single-page-icon {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
  border-radius: 14px !important;
}

body.ct-cyberguard .single-page-inner,
body.ct-cyberguard .form-control,
body.ct-cyberguard input[type="text"],
body.ct-cyberguard input[type="email"],
body.ct-cyberguard input[type="password"],
body.ct-cyberguard input[type="url"],
body.ct-cyberguard input[type="number"],
body.ct-cyberguard textarea,
body.ct-cyberguard select {
  background: var(--bg-dark-2) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

body.ct-cyberguard .form-control:focus,
body.ct-cyberguard input:focus,
body.ct-cyberguard textarea:focus,
body.ct-cyberguard select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(74, 129, 211, 0.25) !important;
}

/* Buttons → CyberGuard style */
body.ct-cyberguard .btn.custom--btn,
body.ct-cyberguard .button__lg,
body.ct-cyberguard .btn-primary,
body.ct-cyberguard button.btn:not(.btn-line) {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

body.ct-cyberguard .btn.custom--btn:hover,
body.ct-cyberguard .button__lg:hover,
body.ct-cyberguard .btn-primary:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

/* Cards / panels inside tools */
body.ct-cyberguard .card,
body.ct-cyberguard .bg-white,
body.ct-cyberguard .shadow-sm.border.rounded-4.bg-white {
  background: var(--bg-dark-2) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #c8cbe0 !important;
}

body.ct-cyberguard .text-dark,
body.ct-cyberguard .text-black {
  color: #fff !important;
}

body.ct-cyberguard .text-muted {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.ct-cyberguard hr,
body.ct-cyberguard .small-marg {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.ct-cyberguard .home-helping-sec {
  display: none !important;
}

/* Accent purple → CyberGuard blue */
body.ct-cyberguard [fill="#4C3FF2"],
body.ct-cyberguard [fill="#4c3ff2"] {
  fill: #4a81d3 !important;
}

body.ct-cyberguard [stroke="#4C3FF2"],
body.ct-cyberguard [stroke="#4c3ff2"] {
  stroke: #4a81d3 !important;
}

body.ct-cyberguard .unlock-icon-wrapper {
  background: rgba(74, 129, 211, 0.15) !important;
}

/* Cookie bar */
body.ct-cyberguard .cookie-alert {
  background: var(--bg-dark-2) !important;
  border-color: rgba(74, 129, 211, 0.3) !important;
  color: #fff !important;
}

/* Hero / slider overlay for tools home */
body.ct-cyberguard .mh-400 .swiper-inner {
  position: relative;
  display: flex;
  align-items: center;
}

body.ct-cyberguard .mh-400 .sw-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0;
}

body.ct-cyberguard .mh-400 .sw-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 44, 0.72);
  z-index: 1;
}

/* Keep CyberGuard header above tools content */
body.ct-cyberguard header {
  z-index: 1000;
}

/* Avoid double Bootstrap container padding issues */
body.ct-cyberguard .ct-tools-panel .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Pagination / alerts */
body.ct-cyberguard .alert {
  border-radius: 8px;
}

body.ct-cyberguard .pagination .page-link {
  background: var(--bg-dark-2);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body.ct-cyberguard .pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* Mobile nav button from CyberGuard */
@media (max-width: 992px) {
  body.ct-cyberguard .ct-tools-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

/* Protect CyberGuard header/footer from Tools Bootstrap resets */
body.ct-cyberguard #wrapper {
  overflow: hidden;
}
body.ct-cyberguard header,
body.ct-cyberguard header a,
body.ct-cyberguard #mainmenu a {
  text-decoration: none;
}
body.ct-cyberguard header .btn-main {
  display: inline-flex;
  align-items: center;
}
body.ct-cyberguard footer.section-dark {
  background: var(--bg-dark-1) !important;
  margin-top: 0 !important;
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.75);
}
body.ct-cyberguard #subheader {
  margin-top: 0;
}
body.ct-cyberguard .ct-tools-panel .hero-section {
  display: none !important;
}

/* NAV FIX trimmed – use CyberGuard /en header styles */

body.ct-cyberguard #mainmenu {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.ct-cyberguard #mainmenu > li {
  display: inline-block !important;
  float: none !important;
  position: relative;
  margin: 0 !important;
  width: auto !important;
  border: none !important;
}

body.ct-cyberguard #mainmenu > li > a.menu-item {
  display: inline-block !important;
  color: #fff !important;
  padding: 18px 0 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  visibility: visible !important;
}

body.ct-cyberguard #mainmenu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #191b36 !important;
  border: 1px solid rgba(255,255,255,.1);
  z-index: 10060;
  padding: 8px 0;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

body.ct-cyberguard #mainmenu > li:hover > ul {
  display: block !important;
}

body.ct-cyberguard #mainmenu > li > ul > li {
  display: block !important;
  float: none !important;
  width: 100% !important;
  border: none !important;
}

body.ct-cyberguard #mainmenu > li > ul a {
  display: block !important;
  color: #c8cbe0 !important;
  padding: 8px 16px !important;
  text-align: left !important;
}

body.ct-cyberguard #mainmenu > li > ul a:hover {
  color: #fff !important;
  background: rgba(74, 129, 211, 0.2);
}

body.ct-cyberguard header .menu_side_area {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem;
}

body.ct-cyberguard header .btn-main {
  display: inline-flex !important;
  visibility: visible !important;
}

body.ct-cyberguard #topbar {
  display: block !important;
  background: rgba(0,0,0,.25);
}

@media (max-width: 992px) {
  body.ct-cyberguard header .header-col-mid {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #12132c;
    border-bottom: 1px solid rgba(74,129,211,.3);
    padding: 12px 20px 20px;
    z-index: 10070;
  }
  body.ct-cyberguard header.menu-open .header-col-mid {
    display: block !important;
  }
  body.ct-cyberguard header.menu-open #mainmenu {
    display: block !important;
  }
  body.ct-cyberguard header.menu-open #mainmenu > li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  body.ct-cyberguard header.menu-open #mainmenu > li > a.menu-item {
    padding: 12px 0 !important;
  }
  body.ct-cyberguard header.menu-open #mainmenu > li > ul {
    position: static !important;
    display: block !important;
    border: none;
    background: transparent !important;
    padding-left: 12px;
  }
  body.ct-cyberguard #menu-btn {
    display: block !important;
    float: none !important;
    margin: 0 !important;
  }
}

/* Footer about: text wraps around logo */
body.ct-cyberguard footer .footer-about {
  overflow: hidden;
  margin-bottom: 20px;
}
body.ct-cyberguard footer .footer-about .logo-footer {
  float: left !important;
  width: 128px !important;
  height: 128px !important;
  margin: 0 16px 10px 0 !important;
}
body.ct-cyberguard footer .footer-about p {
  font-weight: 400 !important;
  text-align: justify !important;
  hyphens: auto;
  color: rgba(255, 255, 255, 0.85) !important;
}
body.ct-cyberguard footer .footer-about::after {
  content: "";
  display: table;
  clear: both;
}

body.ct-cyberguard footer .footer-about p {
  font-weight: 400 !important;
  text-align: justify !important;
  hyphens: auto;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Tools hero image */
body.ct-cyberguard .ct-tools-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
body.ct-cyberguard .ct-tools-hero img.ct-tools-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
body.ct-cyberguard .ct-tools-hero .sw-caption {
  position: relative;
  z-index: 2;
}
body.ct-cyberguard .ct-tools-hero .sw-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 44, 0.72);
  z-index: 1;
}

/* Match /en chrome */
body.ct-cyberguard #topbar { display: none !important; }
body.ct-cyberguard #de-loader { display: none !important; }
body.ct-cyberguard header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1001 !important;
}
body.ct-cyberguard header #logo img.logo-mobile { display: none !important; }
body.ct-cyberguard header #logo img.logo-main {
  display: block !important;
  width: 100px !important;
  height: 100px !important;
  max-height: 100px !important;
  object-fit: contain;
}
@media (max-width: 992px) {
  body.ct-cyberguard header #logo img.logo-main { display: none !important; }
  body.ct-cyberguard header #logo img.logo-mobile {
    display: block !important;
    width: 100px !important;
    height: 100px !important;
  }
  body.ct-cyberguard header.menu-open .header-col-mid {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #12132c;
    padding: 12px 20px 20px;
    z-index: 10070;
  }
}
body.ct-cyberguard footer .footer-about p {
  font-weight: 400 !important;
  text-align: justify !important;
  hyphens: auto;
}
body.ct-cyberguard footer .footer-about .logo-footer {
  float: left !important;
  width: 128px !important;
  height: 128px !important;
  margin: 0 16px 10px 0 !important;
}

body.ct-cyberguard .ct-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1.5rem;
}
body.ct-cyberguard .ct-category-nav .btn-main {
  margin: 0 !important;
  font-size: 13px;
  padding: 8px 14px;
}


/* Sticky header – always visible while scrolling */
header,
body.ct-cyberguard header {
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 10050 !important;
  background: rgba(18, 19, 44, 0.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.transparent {
  background: rgba(18, 19, 44, 0.96) !important;
}
header.smaller,
body.ct-cyberguard header.smaller {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: rgba(18, 19, 44, 0.96) !important;
}
/* avoid content jump under fixed header */
body.ct-cyberguard #content,
#content {
  scroll-margin-top: 100px;
}


/* FOOTER ALIGN /en */
body.ct-cyberguard footer.section-dark .widget h5 {
  color: #fff !important;
  margin-bottom: 20px;
}
body.ct-cyberguard footer.section-dark .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.ct-cyberguard footer.section-dark .widget ul li {
  margin-bottom: 8px;
}
body.ct-cyberguard footer.section-dark .widget a,
body.ct-cyberguard footer.section-dark a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
}
body.ct-cyberguard footer.section-dark a:hover {
  color: #fff !important;
}
body.ct-cyberguard footer.section-dark .subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 14px;
}
body.ct-cyberguard footer.section-dark .subfooter .menu-simple {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
body.ct-cyberguard footer.section-dark .social-icons a {
  color: #fff !important;
  margin-right: 12px;
  font-size: 18px;
}
body.ct-cyberguard footer.section-dark .id-color {
  color: var(--primary-color) !important;
}

/* No category pill buttons on pages — categories only in top nav */
body.ct-cyberguard .ct-category-nav {
  display: none !important;
}
body.ct-cyberguard .ct-tools-landing__hint {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}
body.ct-cyberguard .ct-tools-landing__hint strong {
  color: #fff;
}


/* TOOLS HOME FIXES 3.4.1 */
/* Sticky header overlaps hero text — push caption below header */
body.ct-cyberguard .ct-tools-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
}
body.ct-cyberguard .ct-tools-hero .sw-caption {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  width: 100%;
  padding-top: 120px !important;
  padding-bottom: 48px !important;
  z-index: 2;
}
body.ct-cyberguard .ct-tools-hero .sw-caption .spacer-double,
body.ct-cyberguard .ct-tools-hero .sw-caption .spacer-single {
  display: none !important;
}
body.ct-cyberguard .ct-tools-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
body.ct-cyberguard .ct-tools-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 44, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Subfooter copyright must sit in .container — not edge-to-edge */
body.ct-cyberguard footer.section-dark > .subfooter {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.ct-cyberguard footer.section-dark > .subfooter > .container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
body.ct-cyberguard footer.section-dark > .subfooter .de-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}
body.ct-cyberguard footer.section-dark > .subfooter .de-flex-col,
body.ct-cyberguard footer.section-dark > .subfooter .menu-simple {
  float: none !important;
  width: auto !important;
  max-width: 100%;
}
@media (max-width: 767px) {
  body.ct-cyberguard .ct-tools-hero .sw-caption {
    padding-top: 100px !important;
  }
  body.ct-cyberguard footer.section-dark > .subfooter .de-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

body.ct-cyberguard footer.section-dark > .container {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Subfooter: border + copyright only inside .container (not full viewport) */
body.ct-cyberguard footer.section-dark > .subfooter {
  border-top: none !important;
  margin-top: 50px;
  padding: 0 !important;
  width: 100%;
}
body.ct-cyberguard footer.section-dark > .subfooter > .container {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
body.ct-cyberguard footer.section-dark .subfooter-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding: 20px 0 !important;
  box-sizing: border-box;
}
body.ct-cyberguard footer.section-dark .subfooter-inner .menu-simple {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}


/* REMOVE HEADER-HERO GAP */
/* custom-certthor body:not(.home) #content{padding-top:90px} creates empty band */
body.ct-cyberguard #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body.ct-cyberguard #subheader,
body.ct-cyberguard .ct-tools-hero,
body.ct-cyberguard section.section-dark.no-top {
  margin-top: 0 !important;
}
/* Pull hero/subheader under fixed/sticky header — no brown strip */
body.ct-cyberguard #subheader {
  margin-top: -100px !important;
  padding-top: 100px !important; /* keep text below header */
}
body.ct-cyberguard #subheader .jarallax-img,
body.ct-cyberguard #subheader img.jarallax-img {
  top: 0 !important;
}
/* Homepage tools hero: also underlap header */
body.ct-cyberguard .ct-tools-hero {
  margin-top: -100px !important;
}
body.ct-cyberguard .ct-tools-hero .sw-caption {
  padding-top: 130px !important;
}
@media (max-width: 992px) {
  body.ct-cyberguard #subheader {
    margin-top: -80px !important;
    padding-top: 80px !important;
  }
  body.ct-cyberguard .ct-tools-hero {
    margin-top: -80px !important;
  }
}


/* NESTED STUDIO FLYOUTS */
body.ct-cyberguard #mainmenu > li > ul > li {
  position: relative;
}
body.ct-cyberguard #mainmenu > li > ul > li > ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #191b36 !important;
  border: 1px solid rgba(255,255,255,.1);
  z-index: 10070;
  padding: 8px 0;
}
body.ct-cyberguard #mainmenu > li > ul > li:hover > ul {
  display: block !important;
}
body.ct-cyberguard #mainmenu > li > ul > li.menu-item-has-children > a:after {
  content: "›";
  float: right;
  margin-left: 10px;
  opacity: .7;
}

/* LOGO 20px TOP + one-row nav */
body.ct-cyberguard header {
  padding-top: 20px !important;
  padding-bottom: 8px !important;
}
body.ct-cyberguard header .de-flex { flex-wrap: nowrap !important; }
body.ct-cyberguard header #logo img {
  width: 72px !important;
  height: 72px !important;
  max-height: 72px !important;
}
body.ct-cyberguard #mainmenu {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* CODING-STYLE NARROW SUBHEADER (tools) */
body.ct-cyberguard #subheader {
  margin-top: -110px !important;
  padding-top: 180px !important;
  padding-bottom: 80px !important;
  position: relative !important;
  overflow: hidden !important;
  min-height: 0 !important;
  background: #12132c !important;
}
body.ct-cyberguard #subheader .jarallax-img,
body.ct-cyberguard #subheader img.jarallax-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  top: 0 !important;
}
body.ct-cyberguard #subheader .gradient-edge-top {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 19, 44, 0.55) 0%,
    rgba(18, 19, 44, 0.35) 45%,
    rgba(18, 19, 44, 0.65) 100%
  );
}
body.ct-cyberguard #subheader .container {
  position: relative;
  z-index: 2;
}
body.ct-cyberguard #subheader .spacer-double {
  display: none !important;
}
body.ct-cyberguard #subheader h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.ct-cyberguard #subheader h3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
}
body.ct-cyberguard #subheader .crumb,
body.ct-cyberguard #subheader .crumb a,
body.ct-cyberguard #subheader .crumb li {
  color: rgba(255, 255, 255, 0.85) !important;
}
@media (max-width: 992px) {
  body.ct-cyberguard #subheader {
    margin-top: -90px !important;
    padding-top: 140px !important;
    padding-bottom: 56px !important;
  }
}

