:root {
  --black: #080809;
  --white: #fff;
  --logo-color: #9b0e1c;
  --logo-bg: grey;
}

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

::-moz-selection {
  background-color: black;
  color: #fff;
}

::selection {
  background-color: black;
  color: #fff;
}


ul,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;

}

a:focus,
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 5px;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}


/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--logo-color);
  border-radius: 6px;
  border: 2px solid white;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/
/* **********************************************************************/





/* fixed-phone-btnn */
.fixed-phone-btnn,
.fixed-wtsapp-btnn {
  color: white;
  background-color: var(--logo--orange);
  background-color: rgb(44, 107, 178);
  border-radius: var(--border-radius);
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  z-index: 100;
  text-decoration: none;
}

.fixed-wtsapp-btnn {
  bottom: 95px;
  background: #81d742;
  border: 1px solid #81d742;
}

.fixed-phone-btnn i,
.fixed-wtsapp-btnn i {
  font-size: 25px;
}

.fixed-wtsapp-btnn:hover {
  color: #81d742;
  border: 1px solid #81d742;
  background-color: white;
  transition: 0.4s;
}

.fixed-phone-btnn:hover {
  color: rgb(44, 107, 178);
  border: 1px solid rgb(44, 107, 178);
  background-color: white;
  transition: 0.4s;
}



/* **********************************************************************/
/* **********************************************************************/
/* ================= btn ================= */
/* ================= COMMON BUTTON ================= */
.btn-cover {
  display: inline-block;
  margin-top: 30px;

}

.all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 28px;
  background: var(--logo-color);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;

  border: 1px solid var(--logo-color);
  transition: 0.3s ease;
}

/* HOVER */
.all-btn:hover {
  background: #ffffff;
  color: var(--logo-color);
}

/* FOCUS (ACCESSIBILITY) */
.all-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(155, 14, 28, 0.25);
}

/* ICON INSIDE BUTTON */
.all-btn i {
  font-size: 18px;
}









/* **********************************************************************/
/* **********************************************************************/
/* ================= heading ================= */








/* ================= GLOBAL SECTION TITLE ================= */
.title {
  max-width: 760px;
  margin-bottom: 50px;
}

.title span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--logo-color);
}

.title h2 {
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  position: relative;
}

.title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--logo-color);
  margin-top: 12px;
}

.title p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-top: 10px;
}

/* CENTER VARIANT */
.title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title.center h2::after {
  margin-left: auto;
  margin-right: auto;
}












/* **********************************************************************/
/* **********************************************************************/
/* ================= HEADER ================= */
header {
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* HEADER LAYOUT */
header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* NAV (DESKTOP) */
header .header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

header .header-nav a {
  text-decoration: none;
  color: var(--logo-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}

/* HOVER UNDERLINE */
header .header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--logo-color);
  transition: 0.3s;
}

header .header-nav a:hover::after {
  width: 100%;
}

/* CTA */
header a.nav-cta {
  background: var(--logo-color);
  color: #fff;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

header a.nav-cta::after {
  display: none;
}

/* MOBILE TOGGLE */
header .mobile-toggle {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--logo-color);
  display: none;
  /* hidden by default */
}

/* ================= MOBILE MENU ================= */
#mobileMenu {
  background: var(--logo-color);
  color: #fff;
}

#mobileMenu h5 {
  letter-spacing: 1px;
}

#mobileMenu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

#mobileMenu .mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {



}




/* **********************************************************************/
/* **********************************************************************/

/* =====================================================
   HERO BASE
===================================================== */
/* ================= HERO ================= */
/* ================= HERO ================= */
#banner {
  height: calc(90vh - 80px);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0;
}

/* Inherit height */
#banner .carousel,
#banner .carousel-inner,
#banner .carousel-item {
  height: 100%;
}

/* Image full cover */
#banner .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Overlay + content */
#banner .banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    to right,
    rgba(11, 28, 45, 0.9),
    rgba(11, 28, 45, 0.4)
  );
}

/* Content width */
#banner .banner-content .container {
  max-width: 900px;
}



#banner .badge-tech {
    display: inline-flex;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    padding: 6px 14px;
    margin-bottom: 20px;
}


#banner .banner-content h1 {
    margin-bottom: 10px;
}



#banner .banner-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}
#banner .banner-cta .btn-cover {
    margin-top: 20px;
    width: 200px;
}
#banner .banner-cta a{
  min-width: 200px;
}
























/* ================= ABOUT ================= */
#about {
  background: #ffffff;
}

/* ================= TOP INTRO ================= */
#about .about-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

#about .about-welcome {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

#about .about-title {
  font-weight: 600;
  position: relative;
  color: var(--logo-color);
  font-size: 40px;
  margin-bottom: 6px;
  text-transform: capitalize;
}

/* Accent line */
#about .about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--logo-color);
  margin: 6px auto 0;
}

#about .about-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-top: 18px;
}

#about .col-lg-6 {
  margin-top: 30px;
}

/* ================= MAIN ROW ================= */
#about .about-main {
  margin-top: 0px;
}

/* ================= IMAGE SIDE ================= */
#about .about-image-wrap {
  position: relative;
  height: 100%;
}

/* IMAGE WRAPPER */
#about .about-image-wrap {
  position: relative;
  height: 100%;
  display: flex;
}

/* BACKGROUND IMAGE CONTAINER */
#about .about-image.bg-img {
  flex: 1;
  height: 100%;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* EXPERIENCE BADGE */
#about .about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--logo-color);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  line-height: 1.2;
}

#about .about-image-badge strong {
  font-size: 24px;
  display: block;
}

#about .about-image-badge span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= CONTENT PANEL ================= */
#about .about-panel {
  height: 100%;
  background: #f7f7f7;
  padding: 40px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .about-panel .title{
  margin-bottom: 0px;
}

/* TEXT */
#about .about-text {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 520px;
}

/* ================= FEATURES ================= */
#about .about-features {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

/* FEATURE ITEM */
#about .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border-left: 3px solid var(--logo-color);
}

/* ICON */
#about .feature-item i {
  font-size: 22px;
  color: var(--logo-color);
}

/* TEXT */
#about .feature-item span {
  font-size: 15px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  #about .about-panel {
    padding: 30px;
  }

  #about .about-image-badge {
    bottom: 15px;
    left: 15px;
    padding: 12px 14px;
  }

  #about .about-image-badge strong {
    font-size: 20px;
  }

}



/* ================= INFRA ================= */
/* ================= INFRASTRUCTURE ================= */


/* CARD */
#infrastructure .infra-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #e6e9ef;
  transition: 0.35s ease;
  text-align: center;

  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE WRAPPER */
#infrastructure .infra-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* IMAGE */
#infrastructure .infra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* TITLE */
#infrastructure .infra-card h6 {
  padding: 22px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  background: #ffffff;
  color: var(--logo-color);
}

/* ACCENT LINE */
#infrastructure .infra-card::after {
  content: "";
  display: block;
  height: 4px;
  width: 0;
  background: var(--logo-color);
  transition: 0.35s ease;
}

/* HOVER EFFECT */
#infrastructure .infra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* #infrastructure .infra-card:hover .infra-img img {
  transform: scale(1.08);
} */

#infrastructure .infra-card:hover::after {
  width: 100%;
}














/* ================= SERVICES ================= */
#services {
  background: #ffffff;
}
#services h2{
  margin-bottom: 6px;
}

#services .services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

#services .services-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--logo-color);
  font-weight: 600;
}

#services .services-subtext {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-top: 15px;
}

#services .service-card {
  background: #f7f7f7;
  padding: 34px 28px;
  height: 100%;
  transition: 0.3s ease;
  border-left: 4px solid transparent;
}

#services .service-card i {
  font-size: 34px;
  color: var(--logo-color);
  margin-bottom: 15px;
  display: inline-block;
}

#services .service-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

#services .service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

#services .service-card:hover {
  background: #ffffff;
  border-left-color: var(--logo-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}













/* ================= PRODUCTS ================= */
#products {
  background: #f4f7fb;
}


#products .title {
  justify-content: center;
}




#products .product-card {
  background: #ffffff;
  padding: 30px 25px 10px 25px;
  height: 100%;
  transition: 0.3s ease;
  border-radius: 10px;
}

#products .product-card h6 {
  font-size: 16px;
  font-weight: 600;
  padding-top: 13px;
  margin-bottom: 10px;
  border-top: 4px solid var(--logo-color);
  text-align: center;
  text-transform: capitalize;
  color: var(--logo-color);
}

/* PRODUCT IMAGE */
#products .product-img {
  width: auto;
  height: 180px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#products .product-img img {
  width: auto;
  height: 100%;
  transition: transform 0.4s ease;
}

/* IMAGE HOVER ZOOM */
#products .product-card:hover .product-img img {
  transform: scale(1.08);
}


#products .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}













/* ================= BRAND STATEMENT ================= */
#brand-statement {
  position: relative;
  background-image: url("../images/home/brand-statement/brand-statement.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  color: #ffffff;
  overflow: hidden;
}

/* DARK OVERLAY */
#brand-statement .brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 70%);
  z-index: 1;
}

/* CONTENT */
#brand-statement .brand-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* HEADING */
#brand-statement h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

#brand-statement ::after {
  margin: 6px auto 0;
}

/* TEXT */
#brand-statement p {
  font-size: 18px;
  line-height: 1.7;
  color: #e6e6e6;
}

/* BUTTON OVERRIDE (OPTIONAL) */
#brand-statement .all-btn {
  background: var(--logo-color);
  border-color: var(--logo-color);
}

#brand-statement .all-btn:hover {
  background: #ffffff;
  color: var(--logo-color);
}

















/* ================= SOLUTION ================= */
/* ================= SOLUTION ================= */
/* ================= SOLUTION ================= */
.solution-enrobing-bg {
  position: relative;
  overflow: hidden;
}

.solution-enrobing-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/get-lab-page/solution-enrobing-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* adjust opacity here */
  z-index: -1;
}

/* GRID LAYOUT */
#solution-enrobing .solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT IMAGE */
#solution-enrobing .solution-visual {
  height: 500px;
  background-color: #f7f7f7;
  background-image: url("../images/home/solution-enrobing/solution-enrobing-img.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
}

/* RIGHT CONTENT */
/* #solution-enrobing .solution-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
} */



/* PROCESS STEPS */
#solution-enrobing .solution-process {
  display: grid;
  gap: 12px;
}

#solution-enrobing .process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #111;
}

#solution-enrobing .process-step i {
  font-size: 20px;
  color: var(--logo-color);
}

/* BENEFITS TAGS */
#solution-enrobing .solution-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

#solution-enrobing .solution-benefits h6{
  display: block;
}

#solution-enrobing .solution-benefits span {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--logo-color);
  color: #111;
  font-size: 13px;
  border-radius: 6px;
}

/* CTA */


/* RESPONSIVE */
@media (max-width: 991px) {
  #solution-enrobing .solution-grid {
    grid-template-columns: 1fr;
  }

  #solution-enrobing .solution-visual {
    height: 300px;
  }
}











/* ================= CLIENTS ================= */
#clients {
  background: var(--logo-color);
  color: #fff;
}

#clients .title h2 {
  color: #fff;
}


#clients .title h2::after {
  background-color: #fff;
}

#clients img {
  margin-bottom: 20px;
  width: 100%;
}













/* **********************************************************************/
/* **********************************************************************/
/* ================= FOOTER ================= */
#site-footer {
  background: #0e0e0e;
  color: #ccc;
  padding: 70px 0 0;
}



/* BRAND */
#site-footer .footer-brand img {
  max-height: 46px;
  margin-bottom: 15px;
}

#site-footer .footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
}

/* LINKS */
#site-footer h6 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

#site-footer .footer-links a {
  display: block;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;
}

#site-footer .footer-links a:hover {
  color: var(--logo-color);
}

/* CONTACT */
#site-footer .footer-contact .footer-contact-cover{
  display: flex;
}
#site-footer .footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}
#site-footer .footer-contact p a{
  color: #ccc;
  text-decoration: none;
}

#site-footer .footer-contact i {
  color: var(--logo-color);
  margin-right: 8px;
}

/* BOTTOM BAR */
#site-footer .footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  background: #090909;
  color: #888;
}





/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  #site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


































/* **********************************************************************/
/* **********************************************************************/


/* **********************************************************************/
/* **********************************************************************/





























/* **********************************************************************/
/* **********************************************************************/

/* **********************************************************************/
/* **********************************************************************/




















/* **********************************************************************/
/* **********************************************************************/

/* **********************************************************************/
/* **********************************************************************/





















/* **********************************************************************/
/* **********************************************************************/
/* ================= PRODUCT Page ================= */
/* **********************************************************************/
/* **********************************************************************/
/* ================= COMMON PAGE HERO ================= */
#page-hero {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* DARK OVERLAY */
#page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 28, 45, 0.9),
    rgba(11, 28, 45, 0.6)
  );
  z-index: 1;
}

/* Keep content above overlay */
#page-hero .container {
  position: relative;
  z-index: 2;
}

/* White text override only inside hero */
#page-hero .title {
  margin-bottom: 0;
}
#page-hero .title h2,
#page-hero .title p {
  color: #fff;
}

#page-hero .title h2::after {
  background: #fff;
}




/* ================= PRODUCTS HERO IMAGE ================= */
.page-hero-products {
  /* background-image: url("../images/product/Capsule-Printing-Roller.jpg"); */
  background-size: cover;
  background-position: center;
}













/* ================= PRODUCT OVERVIEW ================= */
#product-overview {
  background: #ffffff;
}

#product-overview .product-detail-image {
  background: #f7f7f7;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

#product-overview .product-detail-image img {
  max-height: 350px;
}

#product-overview .product-highlights {
  margin-top: 25px;
  display: grid;
  gap: 10px;
  font-size: 15px;
}











/* ================= PRODUCT SPECS ================= */
#product-specs {
  background: #f4f7fb;
}

#product-specs .spec-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e6e9ef;
}

#product-specs .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 22px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

#product-specs .spec-row:nth-child(even) {
  background: #f9f9f9;
}

#product-specs .spec-row span:first-child {
  font-weight: 600;
  color: var(--logo-color);
}




/* **********************************************************************/
/* **********************************************************************/




















/* **********************************************************************/
/* **********************************************************************/
/* ================= PAGE HERO - CONTACT ================= */
.page-hero-contact {
  background: #f4f7fb;
  padding: 120px 0;
}

/* ================= CONTACT SECTION ================= */
#contact-info {
  background: #ffffff;
  padding: 100px 0;
}
/* ================= CONTACT CARD ================= */

#contact-info .contact-card {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: 14px;
  height: 100%;
  border: 1px solid #e6e9ef;
  border-left: 4px solid var(--logo-color);
  transition: 0.3s ease;
}

/* Hover lift */
#contact-info .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Title */
#contact-info .contact-card h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 35px;
  color: var(--logo-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================= CONTACT ITEM ================= */

#contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

/* Icon Circle */
#contact-info .contact-item i {
  min-width: 45px;
  height: 45px;
  background: rgba(155, 14, 28, 0.08);
  color: var(--logo-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

/* Icon hover effect */
#contact-info .contact-item:hover i {
  background: var(--logo-color);
  color: #fff;
}

/* Text */
#contact-info .contact-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* Links */
#contact-info .contact-item a {
  color: #444;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

#contact-info .contact-item a:hover {
  color: var(--logo-color);
}

/* MAP */
#contact-info .contact-map {
  height: 100%;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
}



















/* **********************************************************************/
/* **********************************************************************/