/* ========= 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,
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F4F7F8;
  color: #243D52;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.25em;
}
a {
  color: #8DB600;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #222FE6;
  outline: none;
}
button { 
  font-family: inherit; 
  font-size: inherit; 
  cursor: pointer; 
  border: none; 
  background: none; 
}


/* ========= Brand Font Face ========= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #243D52;
  letter-spacing: -1px;
  line-height: 1.12;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
@media (min-width:600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}

strong, b { font-weight: 700; }
p {
  font-size: 1rem;
  color: #223140;
  margin-bottom: 18px;
  line-height: 1.7;
}

address { font-style: normal; color: #243D52; font-size: 1rem; line-height:1.5; }


/* ========= Layout Utils ========= */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(61, 115, 230, 0.13);
  padding: 28px 22px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 rgba(61, 115, 230, 0.19);
  z-index: 2;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section{
    flex-direction: column;
    align-items: flex-start;
  }
  .content-grid,.card-container {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(90, 200, 250, 0.10);
  gap: 15px;
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s; 
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px 0 rgba(141, 182, 0, 0.16);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(36,61,82,0.08);
  gap: 15px;
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s; 
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 32px 0 rgba(36,61,82,0.18);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}

.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid, .service-grid {
    flex-direction: column;
  }
}


/* ========= Header ========= */
header {
  background: #243D52;
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 15px 0 rgba(141,182,0,0.08);
  position: relative;
  z-index: 33;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  max-width: 1250px;
}
header img {
  height: 48px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta {
  background: #8DB600;
  color: #243D52;
  font-weight: 900;
  font-size: 1.07rem;
  letter-spacing: 0.06em;
  border-radius: 18px;
  padding: 10px 22px;
  box-shadow: 0 2px 10px 0 rgba(36,61,82,0.07);
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
.main-nav a.cta:hover,.main-nav a.cta:focus {
  background: #222FE6;
  color: #fff;
  transform: scale(1.07);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #fff;
  color: #222FE6;
}

@media (max-width: 950px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
}


/* ========= Mobile Navigation ========= */
.mobile-menu-toggle {
  display: none;
  padding: 7px 13px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  background: #8DB600;
  border-radius: 10px;
  box-shadow: 0 1px 4px 0 rgba(36,61,82,0.12);
  transition: background .2s, color .2s;
  margin-left: 16px;
  z-index: 41;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #222FE6;
  color: #fff;
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,61,82, 0.98);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.55,0,.1,1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: none;
  align-self: flex-end;
  margin: 24px 22px 0 0;
  padding: 6px 14px;
  border-radius: 50%;
  background: #8DB600;
  box-shadow: 0 1px 6px 0 rgba(36,61,82,0.18);
  z-index: 120;
  transition: background .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #222FE6;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  padding-left: 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #8DB600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  display: block;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, padding 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #222FE6;
  padding-left: 14px;
}
.mobile-nav a.cta {
  background: #8DB600;
  color: #243D52;
  padding: 12px 18px;
  border-radius: 18px;
  margin-top: 8px;
  font-weight: 900;
}
@media (min-width: 800px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ========= Hero Section ========= */
.hero {
  background: linear-gradient(120deg, #8DB600 0%, #71D1F8 98%);
  background: #71D1F8;
  background-blend-mode: luminosity;
  color: #243D52;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px / 0 0 28px 28px;
  box-shadow: 0 6px 48px 0 rgba(36, 61, 82, 0.032);
  position: relative;
  z-index: 1;
}
.hero .container{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.hero h1 {
  color: #243D52;
  text-shadow: 0 2px 8px rgba(255,255,255,.16);
  margin-bottom: 16px;
}
.hero .cta {
  margin-top: 23px;
}
@media (max-width: 600px) {
  .hero { border-radius: 0 0 28px 28px / 0 0 20px 20px; min-height: 180px; padding: 24px 0 18px; }
  .hero .content-wrapper { padding: 0 0; }
}

/* ========= Call-to-Action Buttons ========= */
.cta {
  display: inline-block;
  background: #243D52;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(36,61,82,0.15);
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.2s, transform 0.13s, box-shadow 0.17s;
  border: 2px solid #8DB600;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #8DB600;
  color: #243D52;
  border-color: #222FE6;
  transform: scale(1.05);
  box-shadow: 0 4px 28px 0 rgba(141, 182, 0, 0.20);
}


/* ========= Section Spacing & Text ========= */
section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
section:last-child {
  margin-bottom: 0;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(141,182,0,0.04);
  padding: 30px 28px;
  margin-bottom: 24px;
}
.text-section h2, .text-section h3 {
  color: #222FE6;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
  margin-left: 20px;
}

.confirmation {
  background: #fff;
  border-radius: 22px;
  padding: 48px 28px;
  box-shadow: 0 3px 24px 0 rgba(141,182,0,0.11);
  text-align: center;
  margin: 28px 0;
}
.confirmation ul {
  margin-top: 18px;
  margin-bottom: 23px;
  list-style-type: none;
}
.confirmation li {
  margin: 7px 0;
  display: flex; align-items: center; gap: 11px;
  font-size: 1.04rem;
  font-weight: 600;
}


/* ========= Kontaktinformationen ========= */
.contact-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px 10px 10px;
  background: #8DB60010;
  border-radius: 18px;
  font-size: 1.15rem;
}
.contact-info img {
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (min-width:700px) {
  .contact-info .content-wrapper {
    flex-direction: row;
    gap: 38px;
    flex-wrap: wrap;
    align-items: center;
  }
}


/* ========= Testimonial Cards ========= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 14px 0 rgba(36,61,82,0.07);
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  max-width: 460px;
  color: #243D52;
  font-size: 1.1rem;
  transition: box-shadow 0.2s, transform 0.12s;
}
.testimonial-card strong {
  color: #8DB600;
  font-size: 1.05em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(36,61,82,0.17);
  transform: scale(1.025);
}

@media (min-width: 900px) {
  .testimonial-card {
    flex-direction: row;
    align-items: center;
    max-width: 680px;
    gap: 28px;
  }
}


/* ========= Footer ========= */
footer {
  background: #243D52;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 18px;
  margin-top: 80px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -2px 26px 0 rgba(61,115,230,0.08);
  position: relative;
  z-index: 3;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 50px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 33px;
}
.footer-links strong {
  color: #8DB600;
  letter-spacing: 0.04em;
  font-size: 1.07rem;
}
.footer-links a {
  color: #FFF;
  opacity: 0.96;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: block;
  margin: 5px 0;
  transition: color 0.18s, opacity 0.12s;
  font-weight: 600;
}
.footer-links a:hover, .footer-links a:focus {
  color: #8DB600;
  opacity: 1;
}
.footer-links img {
  height: 27px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity .18s;
}
.footer-links img:hover, .footer-links img:focus {
  opacity: 1.0;
}
.footer-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 3px;
}
.footer-brand p {
  font-size: 1rem;
  opacity: 0.77;
  margin-bottom: 0;
  color: #cad8e9;
}
@media (max-width: 900px){
  .footer-links {
    gap: 30px 15vw;
  }
}
@media (max-width: 700px) {
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  footer{
    padding-top: 18px;
    margin-top: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .footer-brand img {
    height: 30px;
  }
}


/* ========= Cookie Consent Banner ========= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #243D52;
  box-shadow: 0 -2px 18px 0 rgba(61,115,230,0.16);
  z-index: 2005;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  font-size: 1.05rem;
  animation: cookie-slide-up 0.35s cubic-bezier(.69,.08,.42,1);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(100%);}
  100% {transform: none;}
}
.cookie-banner p {
  margin-bottom: 0;
  max-width: 410px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 22px;
  padding: 11px 24px;
  min-width: 110px;
  border: 2px solid #8DB600;
  margin-left: 0;
  transition: background 0.18s, color 0.2s, border-color 0.14s, transform 0.12s;
}
.cookie-banner .accept {
  background: #8DB600;
  color: #243D52;
  margin-right: 2px;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #222FE6;
  border-color: #222FE6;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #fff;
  color: #222FE6;
  border-color: #222FE6;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #222FE6;
  color: #fff;
  border-color: #8DB600;
}
.cookie-banner .settings {
  background: #fff;
  color: #8DB600;
  border-color: #8DB600;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #8DB600;
  color: #243D52;
  border-color: #222FE6;
}
@media (max-width: 680px) {
  .cookie-banner{ flex-direction: column; gap: 18px; align-items: stretch; }
  .cookie-banner p { max-width: none; }
}

/* ========= Cookie Modal ========= */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2010;
  background: rgba(36,61,82,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-cookie-modal 0.32s;
}
@keyframes fade-cookie-modal { 0% {opacity: 0;} 100%{opacity:1;} }
.cookie-modal {
  background: #fff;
  padding: 38px 28px 32px 28px;
  border-radius: 26px;
  min-width: 345px;
  max-width: 98vw;
  box-shadow: 0 3px 35px 0 rgba(61,115,230,0.17);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}
.cookie-modal h2 {
  color: #8DB600;
  font-size: 1.32rem;
  text-align: center;
  margin-bottom: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category {
  background: #f4f7f8;
  padding: 16px 14px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  flex: 1 1 150px;
}
.cookie-category .toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #cad8e9;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-category .toggle:checked {
  background: #8DB600;
}
.cookie-category .toggle:disabled {
  background: #cad8e9;
  cursor: not-allowed;
}
.cookie-category .toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(61,115,230,0.11);
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.17s;
}
.cookie-category .toggle:checked::before {
  left: 21px;
}
.cookie-category .toggle:disabled::before {
  background: #e0e0e0;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 22px;
  padding: 11px 24px;
  min-width: 110px;
  border: 2px solid #8DB600;
  background: #8DB600;
  color: #243D52;
  margin-left: 0;
  transition: background 0.18s, color 0.15s, border-color 0.16s, transform 0.12s;
}
.cookie-modal .cookie-actions .settings {
  background: #fff;
  color: #8DB600;
  border-color: #8DB600;
}
.cookie-modal .cookie-actions .settings:hover, .cookie-modal .cookie-actions .settings:focus {
  background: #8DB600;
  color: #fff;
  border-color: #222FE6;
}
.cookie-modal .cookie-actions .accept:hover, .cookie-modal .cookie-actions .accept:focus {
  background: #222FE6;
  color: #fff;
}


/* ========= Extra Utilities ========= */
img[src$='.svg'] {
  vertical-align: middle;
}
li {
  margin-bottom: 8px;
}

/* Bolds for vibrance*/
h1, h2, h3 {
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.8px;
}

/* Vibrant energetic accents */
.feature-item img, .service-item img {
  width: 42px;
  margin-bottom: 4px;
  filter: drop-shadow(0px 3px 6px #8DB60033);
  background: #f9ffe2;
  border-radius: 10px;
  padding: 7px;
}

/* General List Style */
.text-section ul, .confirmation ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.text-section li, .confirmation li {
  margin-bottom: 6px;
}


/* ========= Animations ========= */
.card, .feature-item, .service-item, .testimonial-card, .confirmation {
  transition: box-shadow .19s cubic-bezier(.77, 0, .175, 1),
              transform .15s cubic-bezier(.6, 0, .28, 1);
}
.cta, .main-nav a.cta {
  transition: background 0.18s, color 0.2s, border-color 0.14s, transform 0.12s;
}

/* ---- Vibrant and energetic accent lines ---- */
.feature-item, .service-item {
  border-top: 5px solid #8DB600;
  box-shadow: 0 1px 14px 0 rgba(141,182,0,0.07);
}
.feature-item:hover, .feature-item:focus-within, .service-item:hover, .service-item:focus-within {
  border-top: 5px solid #222FE6;
}

/* ========= Responsive Headings & Layouts ========= */
@media (max-width: 700px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .text-section {
    padding: 18px 6px;
  }
  .confirmation {
    padding: 25px 8px;
  }
}
@media (max-width: 430px) {
  .container {
    padding: 0 7px;
  }
  .cookie-modal { padding: 15px 3vw; }
}

/* ========= Form Elements (Universal Defaults) ========= */
input, textarea, select {
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #cad8e9;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: border 0.15s, box-shadow 0.12s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #8DB600;
  box-shadow: 0 1px 6px 0 #8db60022;
  outline: none;
}
label {
  font-family: 'Montserrat';
  font-weight: 600;
  color: #222FE6;
}


/* ========= Vibrant/Energetic Section Backgrounds ========= */
.section.bg-electric {
  background: #222FE6;
  color: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 18px 0 #222fe61c;
  margin-bottom: 60px;
  padding: 44px 18px;
}

.section.bg-bright {
  background: #8DB600;
  color: #243D52;
  border-radius: 19px;
  box-shadow: 0 3px 20px 0 #8db60013;
}

/* Responsive paddings */
@media (max-width:600px) {
  .section,.section.bg-electric,.section.bg-bright {
    padding: 22px 8px;
    margin-bottom: 34px;
  }
}


/* ========= Utility: Hide visually ========= */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}


/* ----------- Extra Accent Elements ---------- */
::-webkit-selection {
  background: #8DB600;
  color: #fff;
}
::selection {
  background: #8DB600;
  color: #fff;
}


/* ========= End of CSS ========= */
