/* ===== CSS RESET & BASES ===== */
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,
main, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e8eef4;
  background: #111926;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #58d7ff;
  text-decoration: none;
  transition: color .2s;
}
a:focus, a:hover {
  color: #2ae0a4;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #16597E;
  color: #F1F5F9;
  font-family: 'Montserrat', Arial, sans-serif;
}
td {
  background: rgba(22, 89, 126, 0.08);
  color: #eefaff;
}

/* ===== BRAND COLORS & FONTS ===== */
:root {
  --color-primary: #16597E;
  --color-secondary: #217C5B;
  --color-accent: #F1F5F9;
  --color-bg-dark: #111926;
  --color-bg-light: #192437;
  --color-neon-cyan: #58d7ff;
  --color-neon-green: #2ae0a4;
  --color-error: #ef476f;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ===== LAYOUT CLASSES (FLEX ONLY) ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(21,40,56,0.78);
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(80,255,245,0.04), 0 1.5px 8px 0 rgba(36,194,255,0.04);
}
.card-container, .card-grid, .feature-grid, .service-cards, .team-grid, .benefit-grid, .testimonial-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #192437;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(36,194,255,0.09);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .contact-details, .map-directions .content-wrapper {
  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: #F1F5F9;
  color: #1b3048;
  border-radius: 12px;
  box-shadow: 0 0 36px 0 rgba(80,255,245,0.09);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
}
.feature-item, .service-item, .benefit-item, .team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #182538;
  border: 1.5px solid rgba(88,215,255,0.10);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 18px 0 rgba(36,194,255,0.07);
  min-width: 260px;
  flex: 1 1 260px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #16212e;
  border: 1.2px solid rgba(42,224,164,0.09);
  border-radius: 12px;
  padding: 22px 17px;
  box-shadow: 0 2px 12px 0 rgba(42,224,164,0.08);
  min-width: 220px;
  flex: 1 1 220px;
}

ol, ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* ===== HEADER & NAVIGATION ===== */
header {
  background: #131f2f;
  border-bottom: 2px solid #16597E;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 3px 20px 0 rgba(36,194,255,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
}
.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px #58d7ff22);
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: #F1F5F9;
  font-size: 16px;
  letter-spacing: .02em;
  padding: 6px 11px;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s;
}
nav a:hover, nav a.active {
  background: #191e31;
  color: #2ae0a4;
}
.cta-button {
  background: linear-gradient(90deg, #58d7ff 0%, #2ae0a4 100%);
  background-color: #16597E;
  color: #10202b;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  padding: 10px 26px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 20px 0 rgba(88,215,255,0.22);
  letter-spacing: .03em;
  transition: background 0.18s cubic-bezier(.3,1,.4,1), color .2s;
  text-shadow: 0 1px 10px #58d7ff1c;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #2ae0a4 0%, #58d7ff 100%);
  color: #131f2f;
  box-shadow: 0 4px 32px 0 #2ae0a460;
}

.mobile-menu-toggle {
  display: none;
  background: #16597E;
  color: #F1F5F9;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 26px;
  cursor: pointer;
  margin-left: 22px;
  transition: background 0.18s, color 0.18s;
  z-index: 1002;
  box-shadow: 0 1.5px 11px 0 #58d7ff22;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2ae0a4;
  color: #10202b;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(8,19,31,0.97);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,1.3,.7,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #16597E;
  color: #fff;
  border: none;
  font-size: 31px;
  border-radius: 6px;
  padding: 9px 16px;
  margin-right: 21px;
  cursor: pointer;
  transition: background .22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2ae0a4;
  color: #1b3048;
}
.mobile-nav {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #F1F5F9;
  font-size: 19px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 0 12px 0;
  border-radius: 8px;
  transition: color .18s, background .16s;
  display: block;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #2ae0a4;
  background: #131f2f;
}

/* ===== HERO & MAJOR SECTIONS ===== */
.hero {
  background: linear-gradient(120deg, #16597E 55%, #217C5B 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero h1 {
  font-family: var(--font-display);
  color: #F1F5F9;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px #58d7ff55;
}
.hero p {
  font-size: 20px;
  color: #e0f0fa;
  max-width: 600px;
  margin-bottom: 33px;
  font-family: var(--font-body);
  letter-spacing: .01em;
}
/* Extra visual neon accent */
.hero .container {
  box-shadow: 0 0 44px 2px #2ae0a444,0 6px 48px 10px #16597e21;
  border-radius: 18px;
  margin-top: 22px;
  background: rgba(20,40,60,.16);
}

/* Section Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.015em;
  color: #F1F5F9;
  font-weight: 800;
}
h1 { font-size: 36px; margin-bottom: 14px; }
h2 { font-size: 28px; margin-bottom: 15px; }
h3 { font-size: 22px; margin-bottom: 10px; }

p, li {
  font-size: 16px;
  color: #e8eef4;
  font-family: var(--font-body), Arial, sans-serif;
}
strong { color: #58d7ff; font-weight: 700; }

/* ===== FEATURES, CARDS, PROCESS FLOW ===== */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #192437;
  border-radius: 16px;
  padding: 26px 18px;
  box-shadow: 0 2px 14px 0 #2ae0a425;
  border: 1.8px solid #16597e21;
  flex: 1 1 220px;
  min-width: 220px;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow .23s, border .2s;
}
.feature:hover {
  box-shadow: 0 4px 32px 0 #58d7ff44;
  border-color: #2ae0a4;
}
.feature img {
  margin-bottom: 14px;
  height: 44px;
  filter: drop-shadow(0 0 8px #58d7ff44);
}
.service-card:hover, .feature-item:hover, .benefit-item:hover, .team-member:hover {
  box-shadow: 0 4px 30px 0 #2ae0a440;
  border-color: #58d7ff;
}
.service-card img, .service-item img, .benefit-item img, .team-member img {
  height: 32px;
  margin-bottom: 9px;
  filter: drop-shadow(0 0 6px #2ae0a412);
}

.process-steps-highlight, .timeline-flow {
  background: #17222f;
  border-left: 4px solid #2ae0a4;
  padding: 22px 20px;
  border-radius: 11px;
  margin-top: 22px;
  box-shadow: 0 1px 10px 0 #2ae0a414;
}
.process-steps-highlight ol, .timeline-flow ul {
  padding-left: 24px;
}
.process-steps-highlight h3, .timeline-flow h3 {
  color: #58d7ff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials h2 {
  color: #2ae0a4;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card .testimonial-quote {
  font-size: 18px;
  color: #1b3048;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.testimonial-card .testimonial-meta {
  font-size: 15px;
  color: #217C5B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #FFB800;
  font-size: 14px;
  margin-left: 9px;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===== TABLE, PRICING ===== */
.pricing-table-section .content-wrapper {
  gap: 38px;
}
.pricing-table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 22px 0 #16597E20;
  background: #192437;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1.4px solid #15597e22;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.feature-comparison-list {
  background: #151e2a;
  border-left: 4px solid #58d7ff;
  border-radius: 8px;
  padding: 18px 20px;
}

/* ===== FORMS & BUTTONS ===== */
input, textarea, select {
  background: #182538;
  color: #F1F5F9;
  border: 1px solid #217C5B;
  padding: 10px;
  font-family: var(--font-body);
  border-radius: 8px;
  margin-bottom: 17px;
  font-size: 16px;
  width: 100%;
  outline: none;
  transition: border .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #58d7ff;
}
button {
  font-family: var(--font-display);
  font-size: 16px;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  background: #217C5B;
  color: #F1F5F9;
  font-weight: 600;
  cursor: pointer;
  transition: background .19s, color .16s;
}
button:hover, button:focus {
  background: #2ae0a4;
  color: #142033;
}

/* ===== FOOTER ===== */
footer {
  background: #131d2c;
  color: #e0eaf8;
  padding: 40px 0 18px 0;
  border-top: 2px solid #16597E;
  margin-top: 65px;
}
footer .container {
  align-items: flex-start;
  gap: 22px;
}
footer nav {
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 10px;
}
footer nav a {
  color: #58d7ff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 10px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #e8eef4;
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
  height: 18px;
  width: 18px;
}
footer .logo img {
  height: 33px;
  margin-bottom: 19px;
  filter: drop-shadow(0 0 7px #58d7ff22);
}
.copyright {
  margin-top: 7px;
  font-size: 13px;
  color: #4BC4E1;
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  width: 100%;
  background: #192437;
  color: #F1F5F9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  border-top: 3px solid #2ae0a4;
  box-shadow: 0 -2px 25px 0 #2ae0a421;
  font-size: 16px;
  gap: 18px;
  animation: cookieBannerIn .8s cubic-bezier(.5,1.6,.6,1) 1;
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner button {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 7px 19px;
  border-radius: 22px;
  border: none;
  outline: none;
  background: #16597E;
  color: #fff;
  box-shadow: 0 1.2px 7px 0 #58d7ff22;
  cursor: pointer;
  transition: background .17s, color .14s;
}
.cookie-banner .accept {
  background: #2ae0a4;
  color: #0f1b2a;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #58d7ff;
  color: #0e141b;
}
.cookie-banner .reject {
  background: #ef476f;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f588a3;
}
.cookie-banner .settings {
  background: #F1F5F9;
  color: #16597E;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #d6eaf7;
}

/* Cookie Modal Popup */
.cookie-modal-backdrop {
  position: fixed; z-index: 4010;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,41,56,0.84);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .4s;
}
@keyframes fadeIn { from{ opacity:0; } to{ opacity:1; } }
.cookie-modal {
  background: #192437;
  border-radius: 21px;
  box-shadow: 0 0 44px 6px #58d7ff22;
  min-width: 350px;
  max-width: 90vw;
  padding: 32px 30px 22px 30px;
  position: relative;
  color: #F1F5F9;
  animation: scaleIn .4s cubic-bezier(.5,1.6,.6,1);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes scaleIn {
  0% { transform: scale(.94); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 22px;
  color: #58d7ff;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px 0 9px 0;
}
.cookie-modal label {
  font-size: 17px;
  color: #F1F5F9;
  font-family: var(--font-body);
}
/* Custom switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-right: 4px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #16597E;
  border-radius: 22px;
  transition: .2s;
}
.switch input:checked + .slider {
  background: #2ae0a4;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #F1F5F9;
  border-radius: 50%;
  transition: .18s;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  color: #58d7ff;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #2ae0a4;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .essential {
  color: #84fac1;
  font-weight: 600;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 9px 18px;
  font-size: 15px;
}

/* ===== PAGE-SPECIFIC/MICRO INTERACTION EFFECTS ===== */
.card, .service-card, .feature, .benefit-item, .faq-item, .team-member {
  transition: box-shadow .25s, border .19s, background .17s;
}
.card:hover, .service-card:hover, .faq-item:hover, .team-member:hover {
  box-shadow: 0 6px 28px 0 #58d7ff52;
  border-color: #2ae0a4;
  background: #16212e;
}

.cta, .cta-process, .cta-pricing {
  background: linear-gradient(90deg, #16597E 67%, #2ae0a4 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 32px 0 #2ae0a438;
}
.cta h2, .cta-process h2, .cta-pricing h2 {
  color: #F1F5F9;
}

/***** FAQ Highlight Section and Items *****/
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #182538;
  border-radius: 13px;
  padding: 18px 17px;
  border-left: 4px solid #58d7ff;
  transition: box-shadow .18s, border .15s;
}
.faq-item:hover {
  box-shadow: 0 4px 23px 0 #58d7ff31;
}
.contact-for-more {
  margin-top: 36px;
  background: #192437;
  padding: 18px 18px;
  border-radius: 10px;
  border-left: 4px solid #2ae0a4;
  color: #F1F5F9;
}

/***** Tables on Mobile *****/
@media (max-width: 768px) {
  .pricing-table-wrapper {
    overflow-x: auto;
    width: 100%;
  }
  .pricing-table {
    min-width: 480px;
    font-size: 15px;
  }
}

/***** Thank You Section *****/
.thank-you-section {
  background: #17222f;
  border-radius: 18px;
  border-left: 6px solid #2ae0a4;
  text-align: center;
  padding: 50px 24px;
  margin: 42px 0 22px 0;
  box-shadow: 0 2px 32px 0 #58d7ff20;
}
.confirmation-message {
  font-size: 19px;
  color: #2ae0a4;
  margin: 20px 0 18px 0;
  font-family: var(--font-display);
}
.next-steps-instructions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  margin-bottom: 21px;
}
.next-steps-instructions li {
  color: #58d7ff;
  font-size: 15px;
}

/***** RESPONSIVE DESIGN *****
 MOBILE FIRST, ENHANCED FOR DESKTOP */
@media (max-width: 1100px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 880px) {
  .container {
    max-width: 99vw;
  }
  .feature, .feature-item, .service-card, .service-item, .benefit-item, .team-member, .testimonial-card {
    min-width: 170px;
    flex-basis: 170px;
  }
}
@media (max-width: 900px) {
  .text-image-section, .contact-details, .map-directions .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonial-list, .card-container, .card-grid, .service-cards, .feature-grid, .benefit-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .team-grid {
    flex-direction: column;
    gap: 19px;
  }
  .section, section, .hero {
    padding: 26px 7px;
    margin-bottom: 36px;
    border-radius: 0;
  }
  .hero h1 { font-size: 28px; }
  h1 { font-size: 25px; }
  h2 { font-size: 21px; }
  h3 { font-size: 16px; }
  .testimonial-card, .service-card, .feature-item, .team-member {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
  .footer-contact {
    font-size: 14px;
  }
  .footer-contact img {
    height:16px; width:16px;
  }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 19px; }
  header .container {
    padding: 10px 3px;
  }
  .cta-button {
    padding: 8px 16px;
    font-size: 14px;
    margin-left: 6px;
  }
  .mobile-menu-close {
    font-size: 24px;
    padding: 6px 11px;
    margin-right: 9px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    font-size: 15px;
    padding: 10px 7px;
    text-align: center;
  }
}

/* ===== MICRO-ANIMATIONS & VISUAL TECH ACCENTS ===== */
.card, .service-card, .feature-item, .benefit-item, .team-member {
  box-shadow: 0 1.5px 18px 0 #58d7ff07;
}
.card:hover, .service-card:hover, .feature-item:hover, .benefit-item:hover, .team-member:hover {
  box-shadow: 0 4px 23px 0 #2ae0a44c;
  border-color: #58d7ff;
  transition: box-shadow .2s, border-color .2s;
}
.cta-button, .cookie-banner .accept, .cookie-banner .reject, .cookie-banner .settings, .mobile-menu-toggle, button {
  transition: background .18s, color .13s, box-shadow .16s, transform .13s;
}
.cta-button:active, button:active {
  transform: scale(.98);
}

/***** Hide/Show Utility Classes *****/
.d-none { display: none !important; }
.d-block { display: block !important; }

/***** End of Clerifl Auto Select - Futuristic Tech CSS *****/
