/* 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, font, 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: inherit;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #141B2B;
}
body {
  background: #141B2B;
  color: #F5F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #32DFEF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A7FFBF;
}
ul, ol {
  list-style: none;
}
input, button, textarea, select {
  font: inherit;
}
/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  color: #32DFEF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, li {
  color: #F5F7FA;
  font-size: 1rem;
}
.subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #A7FFBF;
  margin-bottom: 22px;
  line-height: 1.4;
}
strong, b {
  color: #32DFEF;
  font-weight: bold;
}
/* Section base spacing & Artistic dividers */
.section,
.hero, .features, .services, .services-overview, .cta, .download-cta, .about, .pricing, .testimonials, .contact, .legal-privacy, .legal-rodo, .legal-cookies, .legal-terms, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.section:after,
.features:after, .services:after, .testimonials:after, .cta:after {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  border-radius: 2px;
  background: #32DFEF;
  margin: 32px auto 0 auto;
  opacity: 0.18;
  pointer-events: none;
}

/* Artistic background brush effect for .hero and .cta */
.hero, .cta {
  background: #1f2240;
  box-shadow: 0 12px 36px 0 rgba(20,27,43,0.12);
  border-radius: 28px;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  left: -40px; top: -40px; width: 260px; height: 140px;
  background: #32DFEF;
  opacity: 0.11;
  border-radius: 80px 120px 60px 100px / 100px 40px 70px 100px;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}
.cta:after {
  background: #fff176;
  width: 60px; height: 5px;
  border-radius: 5px;
  opacity: 0.29;
  margin-top: 42px !important;
}
/* Main navigation */
header {
  background: transparent;
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 12px 0;
  gap: 24px;
}
.logo img {
  height: 52px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav ul li a {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1rem;
  color: #F5F7FA;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 2px;
  transition: color 0.18s;
  position: relative;
}
.main-nav ul li a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #32DFEF;
  transition: width 0.24s;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: 1px;
}
.main-nav ul li a:hover:after, .main-nav ul li a:focus:after {
  width: 80%;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #32DFEF;
}
.cta {
  background-color: #5eadb5;
  color: #141B2B;
  border: none;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 32px;
  padding: 13px 36px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 24px;
  box-shadow: 0 8px 24px 0 rgba(50,223,239,0.18);
  transition: background 0.23s, color 0.23s, box-shadow 0.17s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #21baca;
  color: #fff;
  box-shadow: 0 12px 28px 0 rgba(50,223,239,0.24);
}
.secondary-cta {
  display: inline-block;
  background: transparent;
  color: #32DFEF;
  border: 2px solid #32DFEF;
  border-radius: 30px;
  padding: 11px 26px;
  margin-left: 20px;
  font-size: 1rem;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.21s, color 0.21s, border 0.21s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #32DFEF;
  color: #1f2240;
  border-color: #32DFEF;
}
/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #32DFEF;
  color: #141B2B;
  border: none;
  border-radius: 20px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1100;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(50,223,239,.25);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #21baca;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #141B2B;
  z-index: 2000;
  padding: 32px 24px 0 24px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 48px 0 rgba(20,27,43,0.55);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #32DFEF;
  font-size: 2.3rem;
  position: absolute;
  right: 24px;
  top: 18px;
  z-index: 2010;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 54px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1.25rem;
  color: #F5F7FA;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 14px 6px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #32DFEF;
  color: #141B2B;
}
@media (max-width: 1050px) {
  .main-nav ul { gap: 16px; }
  .cta { margin-left: 10px; padding: 10px 22px; }
}
@media (max-width: 880px) {
  .main-nav ul { display: none; }
  .cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 880px) {
  .logo img { height: 44px; }
}
/* General Section styles and flex layouts */
.content-wrapper, .feature-grid, .service-cards, .testimonial-cards, .service-list, .contact-details, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.content-wrapper {
  margin-top: 18px;
}
.text-section, .pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .service-cards, .testimonial-cards, .service-list, .contact-details, .feature-list { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}
/* Features Section & Feature Grid */
.features .feature-grid, .features .feature-list {
  gap: 24px 32px;
  justify-content: flex-start;
}
.feature-col {
  background: #202848;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(50,223,239,0.06);
  padding: 27px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.feature-col img {
  width: 54px; height: 54px;
  margin-bottom: 8px;
}
.feature-col:before {
  content: '';
  display: block;
  position: absolute;
  top: -30px; right: -24px;
  width: 80px; height: 40px;
  background: #32DFEF;
  opacity: 0.11;
  border-radius: 40px 60px 60px 40px/60px 40px 40px 80px;
  z-index: 0;
}
/* Card Containers and Cards */
.card-container, .service-cards, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.service-card {
  background: #202848;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(50,223,239,0.07);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 24px 20px 25px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.22s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(50,223,239,0.31);
}
.service-card h3 {
  font-size: 1.3rem;
}
.service-card a {
  color: #32DFEF;
  font-weight: 600;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
  transition: color 0.19s, text-shadow 0.19s;
  text-decoration: underline;
}
.service-card a:hover {
  color: #fff176;
  text-shadow: 0 2px 6px #32DFEF44;
}
/* Testimonial Cards styling */
.testimonials {
  background: #232956;
  border-radius: 24px;
  margin-bottom: 60px;
}
.testimonial-cards {
  gap: 24px;
}
.testimonial-card {
  background: #F5F7FA;
  color: #141B2B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  max-width: 420px;
  padding: 26px 22px 22px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(44, 49, 63, 0.16);
  margin-bottom: 20px;
  gap: 20px;
  transition: transform 0.17s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px 0 #32DFEF33;
}
.testimonial-card p {
  color: #232956;
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #32DFEF;
  font-weight: 600;
}
.stars {
  color: #F9B625;
  font-size: 1.15em;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 7px #fff3;
}
/* CTA and Download Sections */
.cta .content-wrapper,
.download-cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.download-links {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}
.download-links a {
  background: #141B2B;
  padding: 12px 21px 10px 18px;
  border-radius: 20px;
  border: 2px solid #32DFEF;
  color: #32DFEF;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.21s, color 0.21s, border 0.19s;
}
.download-links a:hover {
  background: #32DFEF;
  color: #141B2B;
  border-color: #fff176;
}
/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #232956;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
}
.pricing-table th,
.pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 18px 20px;
  text-align: left;
  color: #F5F7FA;
}
.pricing-table thead th {
  background: #32DFEF;
  color: #141B2B;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.09rem;
}
.pricing-table tbody tr  {
  border-bottom: 1px solid #32DFEF22;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-notes ul {
  margin-top: 8px;
  padding-left: 24px;
  list-style: disc;
}
.pricing-notes li {
  color: #A7FFBF;
}
/* Contact/Order Section */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-bottom: 30px;
}
.company-info, .order-cta {
  flex: 1 1 240px;
  min-width: 210px;
}
.company-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 5px;
}
.company-info li img {
  width: 24px; height: 24px; margin-right: 12px; vertical-align: middle;
  display: inline-block;
}
.company-info a, .order-cta a {
  color: #5b8d92;
  font-weight: 600;
}
.company-info a:hover, .order-cta a:hover {
  text-decoration: underline;
}
.order-cta {
  align-self: flex-start;
}
.map-embed {
  background: #1f2240;
  border-radius: 20px;
  padding: 26px 22px 20px 22px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.map-placeholder img {
  width: 54px; height: 54px;
}
.map-placeholder p {
  color: #A7FFBF;
  max-width: 280px;
}
@media (max-width: 900px){
  .hero, .features, .cta, .about, .services, .download-cta, .pricing, .testimonials {
    padding: 24px 8px;
  }
  .content-wrapper, .feature-grid, .service-cards, .testimonial-cards, .service-list, .contact-details, .feature-list { gap: 16px; }
}
@media (max-width: 700px) {
  .service-card, .feature-col, .testimonial-card {
    min-width: 160px;
    padding: 14px 8px 17px 12px;
  }
  .pricing-table th, .pricing-table td {
    padding: 11px 7px;
    font-size: 1rem;
  }
  .company-info ul { gap: 11px; }
}
/* Footer */
footer {
  background: #141B2B;
  border-top: 2px solid #32DFEF18;
  padding: 40px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 12px;
}
footer ul {
  display: flex;
  gap: 20px;
}
footer ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #32DFEF;
  font-size: 0.99rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  transition: color 0.18s;
}
footer ul li a:hover {
  color: #fff176;
  text-decoration: underline;
}
footer address {
  color: #F5F7FA;
  font-size: 0.99rem;
  line-height: 1.5;
  text-align: center;
  font-style: normal;
}
footer address strong {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: #32DFEF;
}
@media (max-width: 650px) {
  footer ul { flex-direction: column; gap: 8px; align-items: center; }
  footer .container { gap: 20px; padding-left: 0; padding-right: 0; }
}
/* Legal/Info Content Styling */
.text-section ul, .feature-list ul {
  list-style: disc;
  margin-left: 28px;
  margin-bottom: 8px;
}
.text-section li, .feature-list li {
  color: #A7FFBF;
  margin-bottom: 7px;
  font-size: 1rem;
}
.text-section a, .feature-list a {
  color: #32DFEF;
  word-break: break-all;
}
.text-section h2, .feature-list h2 {
  font-size: 1.18rem;
  margin-top: 19px;
  margin-bottom: 7px;
}

/* Thank You / Success block */
.thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  margin-top: 45px;
}
.thank-you h1 {
  color: #A7FFBF;
}

/* Cookie Consent Banner ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100vw;
  background: #202848;
  color: #F5F7FA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px 16px 18px;
  z-index: 2100;
  box-shadow: 0 -2px 24px 0 rgba(50,223,239,0.08);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.7,0,.28,1.0);
  transform: translateY(100%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  background: #32DFEF;
  color: #141B2B;
  border-radius: 22px;
  border: none;
  padding: 9px 22px;
  margin-left: 12px;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover {
  background: #A7FFBF;
  color: #141B2B;
}
.cookie-banner .cookie-btn.reject {
  background: transparent;
  color: #A7FFBF;
  border: 2px solid #A7FFBF;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #A7FFBF;
  color: #232956;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #32DFEF;
  border: 1.5px solid #32DFEF;
  margin-left: 14px;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,100%);
  background: #232956;
  color: #F5F7FA;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 #141B2B77;
  z-index: 2200;
  width: 96%;
  max-width: 380px;
  min-width: 260px;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.7,0,.18,1.0), opacity 0.2s;
}
.cookie-modal.visible {
  transform: translate(-50%,-50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #32DFEF;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cookie-modal .category {
  margin: 10px 0;
  padding: 10px 0;
  border-bottom: 1.5px solid #32DFEF22;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal .category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  color: #F5F7FA;
}
.cookie-modal .toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #323766;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: #32DFEF;
}
.cookie-modal .toggle:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: transform 0.22s;
}
.cookie-modal .toggle:checked:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  flex: 1 1 1px;
}
.cookie-modal .cookie-btn.reject {
  border: 2px solid #A7FFBF;
  background: transparent;
  color: #A7FFBF;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #A7FFBF;
  color: #232956;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #32DFEF;
  font-size: 1.4rem;
  border: none;
  position: absolute;
  right: 16px;
  top: 11px;
  cursor: pointer;
}

/* Animations and micro-interactions */
.cta, .card, .service-card, .feature-col, .testimonial-card, .pricing-table, .download-links a,
.cookie-btn, .cookie-settings-btn, .secondary-cta {
  transition: box-shadow 0.18s, color 0.19s, background 0.23s, border 0.18s, transform 0.21s;
}
[tabindex]:focus, button:focus, a:focus {
  outline: 2px solid #32DFEF;
  outline-offset: 2px;
}

/* Artistic fonts for headings */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* Scrollbar Styling for modern browsers */
::-webkit-scrollbar { width: 10px; background: #202848; }
::-webkit-scrollbar-thumb { background: #32DFEF33; border-radius: 8px; }

/* Utility/flex helpers (if any needed by JS) */
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Custom artistic color splashes for buttons (micro-interaction) */
.cta::after, .secondary-cta::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: #A7FFBF44;
  opacity: 0.14;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: width 0.38s cubic-bezier(.42,0,.12,1.0), height 0.38s cubic-bezier(.42,0,.12,1.0);
  z-index: -1;
}
.cta:active::after, .secondary-cta:active::after {
  width: 150%;
  height: 120%;
}

/* Responsive Typography */
@media (max-width: 660px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .logo img { height: 33px; }
  .footer-logo img { height: 24px; }
}
/* Always last: Hide visually and fix transitions for offcanvas */
@media (max-width: 480px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .mobile-menu { padding-left: 7px; padding-right: 7px; }
}

/* END CSS */
