/* ========================
   CSS RESET & BASE STYLES
   ======================== */
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, 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, 
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #F2F5F7;
  color: #203864;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  min-width: 320px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1164ea;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EE2781;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
}
strong, b {
  font-weight: 700;
}

/* ========================
     BRAND COLORS & FONTS
   ======================== */
:root {
  --primary: #203864;
  --secondary: #8FABC9;
  --accent: #F2F5F7;
  --electric-blue: #1164ea;
  --neon-pink: #EE2781;
  --lime: #59e153;
  --yellow: #fae13c;
  --shadow: rgba(32, 56, 100, 0.07);
  --radius: 18px;
  --transition: .3s cubic-bezier(0.68,-0.55,0.27,1.55);
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Montserrat-Regular');
  font-weight: 700;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #203864;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 2rem; font-weight: 800; margin-bottom: 15px; }
h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.subheadline {
  font-size: 1.13rem;
  color: var(--secondary);
  font-family: 'Montserrat', 'Arial', sans-serif;
  margin-bottom: 24px;
}
body, p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
small { font-size: 0.95rem; color: #444; }

/* ==============================
   GENERAL LAYOUT & CONTAINERS
   ============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px var(--shadow);
}

/* ===========================
     MAIN NAVIGATION BAR
   =========================== */
header {
  background: linear-gradient(90deg, var(--primary) 70%, var(--electric-blue) 100%);
  color: #fff;
  box-shadow: 0 6px 24px var(--shadow);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 46px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color var(--transition);
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--yellow);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--neon-pink);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 100px;
  border: none;
  box-shadow: 0px 8px 28px 0px rgba(238,39,129,.09);
  outline: none;
  margin-left: 22px;
  cursor: pointer;
  transition: background var(--transition), transform 0.18s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--electric-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0px 10px 36px -12px var(--neon-pink);
}

/* hide hamburger initially */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--yellow);
}

/* ================================
   MOBILE MENU (SLIDE BUTTON ETC.)
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32,56,100,0.97);
  z-index: 1000;
  padding: 28px 0 0 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.85,-0.06,.4,1.11), opacity 0.28s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 26px;
  right: 30px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  padding: 18px 0;
  width: 80vw;
  text-align: center;
  border-radius: var(--radius);
  transition: background 0.22s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--neon-pink);
  color: #fff;
}

/* =============================
       HERO SECTIONS & CTA
   ============================= */
.hero {
  background: linear-gradient(110deg, var(--electric-blue) 0%, var(--primary) 80%, var(--neon-pink) 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 10px 48px -20px var(--electric-blue);
}
.hero .container {
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1, .hero h2 {
  color: #fff;
  text-shadow: 0 2px 26px rgba(32,56,100,.07);
}
.hero .subheadline {
  color: var(--yellow);
  font-size: 1.18rem;
}
.cta {
  display: flex;
  background: linear-gradient(90deg, var(--neon-pink) 10%, var(--electric-blue) 90%);
  padding: 38px 0;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.cta .container {
  align-items: center;
}
.cta .content-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  text-align: center;
}
.cta-button {
  font-size: 1.12rem;
  margin-bottom: 0;
}

/* =============================
        FEATURE GRID
   ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 30px 0 0 0;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 310px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 26px var(--shadow);
  padding: 25px 18px 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-top: 5px solid var(--electric-blue);
  transition: box-shadow .22s, border-color .19s;
  position: relative;
}
.feature-grid li img {
  height: 38px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 36px -12px var(--neon-pink);
  border-top: 5px solid var(--neon-pink);
}

/* =============================
     CARD, TESTIMONIAL, PRICING
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
  transition: box-shadow .16s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px -14px var(--electric-blue);
  transform: translateY(-3px) scale(1.015);
}
.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: flex-start;
  gap: 20px;
  padding: 20px 30px 20px 30px;
  margin-bottom: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 15px 0 rgba(32,56,100,0.12);
  border-left: 8px solid var(--lime);
  color: #203864;
  max-width: 600px;
  position: relative;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px -14px var(--electric-blue);
  border-left: 8px solid var(--neon-pink);
}
.testimonial-card p {
  color: #203864;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.55;
  font-size: 1.08rem;
  font-weight: 600;
}
.testimonial-card small {
  color: #444;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: .97rem;
  font-style: italic;
  margin-top: 4px;
}

/* ===========================
   PRICING TABLE (tarifs.html)
   =========================== */
.pricing-table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 30px;
  justify-content: center;
  align-items: stretch;
}
.package {
  flex: 1 1 225px;
  max-width: 320px;
  min-width: 225px;
  background: #fff;
  border-radius: var(--radius);
  border-top: 6px solid var(--electric-blue);
  box-shadow: 0 2px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 26px 36px 26px;
  gap: 14px;
  transition: box-shadow .20s, border-color .2s, transform .16s;
  position: relative;
}
.package h3 {
  font-size: 1.43rem;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
}
.package .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  color: var(--neon-pink);
  font-weight: 800;
  margin-bottom: 10px;
}
.package ul {
  margin: 8px 0 16px 18px;
}
.package a.cta-button {
  margin-top: 10px;
  width: 100%;
}
.package:hover, .package:focus-within {
  box-shadow: 0 10px 34px -10px var(--electric-blue);
  border-top: 6px solid var(--neon-pink);
  transform: translateY(-2px) scale(1.025);
}

/* =============================
      FAQ ACCORDION & LISTS
   ============================= */
.faq-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin-left: 0;
}
.faq-list li, .faq-accordion li {
  background: #f7fafd;
  border-radius: var(--radius);
  padding: 20px 22px 17px 22px;
  color: #203864;
  box-shadow: 0 2px 8px 0 rgba(32,56,100,0.05);
  border-left: 5px solid var(--electric-blue);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
  transition: border-color .17s;
}
.faq-list li strong, .faq-accordion li strong {
  display: inline;
  font-weight: bold;
  color: var(--neon-pink);
}
.faq-list li:hover, .faq-accordion li:hover {
  border-left: 5px solid var(--neon-pink);
}

/* =============================
         COURSE OUTLINE
   ============================= */
.course-outline ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
}
.course-outline li {
  background: #f7fafd;
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  border-left: 6px solid var(--electric-blue);
  box-shadow: 0 2px 10px 0 rgba(32,56,100, .08);
  margin-bottom: 8px;
  position: relative;
}
.course-outline .label {
  display: inline-block;
  background: var(--neon-pink);
  color: #fff;
  border-radius: 8px;
  font-size: 0.84rem;
  padding: 3px 11px;
  margin-left: 14px;
  font-weight: 700;
  vertical-align: text-top;
}

/* =============================
     SOCIAL PROOF/ICONS BLOCKS
   ============================= */
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0 0 0;
  list-style: none;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  padding-left: 0.1em;
}
.content-wrapper ul li img {
  height: 28px;
  width: 28px;
}

/* =============================
      FOOTER NAVIGATION
   ============================= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 24px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -3px 24px -10px var(--electric-blue);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--yellow);
}
footer p {
  color: #fff;
  text-align: center;
  font-size: 0.98rem;
  margin-top: 0;
}

/* ===============================
  COOKIE CONSENT BANNER + MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: #fff;
  color: #203864;
  box-shadow: 0 -2px 24px 0 rgba(32,56,100,0.13);
  padding: 22px 24px 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-radius: 22px 22px 0 0;
  transition: transform 0.32s, opacity 0.22s;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0 0;
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  outline: none;
  transition: background 0.19s, color 0.13s;
}
.cookie-banner .accept {
  background: var(--lime);
  color: #203864;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--neon-pink);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #203864;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--secondary);
  color: #203864;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--yellow);
  color: #203864;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  background: rgba(32,56,100,0.66);
  transition: opacity 0.28s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #203864;
  border-radius: 18px;
  box-shadow: 0 8px 36px 0 rgba(32,56,100,0.22);
  padding: 38px 30px 30px 30px;
  min-width: 320px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  color: var(--primary);
}
.cookie-modal-content button.close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.82rem;
  color: var(--neon-pink);
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-content button.close:hover, .cookie-modal-content button.close:focus {
  color: var(--electric-blue);
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-cat label {
  font-weight: bold;
  font-size: 1.07rem;
  cursor: pointer;
}
.toggle-switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 22px;
  margin-left: 12px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--secondary);
  border-radius: 22px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--electric-blue);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(32,56,100,0.10);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}

/* =============================
     FORM ELEMENTS (contact.html mailto)
   ============================= */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: var(--radius);
  border: 1.5px solid var(--secondary);
  background: #fff;
  color: var(--primary);
  outline: none;
  margin-bottom: 18px;
  transition: border .22s, box-shadow .16s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid var(--electric-blue);
  box-shadow: 0 0 0 2px var(--neon-pink);
}

/* ============================
     LABEL STYLING
   ============================ */
label {
  font-size: 1.01rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}

/* ============================
     TABLES (minimal design)
   ============================ */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1.2px solid var(--secondary);
}
th {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}
td {
  font-size: 1rem;
}

/* ============================
       MISCELLANEOUS
   ============================ */
::-webkit-input-placeholder { color: #919ba3; opacity: 1; }
::-moz-placeholder { color: #919ba3; opacity: 1; }
:-ms-input-placeholder { color: #919ba3; opacity: 1; }
::placeholder { color: #919ba3; opacity: 1; }

hr {
  border: none;
  border-top: 1.8px solid var(--secondary);
  margin: 26px 0;
}


/* ============================
        RESPONSIVENESS
   ============================ */
@media (max-width: 1140px) {
  .container {
    max-width: 96vw;
    padding: 0 11px;
  }
}
@media (max-width: 1024px) {
  .feature-grid, .pricing-table {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .pricing-table {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid li, .package {
    max-width: 98vw;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
  .container {
    padding: 0 7px;
  }
  header .container, .cta .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 54px 0 34px 0;
  }
  .content-wrapper, .section {
    padding: 22px 0 0 0;
    margin: 0;
  }
  .card, .testimonial-card, .package, .feature-grid li {
    padding: 18px 10px;
  }
}
@media (max-width: 590px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero .container, .cta .container {
    padding: 0 3px;
  }
  .testimonial-card {
    padding: 13px 7px;
  }
}
@media (max-width: 480px) {
  .hero, .footer {
    border-radius: 0;
  }
  .cookie-modal-content {
    padding: 28px 5vw 18px 5vw;
    min-width: unset;
    max-width: 98vw;
  }
  .cookie-banner {
    padding: 16px 3vw 10px 3vw;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .pricing-table, .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .cta .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .hero .content-wrapper {
    padding: 0 0 0 0;
    gap: 16px;
  }
}

/* Ensure no grid or columns CSS is present: Only Flex layouts used throughout */

/* Subtle bounce for CTA buttons */
.cta-button {
  animation: cta-bounce 2.4s cubic-bezier(0.59,0,0.29,1.41) infinite alternate;
}
@keyframes cta-bounce {
  0% { box-shadow: 0px 8px 28px 0px rgba(238,39,129,.09); transform:translateY(0) scale(1); }
  70% { box-shadow: 0px 16px 54px -10px var(--electric-blue); transform:translateY(-2px) scale(1.052); }
  100% { box-shadow: 0px 8px 28px 0px rgba(238,39,129,.14); transform:translateY(0) scale(1); }
}

/* Transition for focus states and anchor backgrounds */
*:focus {
  outline: 2px dashed var(--neon-pink);
  outline-offset: 1.5px;
  background: rgba(238,39,129,0.05);
}

/* Hide visually, keep accessible */
.sr-only {
  width: 1px; height: 1px;
  position: absolute; left: -9999px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
}
