/* Pulvimisan Beratung – Industrial Modern Flexbox Stylesheet */

/* ====== 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,
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;
}
html {
  scroll-behavior: smooth;
  background: #192126;
}
body {
  min-height: 100vh;
  background: #23292f;
  color: #e5eef4;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
a {
  color: #F9C846;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffe36f;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style-position: inside;
}

/* =============================================== */
/* ====== BRAND VARIABLES (no custom props) ====== */
:root {
  /* Brand Colors */
  --color-primary: #185C7A;
  --color-primary-dark: #113A4C;
  --color-secondary: #E5EEF4;
  --color-bg: #23292f;
  --color-bg-light: #31383f;
  --color-accent: #F9C846;
  --color-accent-dark: #af891e;
  --color-metal: #414A53;
  --color-font-light: #e5eef4;
  --color-font-dark: #23292f;
  --color-grey: #848B94;
  --color-border: #31383f;
  --color-error: #d52b1e;
  --color-success: #27ae60;

  /* Font Stack */
  --font-display: 'Montserrat', 'Arial Narrow', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, .subheadline, .thank-you-text, .next-steps-info {
  font-family: var(--font-body);
  color: var(--color-font-light);
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent);
}
.subheadline {
  font-size: 1.125rem;
  color: var(--color-grey);
  margin-bottom: 18px;
  font-family: var(--font-display);
}

/* ============ CONTAINER & LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(17,58,76,0.16);
}

/* ===== FLEXBOX STRUCTURES (MANDATORY) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-metal);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(49,56,63,0.12);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px 0 rgba(249,200,70,0.12), 0 2px 18px 0 rgba(24,92,122,0.1);
}
.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;
  align-items: center;
  gap: 20px;
  background: #f7f9fa;
  color: #23292f;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(65,74,83,0.05);
  min-width: 260px;
  flex: 1 1 270px;
}
.testimonial-card p{
  color: #23292f;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 14px 18px 14px;
}

/* ============ HEADER, NAVIGATION, BRANDING ============ */
header {
  background: #212730;
  width: 100%;
  border-bottom: 2.5px solid var(--color-metal);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 16px 14px 16px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}
.main-nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  padding: 8px 13px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-font-dark);
  outline: none;
}
.cta-button {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 10px 26px;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.06em;
  margin-left: 14px;
  box-shadow: 0 2px 6px 0 rgba(24,92,122,0.11);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 6px 22px 0 rgba(249,200,70,0.18);
}

/* BURGER MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.12s, color 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-metal);
  color: var(--color-accent-dark);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #22272C;
  z-index: 300;
  padding: 0;
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 0 36px rgba(24,92,122,0.16);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  padding: 16px 23px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 32px 30px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  background: none;
  padding: 8px 4px;
  border-bottom: 1.5px solid var(--color-metal);
  width: 100%;
  border-radius: 0;
  transition: color 0.18s, background 0.15s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-primary);
  background: var(--color-secondary);
  outline: none;
}

/* =========== HERO & BANNER STYLES =========== */
.hero {
  background: linear-gradient(120deg, #23292F 80%, #185C7A 100%);
  padding: 46px 0 54px 0;
  margin-bottom: 60px;
  border-bottom: 2.5px solid var(--color-metal);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--color-accent);
  font-size: 2.65rem;
  text-shadow: 0 2px 12px #23292f99;
}
.hero .cta-button {
  margin-top: 18px;
}

/* =========== FEATURES GRID =========== */
.features {
  margin-bottom: 60px;
  padding: 40px 18px 36px 18px;
  background: #23292f;
  border-radius: 16px;
  box-shadow: 0 3px 24px rgba(17,58,76,0.09);
}
.features h2 {
  margin-bottom: 24px;
  color: var(--color-accent);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
}
.feature-grid > * {
  background: var(--color-bg-light);
  color: var(--color-font-light);
  border: 1.2px solid var(--color-metal);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(49, 56, 63, 0.07);
  flex: 1 1 250px;
  min-width: 220px;
  padding: 26px 17px 22px 19px;
  transition: border 0.16s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid img {
  height: 35px;
  margin-bottom: 9px;
  filter: grayscale(30%) brightness(0.95);
}
.feature-grid h3 {
  font-size: 1.13rem;
  margin-bottom: 4px;
  color: var(--color-accent);
}
.feature-grid > *:hover {
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 7px 32px rgba(249,200,70,0.18), 0 1.5px 12px rgba(24,92,122,0.1);
}

/* =========== SERVICES CARDS =========== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  justify-content: flex-start;
}
.service-card, .service-item {
  background: var(--color-bg-light);
  color: var(--color-font-light);
  border-radius: 10px;
  border: 1.2px solid var(--color-metal);
  box-shadow: 0 3px 16px rgba(65,74,83,0.08);
  flex: 1 1 270px;
  min-width: 230px;
  padding: 24px 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  margin-bottom: 20px;
  transition: border 0.15s, box-shadow 0.16s;
}
.service-card:hover, .service-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 5px 24px rgba(255,217,88,0.14), 0 1.5px 16px rgba(24,92,122,0.09);
  z-index: 2;
}
.service-card h3, .service-item h2 {
  color: var(--color-accent);
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.service-price {
  color: var(--color-accent);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* =========== TESTIMONIALS =========== */
.testimonials {
  background: var(--color-bg-light);
  padding: 38px 18px 36px 18px;
  border-radius: 16px;
}
.testimonials h2 {
  color: var(--color-accent);
  margin-bottom: 18px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f7f9fa;
  color: #23292f !important;
  border-radius: 10px;
  border: 1.2px solid #d6dee5;
  box-shadow: 0 2px 8px rgba(65,74,83,0.06);
  flex: 1 1 265px;
  min-width: 220px;
  padding: 22px 18px 18px 18px;
  gap: 13px;
  transition: box-shadow 0.16s, border 0.16s;
}
.testimonial-card strong {
  color: #185C7A;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #185c7a12;
  border-color: var(--color-accent);
}

/* =========== CTA SECTION =========== */
.cta {
  margin-bottom: 60px;
  padding: 40px 18px 36px 18px;
  background: #21272c;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 20px rgba(17,58,76,0.09);
}
.cta h2 {
  color: var(--color-accent);
  margin-bottom: 14px;
}
.cta p {
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.cta .cta-button {
  margin: 0 auto;
}

/* =========== FOOTER =========== */
footer {
  margin-top: 60px;
  background: #192126;
  padding: 32px 0 18px 0;
  border-top: 2.5px solid var(--color-metal);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-navigation a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.02rem;
  transition: color 0.16s, border-bottom 0.14s;
  border-bottom: 1px solid transparent;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-accent);
}
.legal-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.98rem;
  color: var(--color-grey);
  margin-bottom: 6px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 4px;
}
.social-media-links a img {
  height: 28px;
  width: 28px;
  opacity: 0.83;
  filter: grayscale(40%) brightness(1.1);
  transition: opacity 0.14s, filter 0.18s;
}
.social-media-links a:hover img {
  opacity: 1;
  filter: grayscale(10%) brightness(1.19);
}

/* =========== LEGAL, FAQ, OTHER PAGES =========== */
.legal, .faq, .about, .contact, .location, .hours, .confirmation {
  margin-bottom: 60px;
  padding: 40px 18px 36px 18px;
  background: #23292f;
  border-radius: 16px;
  box-shadow: 0 3px 24px rgba(24,92,122,0.08);
}
.text-section {
  margin-bottom: 18px;
  color: var(--color-font-light);
}
.values-list {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 35px;
  font-family: var(--font-body);
  color: var(--color-accent);
}
.values-list li {
  background: #192126;
  border-radius: 7px;
  border: 1.1px solid var(--color-metal);
  padding: 9px 17px 9px 15px;
  font-size: 15px;
  font-weight: 500;
}
.team-intro {
  margin-bottom: 18px;
  padding-bottom: 8px;
}
/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-bg-light);
  border: 1.2px solid var(--color-metal);
  border-radius: 10px;
  padding: 22px 16px 15px 16px;
  box-shadow: 0 2px 10px rgba(24,92,122,0.04);
  transition: box-shadow 0.15s, border 0.15s;
}
.faq-item h2 {
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 7px;
}
.faq-item:hover {
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 8px 26px 0 rgba(249,200,70,0.13);
}
/* Stepper Timeline */
.stepper-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 24px 0 0 0;
  counter-reset: step;
}
.stepper-timeline li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
}
.stepper-timeline li::before {
  counter-increment: step;
  content: counter(step);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--color-primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -32px;
  top: 0;
  box-shadow: 0 2px 8px rgba(24,92,122,0.11);
  border: 2px solid var(--color-accent);
}

/* =========== CONTACT & LOCATION =========== */
.contact-information {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 14px;
}
.contact-information .text-section ul {
  margin-bottom: 8px;
}
.contact-information .text-section li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--color-font-light);
}
.contact-information .text-section li img {
  height: 19px;
  width: 19px;
  filter: grayscale(55%);
}
.address-details {
  margin-bottom: 13px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.map-embed img {
  border-radius: 5px;
  box-shadow: 0 2px 10px #23292f22;
}

/* ========== HOURS ============= */
.hours ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hours li {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.09rem;
}

/* ============ CONFIRMATION PAGE =========== */
.confirmation .thank-you-text, .confirmation .next-steps-info {
  color: var(--color-font-light);
  margin-bottom: 20px;
  font-size: 1.09rem;
  text-shadow: 0 1px 6px #23292f3a;
}

/* =========== COOKIE CONSENT BANNER =========== */
#cookie-banner, .cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #222A32;
  color: var(--color-font-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 16px 15px 16px;
  box-shadow: 0 -3px 12px rgba(17,58,76,0.15);
  z-index: 9999;
  transition: transform 0.24s;
  border-top: 2px solid var(--color-metal);
}
#cookie-banner.hide, .cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-message {
  font-size: 1rem;
  color: var(--color-font-light);
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 5px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-accent);
  transition: background 0.14s, color 0.15s;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff6d9;
}
.cookie-btn.reject {
  background: var(--color-error);
  color: #fff5f5;
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.3px solid var(--color-metal);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.13);
  box-shadow: 0 1px 6px #f9c84635;
  outline: none;
}

/* COOKIE MODAL */
#cookie-modal, .cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98vw;
  max-width: 380px;
  background: #1e2328;
  border-radius: 16px;
  border: 2px solid var(--color-accent);
  transform: translate(-50%, -50%) scale(0.98);
  z-index: 10000;
  box-shadow: 0 11px 42px rgba(24,92,122,0.21);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
}
#cookie-modal.active, .cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: var(--color-accent);
  font-size: 1.11rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  color: var(--color-font-light);
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #87909b;
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* =========== UTILITIES =========== */
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1100px) {
  .container { max-width: 98vw; padding: 0 9px; }
}
@media (max-width: 900px) {
  .feature-grid, .services-list, .testimonial-slider,
  .card-container, .content-grid, .contact-information {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  /* Hamburger becomes visible, nav hides */
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .legal-info {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .social-media-links {
    gap: 11px;
  }
  .hero, .features, .section, .cta, .testimonials,
  .legal, .faq, .about, .contact, .location, .hours, .confirmation {
    padding: 22px 5px 22px 5px;
  }
  .content-wrapper, .feature-grid, .services-list, .testimonial-slider, .card-container, .content-grid {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .stepper-timeline li {
    padding-left: 40px;
  }
}
@media (max-width: 500px) {
  body { font-size: 15px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .logo img { height: 37px; }
  .cta-button { font-size: 0.97rem; padding: 8px 13px; }
  .service-card,
  .service-item,
  .feature-grid > *,
  .testimonial-card {
    padding-left: 10px;
    padding-right: 8px;
    min-width: 0;
    font-size: 0.97rem;
  }
}

/* ============ FOCUS, TRANSITIONS, MICRO-INTERACTIONS ============ */
:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2.5px;
}
button, [role="button"], .cta-button {
  transition: background 0.16s, color 0.14s, box-shadow 0.2s;
}
.card, .feature-grid > *, .service-card, .service-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, border 0.14s;
}
.cta-button,.card:hover,.feature-grid > *:hover,.service-card:hover,.service-item:hover,
.faq-item:hover,.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(249,200,70,0.13);
  z-index: 2;
}

/* ======= METALLIC INDUSTRIAL DETAILING ======= */
.card, .feature-grid > *, .service-card, .service-item {
  border-image: linear-gradient(120deg, #414A53 60%, #cccccb 104%) 1;
  border-width: 1.2px;
  border-style: solid;
}

/* ==== SUPPORTED BROWSER FALLBACKS ==== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'),
  url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm45_QpRyS7m0dR9pA.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
  url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.woff2') format('woff2');
}

/* ===== CLEAR FLEXBOX - NO GRID OR COLUMNS PRESENT ===== */
/* REQUIRED BY SPEC! */
