/* RESET & BASE TYPOGRAPHY */
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, 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F4F0;
  color: #17341D;
  min-height: 100vh;
  font-size: 16px;
}
a {
  color: #235932;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A1D66B;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}

/* BRAND COLORS */
:root {
  --primary: #235932;
  --secondary: #A1D66B;
  --accent: #F5F4F0;
  --danger: #c94136;
  --info: #476db6;
  --white: #fff;
  --dark: #17341D;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
}
strong {
  color: var(--primary);
}

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

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 840px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

/* FLEX CONTAINER PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(35,89,50,0.11);
  position: relative;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 18px 0 rgba(35,89,50,0.18);
}

.content-grid, .features-grid, .project-highlights-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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(35,89,50,0.09);
  margin-bottom: 20px;
  min-width: 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid, .project-highlights-grid {
  margin-bottom: 16px;
  width: 100%;
  justify-content: flex-start;
}
.feature-block {
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(35,89,50,0.09);
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  border: 2.5px solid var(--secondary);
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.22s, transform 0.19s;
}
.feature-block img {
  width: 56px;
  margin-bottom: 12px;
}
.feature-block:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px 0 rgba(35,89,50,0.16);
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 900px) {
  .features-grid, .project-highlights-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-block {
    max-width: 100%;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(112deg, #A1D66B 65%, #F5F4F0 100%);
  padding: 60px 0 40px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.23rem;
  margin-bottom: 26px;
  color: var(--dark);
}
.hero .cta-button {
  font-size: 1.08rem;
}

@media (max-width: 650px) {
  .hero {
    padding: 34px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* CTA BUTTONS */
.cta-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 64px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 32px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px 0 rgba(35,89,50,0.13);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.13s;
  margin-top: 8px;
  margin-bottom: 8px;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 6px 30px 0 rgba(35,89,50,0.17);
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* HEADER NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 8px 0 rgba(35,89,50,0.04);
  position: relative;
  z-index: 1002;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
}
header img {
  width: 48px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color 0.16s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--dark);
}
header .cta-button {
  margin-left: auto;
}

@media (max-width: 940px) {
  .main-nav {
    gap: 14px;
    margin-left: 10px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header img {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .main-nav, header .cta-button {
    display: none;
  }
  header .container {
    gap: 8px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1004;
  position: absolute;
  right: 12px;
  top: 14px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 22px 2px rgba(35,89,50,0.19);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.6, 0.08, 0.32, 1.11);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 16px 16px;
  gap: 18px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding: 5px 16px;
  cursor: pointer;
  z-index: 1101;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav a {
  font-size: 1.12rem;
  padding: 12px 0; /* touch targets */
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--dark);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, text-decoration 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
  text-decoration: underline;
}
footer p {
  text-align: center;
  color: var(--accent);
  font-size: 0.98rem;
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .footer-nav {
    gap: 12px;
    font-size: 0.9rem;
  }
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fffbe6;
  color: #2A2E1E;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(175,180,85,0.10);
  border-left: 7px solid var(--secondary);
  max-width: 290px;
  min-width: 210px;
  flex: 1 1 220px;
  font-size: 1rem;
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 18px 0 rgba(161, 214, 107,0.17);
  transform: scale(1.03) translateY(-3px);
}
.testimonial-card p {
  margin-bottom: 12px;
  color: #28331E;
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 14px;
    border-left-width: 4px;
  }
}

/* NEWS LIST / RESOURCES */
.news-list,
.resource-articles {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.news-list li,
.resource-articles li {
  padding: 12px 0 12px 10px;
  border-bottom: 1.5px solid #eee;
  font-size: 1.03rem;
  background-position: left center;
  background-repeat: no-repeat;
}
.news-list li strong,
.resource-articles li a {
  color: var(--primary);
}
.guideline-summaries,
.tips-and-best-practices,
.quick-updates {
  background: #E7F7D2;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px 0 rgba(138,194,78,0.07);
}
.guideline-summaries h3,
.quick-updates h4,
.tips-and-best-practices h4 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1.1rem;
}

/* PARTNERS SECTION */
.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 10px;
}
.partner-list > div {
  flex: 1 1 280px;
  min-width: 240px;
  background: #F0FEF9;
  border-radius: 9px;
  border: 2px solid var(--secondary);
  padding: 20px 16px 10px 16px;
  box-shadow: 0 0.5px 3px rgba(38,185,133,0.07);
}
.partner-list strong {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 2px;
  display: block;
}

/* CONTACT DETAILS */
.contact-details, .contact-details-snippet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-details p, .contact-details-snippet p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.contact-details img, .contact-details-snippet img {
  width: 22px;
  height: 22px;
}
.office-map {
  background: #DFF3CF;
  border-radius: 11px;
  padding: 17px 18px;
  margin-bottom: 18px;
  color: #254620;
}
.office-map h3 {
  margin-bottom: 6px;
  color: var(--primary);
}

/* MISCELLANEOUS CARDS & LISTS */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GRATITUDE SECTION */
.gratitude-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gratitude-section h1 {
  color: var(--secondary);
  margin-bottom: 16px;
}
.gratitude-section p {
  margin-bottom: 32px;
  color: #444;
}

/* POLICY SECTION TEXT */
.privacy-policy-text, .gdpr-policy-text, .cookies-policy-text, .terms-of-use-text {
  background: #F8FBEF;
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 18px;
  color: #2b2d18;
  font-size: 1rem;
}
.privacy-policy-text h3, .gdpr-policy-text h3, .cookies-policy-text h3, .terms-of-use-text h3 {
  color: var(--primary);
  margin-bottom: 7px;
  font-size: 1.08rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  0% {transform: translateX(120%);}
  100% {transform: translateX(0);}
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #235932;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 13vw 22px 7vw;
  z-index: 3000;
  box-shadow: 0 -2px 15px 0 rgba(35,89,50,0.15), 0 3px 14px -2px rgba(183,233,142,0.07);
  animation: fadeInUp 0.7s both;
  font-size: 1rem;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  margin-right: 16px;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.20s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn-accept {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 12px 0 rgba(161,214,107,0.12);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn-reject {
  background: #fff;
  color: var(--danger);
  border: 2px solid #f5d5ce;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #f9e2dd;
  color: var(--danger);
}
.cookie-btn-settings {
  background: none;
  color: var(--white);
  text-decoration: underline;
  transition: color 0.21s;
  border: none;
  padding: 8px 16px;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  color: var(--secondary);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 8vw 18px 5vw;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,35,30, 0.55);
  z-index: 3010;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.35s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 38px 26px 26px 26px;
  border-radius: 18px;
  box-shadow: 0 6px 28px 1px rgba(35,89,50,0.19);
  max-width: 420px;
  width: 100%;
  font-size: 1rem;
  position: relative;
  animation: fadeInUp 0.4s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal-category {
  background: #F5F4F0;
  border-radius: 8px;
  padding: 13px 14px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-modal-category span {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal-toggle {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  color: var(--danger);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal-save {
  margin-top: 18px;
  padding: 10px 1.4em;
  border-radius: 21px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal-save:hover, .cookie-modal-save:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 490px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 20px 5vw 18px 5vw;
  }
}

/* ANIMATIONS for MOBILE MENU */
.mobile-menu {
  transition: transform 0.4s cubic-bezier(.74,.04,.38,1.12);
  box-shadow: -6px 0 38px 2px rgba(23,52,29,0.11);
}

/* RESPONSIVE ADAPTATIONS (MOBILE FIRST) */
@media (max-width: 900px) {
  .content-grid, .card-container, .features-grid, .partner-list, .project-highlights-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .card-container,
  .content-grid,
  .features-grid,
  .testimonial-list,
  .project-highlights-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .section, .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .office-map, .guideline-summaries, .tips-and-best-practices, .quick-updates, .privacy-policy-text, .gdpr-policy-text, .cookies-policy-text, .terms-of-use-text {
    padding: 10px 7px;
  }
}

/* UNIQUE/ARTISTIC ACCENTS */
h1, h2, h3 {
  text-shadow: 1.5px 2.5px 0px #eee, 0.5px 0.5px 0px #A1D66B88;
  letter-spacing: 0.5px;
}
.feature-block {
  position: relative;
  overflow: visible;
}
.feature-block::before {
  content: '';
  position: absolute;
  left: -11px;
  top: -13px;
  width: 46px;
  height: 18px;
  background: var(--secondary);
  border-radius: 20px 40px 34px 30px;
  opacity: 0.19;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-8deg);
}
.feature-block img {
  position: relative;
  z-index: 1;
}
/* Decorative stroke for artistic vibrancy near headings */
h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 5px;
  background: var(--secondary);
  border-radius: 4px;
  margin-top: 7px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px 0 #A1D66B33;
}

@media (max-width: 480px) {
  h2::after {
    width: 30px;
    height: 3px;
  }
}

/* Artisitc Font for creative_flair */
body, input, button {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .main-nav a, .cta-button, .footer-nav a, .mobile-nav a, .cookie-banner, .cookie-modal {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.2px;
}

/* VISUAL HIERARCHY for lists */
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
ul {
  list-style-position: outside;
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}

/* SPACING for Elements */
.section:not(:last-of-type) {
  margin-bottom: 60px;
}
.card {
  margin-bottom: 20px;
}

/* SHADOWS & ROUNDED CORNERS */
.card, .feature-block, .testimonial-card, .partner-list > div {
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(35,89,50,0.08);
}

/* MICROINTERACTIONS */
.card, .testimonial-card, .feature-block {
  transition: box-shadow 0.16s, transform 0.21s;
}
.card:hover, .feature-block:hover, .testimonial-card:hover {
  box-shadow: 0 7px 22px 0 rgba(35,89,50,0.13);
  transform: scale(1.02) translateY(-2px);
}

/* ACCESSIBILITY & SELECTION COLORS */
::selection {
  background: #A1D66B55;
  color: #17341D;
}

/* CUSTOM CHECKBOX (for cookie modal toggles) */
input[type="checkbox"].cookie-modal-toggle {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  accent-color: var(--secondary);
  transition: box-shadow 0.15s, border-color 0.13s;
}
input[type="checkbox"].cookie-modal-toggle:checked {
  box-shadow: 0 0 6px 0 #A1D66B88;
  border-color: var(--primary);
}

/* Hide elements visually but keep for screen-readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* End of CSS */
