/* Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #23272b;
  color: #ECEFF1;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #14815D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #33a781;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
}

/* Typography Hierarchy */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.75rem;
  color: #F5F7FA;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ECEFF1;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #d0d4db;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #b6bfc7;
}
p {
  margin-bottom: 16px;
  color: #c8cace;
}
strong {
  color: #F5F7FA;
  font-weight: 600;
}

/* Brand Colors */
:root {
  --color-primary: #2C3E50;
  --color-secondary: #14815D;
  --color-accent: #F5F7FA;
  --color-bg-dark: #23272b;
  --color-bg-card: #2f363e;
  --color-metal: #7f8c8d;
  --color-border: #30363d;
  --color-action: #14815D;
  --color-action-hover: #1aad7d;
  --color-btn-text: #fff;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
}

/* Section Base Layout */
section {
  width: 100%;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* Flex Layout Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  color: #23272b;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.12);
  margin-bottom: 24px;
  border: 1px solid #bfc3c6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Patterns */
@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.55rem; }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width:768px) {
  .container { padding: 0 8px; }
  .content-wrapper { padding: 0; }
  .section { margin-bottom: 40px; padding: 32px 4px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .trust-badges { flex-direction: column !important; gap: 14px !important; }
}
@media (max-width:500px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.09rem; }
  .testimonial-card { font-size: 0.92rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding-left:20px; padding-right: 20px; }
}

/* Header Styles */
header {
  background: #23272b;
  border-bottom: 2px solid #30363d;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  color: #c8cace;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a.active {
  color: #F5F7FA;
  background: rgba(20,129,93,0.11);
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  background: linear-gradient(90deg, #14815D 90%, #4b674b 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(20,129,93,.08);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  outline: none;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1aad7d;
  color: #fff;
  box-shadow: 0 4px 18px rgba(20,129,93,0.14);
  transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  background: transparent;
  border: 2px solid #14815D;
  color: #14815D;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s, box-shadow 0.15s;
  outline: none;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #14815D;
  color: #fff;
  border: 2px solid #1aad7d;
  box-shadow: 0 2px 8px rgba(20,129,93,0.15);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 18px;
  z-index: 1003;
  background: #23272b;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20,129,93,0.10);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #31373b;
  color: #14815D;
}

@media (max-width: 980px) {
  header .container nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #23272b;
  z-index: 1002;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1), opacity 0.18s;
  padding: 28px 0 0 0;
  box-shadow: 8px 0 24px rgba(44,62,80,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.25s;
  box-shadow: 0 0 0 200vw rgba(44,62,80,0.41);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #14815D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ECEFF1;
  background: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 0;
  border: none;
  border-radius: 4px;
  min-width: 200px;
  transition: color 0.14s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #14815D;
  background: rgba(20,129,93,0.09);
}

/* HERO SECTION */
section:first-of-type {
  background: #23272b url('../assets/bg-hero-industrial.jpg') no-repeat center top / cover;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 2px 32px 0 rgba(44,62,80,0.12);
}
section:first-of-type .content-wrapper {
  padding-top: 44px;
  padding-bottom: 44px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  section:first-of-type {background-size: cover; min-height: 220px;}
}

/* Features List */
.features-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2f363e;
  color: #ECEFF1;
  border-radius: 7px;
  padding: 18px 20px;
  min-width: 210px;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: 1px solid #3e464d;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
}
.features-list img {
  width: 28px;
  display: block;
  filter: grayscale(12%) brightness(90%);
}
@media (max-width:700px) {
  .features-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.service-card {
  background: #2f363e;
  border-radius: 12px;
  padding: 28px 20px 16px 20px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.13);
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  border: 1px solid #30363d;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
}
.service-card img {
  width: 44px;
  margin-bottom: 8px;
  filter: grayscale(5%) brightness(87%) drop-shadow(0 1px 3px #2224);
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 8px 32px rgba(20,129,93,0.07);
  transform: translateY(-4px) scale(1.015);
  border: 1.5px solid #2bebbc5a;
  z-index: 2;
}
.service-card h3 {
  color: #F5F7FA;
  font-size: 1.18rem;
}
.service-card p {
  font-size: 1rem;
  color: #b6bfc7;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
  margin-top: 8px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #242b31;
  color: #d5f6ed;
  padding: 10px 14px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(44,62,80,0.08);
  border: 1px solid #175141;
}
.badge img {
  width: 24px;
  filter: grayscale(24%) brightness(90%);
}

/* Guarantee Badge */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  background: #278e63;
  color: #fff;
  border-radius: 8px;
  padding: 6px 18px;
  margin: 18px 0 10px 0;
  font-weight: 700;
  font-size: 1rem;
  gap: 6px;
}
.guarantee-badge img { width: 18px; }

.quality-commitment {
  display: inline-block;
  background: #2C3E50;
  color: #fff;
  padding: 6px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.11);
}

/* List for Services */
.list-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 18px;
}
.list-services li {
  background: #2f363e;
  border-radius: 10px;
  border: 1px solid #30363d;
  padding: 24px 18px;
  box-shadow: 0 1px 7px rgba(44,62,80,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-price {
  color: #14815D;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 6px;
}

/* PROJECT CASE */
.project-case {
  background: #2f363e;
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 26px;
  box-shadow: 0 4px 16px rgba(44,62,80,0.09);
  border: 1px solid #2C3E50;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-case h3 { color: #F5F7FA; }
.project-type { color: #14815D; font-weight: 600; font-size: 1rem; }
.results-summary { color: #C8CACE; margin-top:4px; margin-bottom: 2px; }

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #2f363e;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.08);
  border: 1px solid #30363d;
}
.faq-item h3 { color: #F5F7FA; font-size: 1.08rem; }
.faq-item p { color: #b6bfc7; }

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 26px 0;
}
.team-grid > div {
  background: #23272b;
  color: #fff;
  border-radius: 9px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.12);
  min-width: 170px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1px solid #31363d;
}
.team-grid span {color: #b6bfc7; font-size: 0.95rem}
@media (max-width: 700px) {
  .team-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
  font-size: 1.06rem;
  color: #ECEFF1;
}
.contact-details img {
  width: 24px;
  margin-right: 7px;
  filter: grayscale(18%) brightness(90%);
}
.contact-details div {
  display: flex;
  align-items: center;
}

/* TESTIMONIALS */
.testimonial-card blockquote {
  font-style: italic;
  color: #23272b;
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: center;
}
.star-rating {
  color: #FFD600;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-client {
  color: #14815D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
  text-align: center;
}
.testimonial-card p {
  color: #23272b;
  margin: 0 0 2px 0;
  text-align: center;
  font-size: 1rem;
}

/* Footer Styles */
footer {
  background: #2f363e;
  border-top: 2px solid #30363d;
  margin-top: 40px;
  padding: 40px 0 10px;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
footer img {
  width: 58px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #b6bfc7;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #14815D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.99rem;
  color: #d0d4db;
  margin-top: 13px;
}
.footer-contact img {
  width: 18px;
  margin-right: 8px;
  filter: grayscale(22%) brightness(92%);
  vertical-align: middle;
}
.footer-contact div {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: #2C3E50;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(44,62,80,0.15), 0 2px 8px rgba(44,62,80,0.09);
  padding: 26px 18px 22px 22px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ECEFF1;
  font-size: 1rem;
  animation: cookieBannerSlideIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.05s 1;
}
@keyframes cookieBannerSlideIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #14815D;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(20,129,93,0.12);
  cursor: pointer;
  transition: background 0.18s, transform 0.14s, box-shadow 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1aad7d;
  transform: translateY(-2px) scale(1.01);
}
.cookie-btn.secondary {
  background: #2f363e;
  color: #b6bfc7;
  border: 1.5px solid #14815D;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #23272b;
  color: #fff;
}

@media (max-width:700px){
  .cookie-banner { left: 0; right: 0; bottom: 0; border-radius: 0; padding: 18px 10px 9px 13px; }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,62,80,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.18s;
}
@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity:1; }
}
.cookie-modal {
  background: #F5F7FA;
  color: #23272b;
  border-radius: 20px;
  box-shadow: 0 12px 64px rgba(44,62,80,0.18);
  padding: 38px 34px 28px 38px;
  width: 90vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: scaleModalIn 0.43s cubic-bezier(0.47,2.28,0.41,1.37);
}
@keyframes scaleModalIn {
  0% { opacity: 0; transform: scale(0.87); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #23272b;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #14815D;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 500;
  color: #23272b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #bfc3c6;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: #14815D;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px #0001;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-category .locked {
  margin-left: 2px;
  color: #888b90;
  font-size: 1.12rem;
  vertical-align: middle;
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #2f363e;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44,62,80,0.11);
  border: 1px solid #30363d;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}

/* Utility Classes */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Scrollbar Styling (modern browsers only) */
body::-webkit-scrollbar {
    width: 11px;
    background: #23272b;
}
body::-webkit-scrollbar-thumb {
    background: #2C3E50;
    border-radius: 11px;
}

/* Subtle metallic accent lines (industrial accent) */
hr {
  border: none;
  border-top: 1.2px solid #7f8c8d;
  margin: 32px 0;
}

/* Focus Styles */
:focus {
  outline: 2px solid #14815D;
  outline-offset: 2px;
}

/* Accessibility - hide visually */
.sr-only {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Shadow/Metallic effect on SVG icons */
img[alt*="icon"], img[src*="icon-"] {
  box-shadow: 0 1px 6px #23272b26;
  border-radius: 6px;
  border: 1.5px solid #30363d;
}

/* Spacing for all major blocks on page */
main > section, section > .container:not(:last-child) {
  margin-bottom: 60px;
}

/* Prevent overlapping by always having gap/margin between cards/sections */
section + section, .card + .card, .section + .section, .testimonial-card + .testimonial-card, .project-case + .project-case {
  margin-top: 36px !important;
}

/* Hide default scrollbar for flexbox containers on mobile */
@media(max-width:520px){
  .card-container, .service-cards, .features-list {
    overflow-x: auto;
  }
}

/* Hide cookie modal when inactive */
.cookie-modal-overlay { display: none; }
.cookie-modal-overlay.active { display: flex; }

/* Hide cookie banner when accepted */
.cookie-banner[hidden] { display: none !important; }


/* End of CSS */

