/* Restore lost Bootstrap reboot rules */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
}
header {
  background-color: rgba(255, 0, 0, 0.2); /* red tint */
}

#demoCarousel {
  background-color: rgba(0, 0, 255, 0.2); /* blue tint */
}
.carousel-item,
.carousel-inner,
#demoCarousel {
  padding: 0 !important;
  margin: 0 !important;
}
.carousel-inner {
  min-height: 800px;
}
.carousel-item {
  min-height: 400px;
}
.carousel-item.active {
 /* background-color: rgba(255, 0, 0, 0.3); light red tint*/
/* new added on 3-28-2025 */
  display: block !important;
  padding-top: 0 !important;
}


body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-7, .col-lg-5 {
  position: relative;
  /*width: 100%;*/
  padding-right: 15px;
  padding-left: 15px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  min-height: 100px;
}

.navbar-brand img {
  height: 100px;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.navbar {
  align-items: center;
}

.carousel {
  position: relative;
  aspect-ratio: 1920 / 800;
  max-height: 800px;
  overflow: hidden;
}
.carousel-inner {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
  /*background-color: #e0e0e0;*/
  background-color: transparent;
  min-height: 400px;
}
.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 800px;
  aspect-ratio: 1920 / 800;
}
.carousel-item.active {
  display: block;
}
.carousel-caption {
  min-height: 100px;
}
#demoCarousel {
  aspect-ratio: 1920 / 800;
  min-height: 800px;
  max-height: 800px;
  overflow: hidden;
  position: relative;
}
.d-block { display: block; }
.w-100 { width: 100% !important; }
.text-white { color: #fff !important; }
.bg-light { background-color: #f8f9fa !important; }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important; }

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.btn, .btn-sm {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}
/* Custom Display Font Sizes (Bootstrap Emulation) */
.display-1-alt {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2-alt {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-5-alt {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-6-alt {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
/* === Margin Bottom === */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }  /* 4px */
.mb-2 { margin-bottom: 0.5rem !important; }   /* 8px */
.mb-3 { margin-bottom: 1rem !important; }     /* 16px */
.mb-4 { margin-bottom: 1.5rem !important; }   /* 24px */
.mb-5 { margin-bottom: 3rem !important; }     /* 48px */

/* === Margin Top === */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* === Margin Start (Left in LTR) === */
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

/* === Margin End (Right in LTR) === */
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

/* === Padding All Sides === */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

/* === Padding Top === */
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }

/* === Padding Bottom === */
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }

/* === Display Utilities (Recreating display-1 to display-6) === */
.display-1 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; }
.display-2 { font-size: 4rem; font-weight: 300; line-height: 1.2; }
.display-3 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; }
.display-4 { font-size: 3rem; font-weight: 300; line-height: 1.2; }
.display-5 { font-size: 2.5rem; font-weight: 300; line-height: 1.2; }
.display-6 { font-size: 2rem; font-weight: 300; line-height: 1.2; }

/* === Inline Styles Merged Below === */
/* new stuff on 10/06/2025 */

/* --- Navbar / CLS fix --- */
body::before {
  content: "";
  display: block;
  height: 76px;          /* match your navbar height */
}
/*
.navbar.sticky-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
*/
/* Existing page-header rules */
.page-header {
  width: 100%;
  aspect-ratio: 1920 / 800;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.page-header picture,
.page-header img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Keep header text from reflowing */
.page-header span,
.page-header div,
.page-header a { white-space: nowrap; }
.page-header svg { flex-shrink: 0; }


/* --- Your existing breadcrumb styles follow --- */
.breadcrumb {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.4);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  list-style: none;
}


/* end of new stuff on 10/06/2025 */
/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: red;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
.navbar-nav .nav-item .nav-link {
    font-size: 2em !important;
    font-weight: 500;
}
/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}
ul.custom-list li::before {
    content: "\2713";
    color: red !important;
    font-size: 1.0em !important;
    font-weight: bold;
    margin-right: 5px;
}
ul.custom-list li {
    list-style-type: none;
    white-space: nowrap;
    position: relative;
    font-size: 1.0em !important;
    font-weight: bold;
}

ul.custom-list li span.checkmark {
    color: red !important;
}
.text-danger { color: red !important; /* or rgb(255, 0, 0) */    }
/*
@media (max-width: 576px) {
.carousel-item {
    min-height: auto !important;
    aspect-ratio: auto !important;
}
.carousel-item img {
    object-fit: contain !important;
    height: auto !important;
}
}
*/
/*
@media (max-width: 576px) {
    .carousel-item {
      min-height: 50vh !important; /* or try 300px instead of 800px */
  /*  }
  }
*/
  @media (max-width: 576px) {
    .carousel-item picture img {
      height: auto !important;
      object-fit: contain !important;
    }
  }
  .carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
  }
  .carousel-item picture {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* Ensure the navbar always stays visible above everything */
/* Keep the navbar visible and correctly stacked, without breaking flow */
/* === Navbar Overlay for Desktop === */
/*
@media (min-width: 992px) {
  .navbar.sticky-top {
    position: absolute;           /* overlay hero */
   /* top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background-color: rgba(255, 255, 255, 0.9) !important; /* translucent white */
   /* box-shadow: none;
/*  }
*/
  /* Hero starts behind navbar (no vertical gap) */
  .page-header,
  #carouselWelcome2,
  .carousel {
    margin-top: 0 !important;
  }


/* === Keep sticky behavior for mobile === */
/*
@media (max-width: 991.98px) {
  .navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1100;
    background-color: #f8f9fa !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}
*/



.page-header {
  position: relative;
  z-index: 1;
  overflow: visible !important;  /* prevents clipping */
}
/* new stuff starts here */
/* === Testimonial Section Fixes === */

/* Fix testimonial layout stacking on small screens */
#testimonialCarousel .carousel-item .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

/* Each testimonial full-width on mobile, 1/3 width on desktop */
#testimonialCarousel .col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
}

@media (min-width: 768px) {
  #testimonialCarousel .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* Make testimonial image consistent and larger on mobile */
.testimonial-item img {
  width: 96px !important;
  height: 96px !important;
  object-fit: cover;
  margin: 0 auto 0.75rem;
}

/* Card background and spacing fixes */
.testimonial-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 340px;
}

/* Fix text clipping inside testimonials */
.testimonial-text {
  min-height: auto;
  overflow: visible;
  padding: 1rem;
  text-align: center;
  background: #f8f9fa;
  border-radius: 6px;
}
/* new stuff */
/* Prevent early page jumps */
body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Lock top info bar height before load */
.row.gx-0.d-none.d-lg-flex {
  min-height: 130px; /* whatever its real visual height is */
}

/* Prevent hero section collapse before image load */
.page-header {
  aspect-ratio: 1335 / 556;
  min-height: 556px;
  background-color: #e0e0e0; /* acts as placeholder */
  overflow: hidden;
  position: relative;
}

/* Ensure navbar doesn�t change height once fonts load */
.navbar {
  min-height: 90px;
}
/*new new stuff */
/* === Layout shift fixes (mobile safe) === */

/* Desktop fix (applies only to =992px) */
@media (min-width: 992px) {
  .row.gx-0.d-none.d-lg-flex {
    min-height: 130px; /* keep desktop stable */
  }
}

/* Mobile fix (=991px): remove unused height reservation */
@media (max-width: 991px) {
  .row.gx-0.d-none.d-lg-flex {
    min-height: 0 !important;
  }
  .page-header {
    min-height: auto;
    aspect-ratio: auto;
  }
}
.page-header picture,
.page-header img {
  width: 100%;
  height: auto;
  aspect-ratio: 412 / 172; /* force consistent ratio to stop reflow */
  object-fit: cover;
}
/* Prevent hero + welcome content from shifting on first paint */
body {
  min-height: 100vh;            /* stabilize initial layout */
  overflow-x: hidden;
}

.container.py-5 {
  min-height: 400px;            /* lock initial space */
}
/*
.navbar.sticky-top {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1100;
}*/
body { padding-top: 90px; }     /* keep consistent across breakpoints */
/* === Desktop-specific stabilization === */
@media (min-width: 992px) {
  /* Reserve exact space for top contact bar so sticky navbar doesn�t push content down */
  .top-bar {
    min-height: 40px;   /* match actual bar height */
  }

  /* Keep navbar height fixed and consistent */
  /*
  .navbar.sticky-top {
    height: 90px;
  }
*/
  /* Prevent hero from resizing when fonts load */
  .page-header img {
    aspect-ratio: 1335 / 556;
    object-fit: cover;
  }
}
/*changed mobile to 93 and desktop to 76 */

/*@media (max-width: 480px) {
  .page-header img {
    width: 100%;
    height: auto;
    aspect-ratio: 412 / 172;
    object-fit: cover;
  }
}
*/
/*new change */
/*
@media (max-width: 480px) {
  .navbar.sticky-top { height: 80px; }
  body { padding-top: 80px; }  /* keeps content from jumping */



@media (min-width: 992px) {
  .row.gx-0.d-none.d-lg-flex {
    min-height: 40px;   /* reserves space before paint */
  }
}
@media (min-width: 992px) {
  .row.gx-0.d-none.d-lg-flex {
    min-height: 50px;
    visibility: visible;
  }
}
.navbar {
  min-height: 100px;   /* reserves navbar space early */
}

.container-fluid.page-header {
  min-height: 556px; /* matches your desktop hero image height */
  overflow: hidden;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
}
/* Restore lost Bootstrap reboot rules */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
}
/* moved from index page everything down below*/
/* Let the carousel auto-size to the active slide */
#testimonialCarousel .carousel-inner { height: auto; }

/* Do NOT override Bootstrap's layout for the slide; let the grid inside handle layout */
#testimonialCarousel .carousel-item {
  padding: 1rem 0;
  /* no min-height here; content decides */
}
#testimonialCarousel p {
  margin: 0;               /* undo Bootstrap gutter */
  padding: 0 1rem;        /* add some horizontal breathing room */
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.5em;
}
/* Card/body can grow freely */
#testimonialCarousel .testimonial-item,
#testimonialCarousel .testimonial-text {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
   /* font-size: 4vw; /* Example: 4% of viewport width */
  line-height: 1.5em;
}

/* Text wrapping: allow long quotes to wrap on tiny phones */
#testimonialCarousel .testimonial-text {
  white-space: normal !important;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-overflow: clip !important;
}

/* Tweak typography on very small phones */
@media (max-width: 400px) {
  #testimonialCarousel .testimonial-text { font-size: 0.95rem; line-height: 1.35; }
}

/* Optional: center the text card and cap width for readability */
#testimonialCarousel .testimonial-text.bg-light {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative; 
  z-index: 1;            /* paint above footer if they overlap visually */
  margin-bottom: 3rem;   /* breathing room above footer */
}
/* Force wrapping on testimonial quotes (phones) */
@media (max-width: 576px) {
  #testimonialCarousel .testimonial-text,
  #testimonialCarousel .testimonial-text p {
    white-space: normal !important;         /* undo any nowrap */
    overflow: visible !important;           /* allow full text */
    text-overflow: clip !important;         /* no ellipsis */
    overflow-wrap: anywhere !important;     /* wrap long words/URLs */
    word-break: break-word !important;      /* fallback wrap */
    hyphens: auto !important;
    display: block !important;              /* defeats line-clamp box */
  }

  /* Kill any accidental Bootstrap truncation inside the carousel */
  #testimonialCarousel .text-truncate,
  #testimonialCarousel [style*="-webkit-line-clamp"],
  #testimonialCarousel .clamp,
  #testimonialCarousel .clamped {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    display: block !important;
  }
}


.container-xxl.py-5 { 
  overflow: visible !important; /* prevent clipping that can ?hide? height */
}
/* new group of css fixes for carousel --->*
/* Make the testimonial carousel fully content-sized */
#testimonialCarousel .carousel-inner,
#testimonialCarousel .carousel-item,
#testimonialCarousel .testimonial-item,
#testimonialCarousel .testimonial-text {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Let columns grow to fit their content */
#testimonialCarousel .row {
  align-items: stretch !important;
}

/* The bordered text box: include border in sizing, allow wrapping */
#testimonialCarousel .testimonial-text {
  display: block !important;
  padding: 1rem;
  border: 1px solid #ddd;          /* your border */
  box-sizing: border-box;           /* border counts toward width/height */
  white-space: normal !important;   /* allow wrapping */
  overflow-wrap: anywhere;          /* break long words if needed */
  word-break: normal;
  text-overflow: clip !important;
}

/* On phones, stack safely and tighten type */
@media (max-width: 576px) {
  #testimonialCarousel .carousel-item {
    display: block !important;      /* avoid row flex that can force equal heights */
    padding: 16px;
  }
  #testimonialCarousel .testimonial-text {
  /* font-size: 0.5rem;*/
  /*font-size: clamp(0.9rem, 2.5vw, 1.5rem);*/
  line-height: 1.5;
  white-space: normal !important;
  overflow-wrap: break-word;
}
}

/* ===== Testimonials (carousel) ===== */

/* Let slides size to their content */
#testimonialCarousel .carousel-inner,
#testimonialCarousel .carousel-item,
#testimonialCarousel .card,
#testimonialCarousel .card-body {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Layout inside each slide */
#testimonialCarousel .carousel-item .row {
  align-items: stretch;
}

/* Testimonial card / text block */
.testimonial-text {
  /* Responsive font size: never too small or huge */
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  line-height: 1.55;

  /* Make sure text wraps and never gets ellipsized */
  white-space: normal !important;
  overflow-wrap: anywhere;     /* break long words/URLs if needed */
  word-break: break-word;      /* extra safety for very long tokens */
  text-overflow: clip !important;

  /* Spacing & look */
  padding: 1rem;
  border-radius: 0.5rem;
  background: #f7f7f7;
  color: #333;
}

/* Neutralize any accidental clamping/truncation utilities */
#testimonialCarousel .text-truncate,
#testimonialCarousel [style*="-webkit-line-clamp"],
#testimonialCarousel .clamp,
#testimonialCarousel .clamped {
  -webkit-line-clamp: unset !important;
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

/* Avatar images */
.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

/* Give the carousel some breathing room so footer never crowds it */
#testimonialCarousel {
  margin-bottom: 2rem;
}

/* --- Mobile tweaks --- */
@media (max-width: 576px) {
  /* stack nicely and give extra space for text */
  #testimonialCarousel .carousel-item {
    padding: 0.75rem 0.5rem;
  }
  .testimonial-text {
    font-size: clamp(0.45rem, 3.25vw, 1.15rem);
    line-height: 1.5;
    padding: 0.875rem;
  }
  .testimonial-item img {
    width: 72px;
    height: 72px;
  }
}

/* Optional: ensure any fixed/min heights from elsewhere don?t interfere */
#testimonialCarousel .carousel-item,
#testimonialCarousel .carousel-inner {
  min-height: 0 !important;
}
/* --- Testimonial: prevent clipping & force full box render --- */
#testimonialCarousel,
#testimonialCarousel .carousel-inner,
#testimonialCarousel .carousel-item {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;   /* key: don't cut off borders/content */
}

#testimonialCarousel .row {
  align-items: stretch;           /* let columns grow with content */
}

.testimonial-item {               /* the outer card wrapper */
  display: block;
}

.testimonial-text {               /* the box with your quote */
  border: 2px solid #d9dde1;      /* visible, subtle border */
  border-radius: 8px;
  padding: 1rem;
  background: #f8f9fa;
  width: 100%;
  box-sizing: border-box;         /* border counted in width */
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* tighten on very small phones */
@media (max-width: 400px) {
  .testimonial-text { padding: 0.75rem; }
}
/* .navbar.sticky-top {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100 !important;
    background-color: #f8f9fa !important; /* ensures visibility */
  /*}
  */
  /* === Canonical navbar behavior (all breakpoints) === */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1100;
  background-color: #f8f9fa;
}
.navbar {
  background-color: #ffffff !important;
}
/* magical css */
.navbar {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0.25rem 1rem !important;
  z-index: 1050 !important;
  /*background-color: ##212529 !important; *//* ensure dark bg visible */
}
/* end  magical css */
