/* CSS 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, b, 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;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; border: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }
:root {
  --color-primary: #206B37;
  --color-secondary: #F0F4F8;
  --color-accent: #1B3A4B;
  --color-background: #FFFFFF;
  --color-text: #222;
  --color-muted: #86949e;
  --color-gold: #C4A850;
  --color-card-bg: #FFFFFF;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #ece2cd; border-radius: 8px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 28px; }
h3 { font-size: 1.4rem; margin-bottom: 18px; }
h4 { font-size: 1.15rem; margin-bottom: 14px; }
p, ul, ol { margin-bottom: 18px; font-size: 1rem; color: var(--color-text); }
strong { color: var(--color-primary); font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER */
header {
  background: var(--color-background);
  border-bottom: 1.5px solid #e7e5dd;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo-link img {
  height: 54px;
  transition: filter .15s;
}
.logo-link:hover img {
  filter: brightness(1.1) sepia(.4) hue-rotate(-20deg);
}
/* MAIN NAV */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  transition: color .18s;
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  margin: 0 auto;
  background: var(--color-gold);
  border-radius: 4px;
  transition: width .22s cubic-bezier(.64, .09, .08, 1);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 70%;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .16s;
  box-shadow: 0 2px 12px rgba(32,107,55,.08);
}
.primary-btn {
  background: var(--color-gold);
  color: #fff;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(196, 168, 80, .13);
}
.primary-btn:hover, .primary-btn:focus {
  background: #b29743;
  color: #fff;
  box-shadow: 0 6px 28px rgba(196,168,80,.23);
}
.accent-btn {
  background: var(--color-accent);
  color: #fff;
}
.accent-btn:hover, .accent-btn:focus {
  background: #274d5d;
  color: #fff;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-accent);
  background: transparent;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin-left: 16px;
  transition: background .15s, color .15s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-gold);
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(251,249,246, .995);
  box-shadow: 0 0 40px rgba(27,58,75, .11);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.8,.4,.2,1.05);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 16px 0;
  font-size: 2.2rem;
  color: var(--color-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #a68f3d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 40px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.15rem;
  padding: 10px 0;
  color: var(--color-accent);
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 6px;
  transition: background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-gold);
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* GENERAL SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 0;
    margin-bottom: 36px;
  }
}

/************ HERO SECTION ************/
.hero-section {
  background: linear-gradient(120deg, #fff 55%, #f8f5ef 100%);
  border-radius: 0 0 54px 54px;
  box-shadow: 0 4px 38px rgba(196,168,80,.03);
  position: relative;
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 52px;
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
}
.hero-section p {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 32px;
}

/***** FEATURE GRID *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin: 24px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--color-card-bg);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(32,107,55,.07);
  padding: 24px 20px 22px 20px;
  border: 1px solid #efefe6;
  transition: transform .14s, box-shadow .18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item img {
  width: 42px; height: 42px; margin-bottom: 4px; filter: sepia(.26) brightness(1.1) contrast(1.05) drop-shadow(0 2px 4px rgba(196,168,80,.14));
}
.feature-item h3 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.feature-item p {
  margin-bottom: 0;
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 36px rgba(196,168,80,.16);
  border-color: var(--color-gold);
}

/**** SERVICE LIST ****/
.service-list, .service-detail, .service-brief, .service-highlight, .material-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
.service-item, .service-detail, .service-brief, .service-highlight, .material-packages {
  background: #fdfcf7;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(32,107,55,.08);
  padding: 22px 24px 20px 24px;
  border: 1.2px solid #ede5d3;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  min-width: 220px;
  transition: box-shadow .14s, border-color .15s;
}
.service-item h3, .service-detail h3, .service-brief h3, .service-highlight h3, .material-packages h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
}
.service-item strong, .service-brief ul li, .service-highlight ul li {
  color: var(--color-gold);
}
.service-item:hover, .service-detail:hover, .service-brief:hover, .service-highlight:hover, .material-packages:hover {
  box-shadow: 0 6px 32px rgba(196,168,80,.14);
  border-color: var(--color-gold);
}

/***** CARDS & CARDS CONTAINER *****/
.card-container, .card-grid, .article-list, .article-teasers, .material-overview, .habit-guides, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .article-preview, .teaser-item, .material-item, .guide-item {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(27,58,75,.08);
  padding: 20px 22px 18px 22px;
  border: 1px solid #e6e0ce;
  flex: 1 1 200px;
  min-width: 200px;
  transition: box-shadow .14s, border-color .14s;
}
.card:hover, .article-preview:hover, .teaser-item:hover, .material-item:hover, .guide-item:hover {
  box-shadow: 0 6px 34px rgba(196,168,80,.16);
  border-color: var(--color-gold);
}

/**** ABOUT/TEXT SECTION ****/
.text-section, .map-snippet, .success-stories, .didactic-tips {
  background: #faf8f3;
  border-radius: 18px;
  border: 1.2px solid #e9e3cd;
  box-shadow: 0 1px 8px rgba(32,107,55,.09);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.text-section ul,
.expert-intro ul,
.biodiversity-facts ul,
.practical-tips ul,
.teaching-guides ul,
.fact-highlights ul,
.protection-tips ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.text-section ul li,
.expert-intro ul li,
.biodiversity-facts ul li,
.practical-tips ul li,
.teaching-guides ul li,
.fact-highlights ul li,
.protection-tips ul li {
  position: relative;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-weight: 400;
}
.text-section ul li::before, .feature-item ul li::before, .teaching-guides ul li::before {
  content: '\2022';
  color: var(--color-gold);
  font-size: 1.14em;
  margin-right: 8px;
}

/********* TESTIMONIALS *********/
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 30px 20px 30px;
  background: #fffbe6;
  border: 1.2px solid #e5daaf;
  border-radius: 20px 20px 20px 0;
  box-shadow: 0 6px 38px rgba(196,168,80,.07);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow .13s, border-color .14s;
}
.testimonial-card p {
  color: #212c2c;
  font-size: 1.06rem;
  margin: 0 0 5px 0;
  font-family: var(--font-body);
}
.testimonial-card span {
  align-self: flex-end;
  color: var(--color-accent);
  font-size: 0.99rem;
}
.testimonial-card strong { color: var(--color-primary); }
.testimonial-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 40px rgba(32,107,55,.14);
}

/********* CONTACT SHORTFORM/PAGE CONTACT INFO ***********/
.contact-info {
  background: #faf8f3;
  border-radius: 18px;
  border: 1.1px solid #f2ecd3;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-size: 1rem;
}
.contact-info img {
  width: 22px; height: 22px; filter: sepia(.22) hue-rotate(-17deg) brightness(1.05);
}

/********* FOOTER ***********/
footer {
  border-top: 2px solid #ece2cd;
  background: #fcfaf3;
  padding: 24px 0 16px 0;
  font-size: 0.97em;
  box-shadow: 0 -2px 18px rgba(32,107,55,.03);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  transition: color .15s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--color-gold); }
.footer-contact span {
  color: #b8a87c;
  font-size: 1em;
}

/******** LEGAL SECTION PAGES ********/
.legal-section {
  background: #faf8f3;
}
.legal-section .content-wrapper {
  background: #fff;
  border-radius: 18px;
  border: 1.2px solid #e9e3cd;
  box-shadow: 0 4px 24px rgba(196,168,80,.08);
  padding: 38px 26px;
  margin-bottom: 24px;
}

/********* CONFIRMATION *********/
.confirmation-section .content-wrapper {
  text-align: center;
  align-items: center;
}

/********* RESPONSIVE *********/
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .feature-grid, .service-list, .card-container, .card-grid, .article-list, .testimonial-slider, .testimonial-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; height: auto; gap: 0; padding: 0 10px; }
  .hero-section { border-radius: 0 0 36px 36px; padding-bottom: 36px; }
  .main-nav { display: none; }
  .feature-grid, .service-list, .card-container, .card-grid, .article-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 0px;
  }
  .feature-item, .card, .service-item, .service-detail, .service-brief, .service-highlight, .material-packages, .testimonial-card {
    min-width: unset; width: 100%;
  }
  .content-wrapper { gap: 14px; }
  .card, .service-item, .material-item, .teaser-item, .guide-item, .article-preview, .service-detail, .service-brief, .service-highlight, .material-packages {
    padding: 16px 10px;
    font-size: 0.98em;
  }
}

/* FLEX WRAPPING, GAP & SPACING MANDATE */
.card-container, .card-grid, .content-grid, .feature-grid, .service-list, .article-list, .testimonial-slider, .testimonial-list,
.article-teasers, .material-overview, .habit-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .article-preview, .teaser-item, .material-item, .guide-item {
  margin-bottom: 20px;
  position: relative;
}
.content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTON & ELEMENT HOVER */
a, .cta-btn, button {
  transition: color .13s, background .16s, box-shadow .16s, border-color .14s;
}

/* FOCUS STATES */
a:focus,
.cta-btn:focus, .cta-btn:active,
button:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  background: #fff8e1;
}

/******** COOKIES BANNER ***********/
.cookie-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 14px rgba(196,168,80,.07);
  padding: 20px 16px 16px 16px;
  z-index: 2000;
  font-size: 1em;
  animation: slideUpBanner 0.5s cubic-bezier(.9,.5,.35,1.2);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 160px;
  margin: 0;
  color: #222;
}
.cookie-banner .cookie-btn {
  margin-right: 8px;
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 0.97em;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  transition: background .16s, color .15s;
  box-shadow: 0 2px 12px rgba(196,168,80,.07);
}
.cookie-banner .accept-cookie {
  background: var(--color-gold);
  color: #fff;
}
.cookie-banner .accept-cookie:hover {
  background: #b29743;
  color: #fff;
}
.cookie-banner .reject-cookie {
  background: #fff;
  border: 1.3px solid var(--color-accent);
  color: var(--color-accent);
}
.cookie-banner .reject-cookie:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.cookie-banner .cookie-settings-btn {
  background: #f0eee3;
  border: 1.3px solid #e2d5ac;
  color: var(--color-accent);
}
.cookie-banner .cookie-settings-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 9px 10px 9px;
    font-size: 0.97em;
  }
}

/******** COOKIE MODAL **********/
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,58,75,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .28s cubic-bezier(.7,.21,.42,1);
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffbe6;
  border: 2px solid var(--color-gold);
  border-radius: 18px;
  box-shadow: 0 18px 66px rgba(196,168,80, .15);
  padding: 38px 28px 28px 28px;
  max-width: 380px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: showModal .42s cubic-bezier(.7,.28,.4,1.15);
}
@keyframes showModal {
  from { transform: scale(.88) translateY(60px); opacity: 0; }
  to   { transform: scale(1) translateY(0);   opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-gold); font-size: 1.3rem;
}
.cookie-modal h3 {
  color: var(--color-primary); font-size: 1.05rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  padding: 12px 0;
}
.cookie-modal-category label {
  font-weight: 500; color: var(--color-accent);
  font-size: 1rem;
}
.cookie-modal-toggle {
  width: 42px; height: 22px;
  border-radius: 22px;
  background: #e3dab7;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  margin-left: 14px;
  flex-shrink: 0;
  border: 1.2px solid #edd898;
}
.cookie-modal-toggle[aria-checked="true"] {
  background: var(--color-gold);
}
.cookie-modal-toggle .toggle-knob {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(196,168,80,.2);
  transition: left .18s;
}
.cookie-modal-toggle[aria-checked="true"] .toggle-knob {
  left: 22px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 30px;
}
.cookie-modal .accept-cookie, .cookie-modal .reject-cookie, .cookie-modal .cookie-settings-btn {
  margin: 0;
}
.cookie-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover {
  color: #ae9900;
}

/* Hide scrollbar in cookie modal */
.cookie-modal::-webkit-scrollbar { display: none; }
.cookie-modal { -ms-overflow-style: none; scrollbar-width: none; }

/******* MISC UTILS ********/
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-48 { margin-top: 48px; }

/******* MICRO-INTERACTIONS *******/
.card, .service-item, .feature-item, .testimonial-card, .cta-btn, .mobile-menu-toggle, .footer-nav a, .main-nav a {
  transition: box-shadow .12s, transform .13s, color .13s, background .13s, border .16s;
}
.card:active, .service-item:active, .testimonial-card:active, .cta-btn:active {
  transform: scale(.97);
}

/******* Z-INDEX *********/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 1000;
}

/******* ACCESSIBLE FOCUS RINGS *******/
:focus {
  outline: 2px solid var(--color-gold) !important;
  outline-offset: 2px;
}

/****** REMOVE UNDESIRABLE VERTICAL SPACE IN FLEX *****/
.card-grid > *, .feature-grid > *, .service-list > *, .testimonial-slider > *, .testimonial-list > *, .article-list > *, .habit-guides > *, .material-overview > *, .article-teasers > * {
  margin-bottom: 0 !important;
}

/******* SUCCESS MESSAGES & ALERTS ******/
.success-stories {
  color: var(--color-primary);
  border-left: 4px solid var(--color-gold);
  background: #f5f2e1;
}

/******* A11y: VISUALLY HIDDEN (for cookie banner) ******/
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
