/* 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,
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
  color: #24344D;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #183254;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D1A646;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 0.7em;
}

/* BRAND COLORS */
:root {
  --primary: #183254;
  --secondary: #D1A646;
  --accent: #F5F5F5;
  --natural-bg: #ffffff;
  --shadow: 0 2px 12px rgba(34,36,38,0.07);
  --border-radius: 12px;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 0.5px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--primary);
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: #4D5873;
  letter-spacing: 0.2px;
}
p, li {
  font-size: 1rem;
  color: #24344D;
}
strong {
  font-weight: 600;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER */
header {
  background: var(--natural-bg);
  box-shadow: 0 2px 12px rgba(24, 50, 84, 0.08);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1002;
}
.logo-row {
  display: flex;
  align-items: center;
  padding: 16px 0 7px 0;
  margin-bottom: 0;
}
.logo-row a img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 0 12px 0;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.main-nav .cta.primary {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 8px 28px;
  margin-left: 12px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(34,36,38,0.08);
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(209,166,70,0.18);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  margin-left: auto;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(245,245,245,0.98);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.78,.1,.39,.95);
  box-shadow: 0 4px 32px rgba(24,50,84,0.10);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 42px 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  padding: 7px 0;
  font-weight: 500;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* Make mobile menu cover everything (z-index above header) */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .mobile-nav {
    padding: 36px 18px;
    gap: 16px;
  }
  .mobile-menu-close {
    margin-right: 10px;
    margin-top: 20px;
  }
}

/* SECTIONS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--natural-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(34,36,38,0.04);
}
section.hero {
  background: linear-gradient(120deg,#F6F7F9 80%,#e8eae9 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: none;
  margin-bottom: 40px;
}
section.cta, section.callout {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  border-radius: 22px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(209,166,70,0.07);
  width: 100%;
}
section.cta h2, section.callout h2, section.cta a, section.callout a {
  color: #fff;
}
section.cta a.cta {
  background: #fff;
  color: var(--secondary);
  border: 2px solid #fff;
}
section.cta a.cta:hover {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.content-wrapper.text-section {
  max-width: 760px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--natural-bg);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 240px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34,36,38,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING & ALIGNMENT */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card { margin-bottom: 20px; }
.card-container, .feature-grid, .service-list, .stats-grid, .project-list, .blog-post-list {
  gap: 24px;
}
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section {
    padding: 32px 0.5em;
    margin-bottom: 32px;
  }
  .card-container,.feature-grid,.service-list,.stats-grid,.blog-post-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .service-list, .stats-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* HERO HEADERS */
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero p.subheadline {
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* FEATURES & SERVICE BLOCKS */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .service-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24,50,84,0.07);
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature img, .service-block img {
  margin-bottom: 14px;
  max-width: 48px;
  min-width: 36px;
}
.feature:hover, .service-block:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 6px 24px rgba(24,50,84,0.13);
}
.service-price {
  font-weight: 600;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
}
.stat-block {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(24,50,84,0.06);
  flex: 1 1 180px;
  min-width: 150px;
  max-width: 220px;
  padding: 23px 14px 17px 14px;
  text-align: center;
}
.stat-block strong {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.15em;
}
.stat-block span {
  display: block;
  font-size: 1.05rem;
  color: var(--primary);
}

/* TEAM, PROJECTS, BLOG, TEXT SECTIONS */
.team-list, .project-list, .blog-post-list, .blog-teaser-list, .expertise-highlights, .project-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-teaser-list li, .project-highlights li, .expertise-highlights li {
  background: #fafdff;
  border-left: 4px solid var(--secondary);
  padding: 11px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.blog-teaser-list li a {
  color: var(--primary);
  font-weight: 500;
}
.blog-teaser-list li a:hover {
  color: var(--secondary);
}

.blog-post-list li {
  padding: 22px 18px;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(209,166,70,0.04);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TESTIMONIALS */
.testimonials .testimonial-card, .testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(24,50,84,0.07);
  margin-bottom: 24px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}
.testimonial-author {
  color: #607088;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  align-self: flex-end;
}

/* LEGAL, COOKIE POLICY, RODO, ETC */
.legal {
  background: var(--natural-bg);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,50,84,0.07);
  margin-bottom: 50px;
  padding: 40px 25px;
}

/* STEPS & TIMELINE */
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 8px;
}
.step-by-step li {
  font-size: 1rem;
  padding-left: 8px;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* CARDS */
.card {
  background: #fff;
}

/* BUTTONS & CTAs */
.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(24,50,84,0.10);
  text-align: center;
  transition: background 0.18s, color 0.2s, box-shadow 0.16s, transform 0.13s;
  margin: 2px 0;
}
.cta.primary,
.btn.primary {
  background: var(--primary);
  color: #fff;
}
.cta.primary:hover,
.btn.primary:hover,
.cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(209,166,70,0.09);
  transform: translateY(-2px) scale(1.02);
}
.cta.secondary,
.btn.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta.secondary:hover,
.btn.secondary:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-1px) scale(1.01);
}

/* Cards hover effect */
.card:hover, .blog-post-list li:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 32px rgba(24,50,84,0.10);
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* HINTS & TAGS */
.hint {
  color: #888;
  font-size: 0.93rem;
  font-style: italic;
  margin-left: 6px;
}

/* FORMS (for contactForm etc) */
.contactForm input,
.contactForm textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #D5DAE1;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 19px;
  outline: none;
  background: #fafbfc;
  transition: border 0.18s;
}
.contactForm input:focus,
.contactForm textarea:focus {
  border: 1.5px solid var(--secondary);
  background: #fffef8;
}

/* MAP SECTION */
.map .text-section {
  background: #fafdff;
  border-radius: 8px;
  padding: 18px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 1.05em;
}

/* FOOTER */
footer {
  background: #E7EAEF;
  padding: 32px 0 20px 0;
  margin-top: 48px;
  font-size: 0.95rem;
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer img {
  height: 32px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0px;
}
.footer-nav a:hover {
  text-decoration: underline;
  color: var(--secondary);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #24344D;
  font-size: 1rem;
}
.copyright {
  margin-top: 12px;
  color: #999;
  font-size: 0.88em;
}

@media (max-width: 1024px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  footer {
    padding: 26px 0 12px 0;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2600;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(24,50,84,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  gap: 20px;
  transition: transform 0.65s cubic-bezier(.77,.51,.18,1.08);
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(200px);
}
.cookie-banner__msg {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.35;
  max-width: 600px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(34,36,38,0.10);
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(209,166,70,0.15);
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}
.cookie-btn.secondary:focus,
.cookie-btn.secondary:hover {
  background: var(--secondary);
  color: #fff;
  border: 2px solid var(--secondary);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 19px 10px;
  }
  .cookie-banner__msg {
    font-size: 0.98em;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2700;
  background: rgba(24,50,84,0.16);
  visibility: hidden;
  transition: visibility 0.32s, opacity 0.38s;
  opacity: 0;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(34,36,38,0.16);
  padding: 38px 30px 30px 30px;
  min-width: 320px;
  max-width: 98vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  position: relative;
  animation: modalIn 0.42s cubic-bezier(.69,.03,.25,.99);
}
@keyframes modalIn {
  0% { transform: scale(0.88) translateY(34px); opacity: 0; }
  70% { transform: scale(1.03) translateY(-6px); opacity: 0.93; }
  100% { transform: scale(1.0) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  right: 16px; top: 14px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--accent);
}
.cookie-modal__title {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 7px;
  font-weight: 600;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 1.08rem;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-switch {
  margin-left: auto;
}
/* Simple toggle switch */
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch span {
  display: inline-block;
  width: 45px;
  height: 24px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-switch span:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.16s;
  box-shadow: 0 2px 6px rgba(24,50,84,0.05);
}
.cookie-switch input[type="checkbox"]:checked + span {
  background: var(--secondary);
}
.cookie-switch input[type="checkbox"]:checked + span:before {
  transform: translateX(21px);
}
.cookie-category .info {
  font-size: 0.97em;
  color: #888;
  margin-left: 6px;
  font-style: italic;
}
.cookie-modal__footer {
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 18px;
}

/* MODAL RESPONSIVE */
@media (max-width: 400px) {
  .cookie-modal__content {
    min-width: 96vw;
    padding: 12vw 2vw 7vw 2vw;
  }
}

/* ANIMATIONS + MICRO INTERACTIONS */
.card, .feature, .service-block, .stat-block, .blog-post-list li, .blog-teaser-list li, .project-highlights li, .expertise-highlights li, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.19s;
}
.cta, .btn, .card, .feature, .service-block, .stat-block, .blog-post-list li {
  transition: box-shadow 0.18s, background 0.19s, color 0.18s, transform 0.14s;
}

/* ACCESSIBILITY: ENSURE LEGIBLE CONTRAST in testimonials/cards */
.testimonial-card,
.testimonial-card blockquote, .testimonial-author {
  color: #1A222B;
  background: #fff;
}

/* RESPONSIVE FONTS & HERO */
@media (max-width: 600px) {
  h1, .h1, section.hero h1 { font-size: 1.75rem; }
  h2, .h2 { font-size: 1.28rem; }
  section.hero, .section { padding-left: 5px; padding-right: 5px; }
}

/* MISC */
::-webkit-input-placeholder { color: #B7BBC4; opacity: 1; }
::-moz-placeholder { color: #B7BBC4; opacity: 1; }
:-ms-input-placeholder { color: #B7BBC4; opacity: 1; }
::placeholder { color: #B7BBC4; opacity: 1; }

[hidden], .hidden { display: none !important; }

/* --- END --- */
