/* ===========================================================
   CSS RESET & NORMALIZATION
   Ensures consistent baseline for vintage_retro style
   =========================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4F2ED;
  color: #294027;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #B25A12;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #415D43;
  text-decoration-thickness: 2px;
}
ul, ol {
  margin-left: 1em;
}

/* ===========================================================
   BRAND VARIABLES (Retro Inspired)
   =========================================================== */
:root {
  --retro-green: #415D43;
  --retro-cream: #F4F2ED;
  --retro-brown: #B25A12;
  --retro-orange: #D98841;
  --retro-darkgreen: #294027;
  --retro-shadow: rgba(65,93,67,0.06);
  --retro-font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --retro-font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --shadow-md: 0 4px 24px var(--retro-shadow);
  --shadow-lg: 0 10px 32px var(--retro-shadow);
  --section-gap: 60px;
  --container-max: 1120px;
  --pattern-url: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="8" width="2" height="2" fill="%23B25A12"/><rect y="8" width="2" height="2" fill="%239D6013"/><rect x="14" y="14" width="2" height="2" fill="%23D98841"/></svg>');
}

/* ===========================================================
   TYPOGRAPHY — Vintage Retro Touch
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--retro-font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #294027;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  text-shadow: 1px 2.5px 0 #B25A12, 0 5px 24px var(--retro-shadow);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 1px 2px 0 #D98841, 0 2px 8px var(--retro-shadow);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, blockquote, input, select, button, label {
  font-family: var(--retro-font-body);
  color: #294027;
  font-size: 1em;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-family: var(--retro-font-body);
  font-size: 1.18rem;
  color: #6e4a27;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
.intro-text {
  font-family: var(--retro-font-body);
  font-size: 1.1rem;
  color: #B25A12;
  margin-bottom: 18px;
}
strong, b {
  font-weight: bold;
  color: #B25A12;
}

/* Retro-style Section Header Decorations */
h2:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 6px;
  background: var(--retro-orange);
  border-radius: 4px;
  margin-right: 13px;
  opacity: 0.33;
  vertical-align: middle;
}

/* ===========================================================
   MAIN LAYOUT CONTAINERS & SPACING (Flexbox Only)
   =========================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.section {
  margin-bottom: var(--section-gap);
  padding: 40px 20px;
  background: #F4F2ED;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.cta-banner {
  margin-bottom: var(--section-gap);
  padding: 32px 20px;
  border-radius: var(--border-radius);
  background: var(--retro-cream) var(--pattern-url);
  border: 2px dashed var(--retro-brown);
}

/* ===========================================================
   CARDS, FLEXBOX PATTERNS & TESTIMONIALS
   =========================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin: 20px 0 0 0;
  background: #fff8ef;
  border-left: 6px solid var(--retro-brown);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 1.09rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card strong {
  color: #415D43;
  font-size: 1em;
  padding-top: 0.5em;
}
.testimonial-card p {
  color: #294027;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px #d9884127, var(--shadow-lg);
  transform: translateY(-3px) scale(1.01);
}

/* ===========================================================
   BUTTONS & CTA (Retro Pill Buttons)
   =========================================================== */
.primary, .header-cta.primary, button.primary, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--retro-green);
  color: #fff !important;
  font-family: var(--retro-font-display);
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.06em;
  border-radius: 32px;
  padding: 12px 30px;
  border: none;
  margin-top: 8px;
  box-shadow: 0 2px 12px #29402720;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  position: relative;
  z-index: 1;
}
.primary.cta {
  font-size: 1.20rem;
}
.primary:hover:not(:disabled), .primary:focus:not(:disabled), .cta:hover, .cta:focus {
  background: var(--retro-brown);
  color: #fff !important;
  box-shadow: 0 4px 24px #B25A121f;
  transform: scale(1.055);
}
.secondary, button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--retro-brown);
  font-family: var(--retro-font-display);
  border: 2px solid var(--retro-brown);
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
}
.secondary:hover, .secondary:focus {
  background: var(--retro-brown);
  color: #fff;
  border-color: var(--retro-green);
  transform: scale(1.045);
}

/* Inline buttons (links in text) */
a.button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--retro-font-display);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 18px;
  background: var(--retro-brown);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
a.button:hover, .button:hover { background: var(--retro-green); }


/* ===========================================================
   NAVIGATION — HEADER STYLES (Retro Touch)
   =========================================================== */
header {
  background: var(--retro-cream);
  box-shadow: 0 2px 20px #B25A1220;
  border-bottom: 3px solid #D98841;
  min-height: 78px;
  position: sticky;
  top: 0;
  z-index: 1030;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-family: var(--retro-font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: #415D43;
  text-decoration: none;
  background: none;
  border: none;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-color 0.13s;
  letter-spacing: 0.02em;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: var(--retro-brown);
  border-bottom: 2px solid var(--retro-brown);
}
.header-cta.primary {
  margin-left: 16px;
  min-width: 170px;
}

/* Mobile Only: Burger Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  width: 44px;
  height: 44px;
  background: var(--retro-green);
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px #29402728;
  z-index: 1060;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--retro-orange);
}
.mobile-menu-toggle:hover {
  background: var(--retro-brown);
}

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff8ef;
  box-shadow: 0 4px 60px #b25a1237;
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.52,1.63,.38,.97);
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--retro-brown);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 5px 9px;
  border-radius: 16px;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff0e0;
  color: var(--retro-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--retro-font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--retro-green);
  text-decoration: none;
  padding: 12px 0px;
  transition: color 0.18s, background 0.18s;
  border-radius: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F2ED;
  color: var(--retro-brown);
}

/* Responsive: header & navigation */
@media (max-width: 900px) {
  .desktop-nav, .header-cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Ensure z-index stacking for header/mobile menu */
header, .mobile-menu, .mobile-menu-toggle { z-index: 1050; }

/* ===========================================================
   FOOTER STYLES
   =========================================================== */
footer {
  background: #efebe4 url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="8" width="2" height="2" fill="%23D98841"/><rect y="8" width="2" height="2" fill="%23B25A12"/><rect x="14" y="14" width="2" height="2" fill="%23415D43"/></svg>');
  border-top: 3px solid var(--retro-brown);
  padding: 42px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 32px;
}
.footer-nav a {
  font-family: var(--retro-font-display);
  font-size: 1.10rem;
  color: #415D43;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px dotted #B25A12;
  transition: color 0.15s, border-bottom 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-brown);
  border-bottom: 2px solid var(--retro-brown);
}
footer .text-section {
  font-family: var(--retro-font-body);
  font-size: 1.02rem;
  color: #415D43;
  margin-left: 32px;
  margin-top: 0px;
}

/* Responsive: footer */
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-nav, footer .text-section {
    margin-left: 0;
  }
}

/* ===========================================================
   LISTS & FEATURE LISTS
   =========================================================== */
.features-list, .values-list, .guarantee-list, .category-list,
.services-list, .advantages-list, .benefits-list, .steps-list, .services-brief,
.contact-info-list, .products-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0px;
}
/* Add retro icons for custom ULs */
.features-list li,
.values-list li,
.guarantee-list li,
.category-list li,
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.10rem;
  color: var(--retro-green);
  background: #f9f7f2;
  border-left: 5px solid var(--retro-orange);
  padding: 11px 18px 11px 14px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 11px #d9884112;
}
.features-list img, .values-list img, .guarantee-list img, .category-list img, .benefits-list img {
  width: 32px;
  height: 32px;
  background: #fff5ea;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 0 1.5px 7px #d9884140;
}
.steps-list li {
  counter-increment: step-counter;
  padding-left: 0.7em;
  position: relative;
}
.steps-list li:before {
  content: counter(step-counter) ". ";
  color: var(--retro-brown);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.advantages-list li {
  background: #efebe4;
  color: #294027;
  border-radius: var(--border-radius-sm);
  border-left: 3.5px solid #415D43;
  padding: 8px 17px 8px 12px;
  font-size: 1.07rem;
  margin-bottom: 2px;
}
.services-brief li {
  background: #fffbe9;
  color: #294027;
  border-radius: var(--border-radius-sm);
  border-left: 2.5px solid #D98841;
  padding: 7px 16px 7px 11px;
  font-size: 1.04rem;
}

/* Product Feature Cards */
.products-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.products-featured li {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--border-radius-sm);
  padding: 16px 22px;
  box-shadow: 0 2px 12px #29402714;
  border-left: 4px solid #415D43;
  justify-content: space-between;
}
.products-featured .text-section {
  margin-right: 14px;
}
.products-featured span {
  color: var(--retro-brown);
  font-size: 0.97em;
  font-weight: 600;
}

/* FAQ Section Preview */
.faq-preview {
  background: #fff7ef;
  border-radius: var(--border-radius);
  padding: 18px 24px;
  margin-top: 14px;
  box-shadow: 0 2px 14px #D9884112;
  border-left: 5px dotted #B25A12;
}
.faq-preview h3 {
  color: var(--retro-green);
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-family: var(--retro-font-display);
}
.faq-preview ul {
  margin-left: 12px;
  padding-left: 0;
}
.faq-preview li {
  margin-bottom: 7px;
  font-size: 1em;
}

/* ===========================================================
   FORMS, SEARCH BARS & INPUTS
   =========================================================== */
input[type="text"], select {
  background: #f9f7f2;
  color: #294027;
  border-radius: 6px;
  padding: 10px 12px;
  border: 1.5px solid #D98841;
  font-size: 1rem;
  font-family: var(--retro-font-body);
  outline: none;
  transition: border 0.17s, box-shadow 0.17s;
  margin-right: 10px;
}
input[type="text"]:focus, select:focus {
  border-color: var(--retro-green);
  box-shadow: 0 2px 7px #29402723;
}
.catalog-search {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 17px;
  align-items: center;
}
.catalog-search input[type="text"] {
  flex: 1 1 220px;
  min-width: 0;
}
.catalog-search button[type="submit"] {
  background: var(--retro-brown);
  color: #fff;
  font-family: var(--retro-font-display);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 9px #b25a1222;
  transition: background 0.18s, transform 0.09s;
}
.catalog-search button[type="submit"]:hover,
.catalog-search button[type="submit"]:focus {
  background: var(--retro-green);
  transform: scale(1.05);
}

/* ===========================================================
   RESPONSIVE LAYOUTS & FLEX DIRECTIONS (Mobile First)
   =========================================================== */
.section, .cta-banner {
  margin-bottom: var(--section-gap);
  padding: 32px 8px;
}
@media (min-width: 650px) {
  .section, .cta-banner {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
/* Spacing between content cards and sections */
.content-wrapper > * {
  margin-bottom: 14px;
}
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* Ensure no element overlap */
.card, .section, .testimonial-card, .cta-banner {
  margin-bottom: 24px; /* min 20px spacing */
}

/* Extra touch: section backgrounds */
@media (min-width: 950px) {
  .section:nth-child(even), .cta-banner {
    background: #fff url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="8" width="2" height="2" fill="%23eee5df"/><rect y="8" width="2" height="2" fill="%23b25a12"/><rect x="14" y="14" width="2" height="2" fill="%23D98841"/></svg>');
  }
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL (Retro Vintage)
   =========================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff8ef;
  border-top: 3px solid var(--retro-brown);
  box-shadow: 0 -3px 12px #b25a1230;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 22px 14px 20px 14px;
  gap: 16px;
  font-size: 1rem;
  font-family: var(--retro-font-body);
  animation: cookieIn 0.56s cubic-bezier(.55,1.24,.41,1.01);
}
@keyframes cookieIn {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
#cookie-banner .primary, #cookie-banner .secondary {
  padding: 8px 18px;
  font-size: 1em;
  border-radius: 22px;
}
#cookie-banner .secondary {
  border-width: 1.5px;
}
#cookie-banner button {
  min-width: 110px;
}

/* Cookie Preferences Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fffbe9;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 40px #415d4347;
  border: 2px solid var(--retro-brown);
  padding: 36px 28px;
  z-index: 9999;
  max-width: 400px;
  min-width: 280px;
  animation: cookiesUp 0.45s cubic-bezier(.48,1.39,.34,.98);
}
#cookie-modal.open {
  display: block;
}
@keyframes cookiesUp {
  0% { transform: translate(-50%, 80%) scale(0.87); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
#cookie-modal h3 {
  font-family: var(--retro-font-display);
  color: var(--retro-brown);
  margin-bottom: 15px;
  font-size: 1.18em;
}
#cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #fff0e4;
  padding: 9px 12px;
  font-family: var(--retro-font-body);
  margin-bottom: 11px;
  font-size: 1em;
}
#cookie-modal .category input[type="checkbox"] {
  accent-color: var(--retro-brown);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
#cookie-modal .category label, #cookie-modal .category span {
  font-size: 1em;
}
#cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  font-size: 1.5em;
  color: var(--retro-brown);
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  border-radius: 14px;
  padding: 2px 7px;
  transition: background 0.11s;
}
#cookie-modal .close-cookie-modal:hover,
#cookie-modal .close-cookie-modal:focus {
  background: #fff8ef;
}

/* Overlay for modal */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(41,64,39,0.26);
}
#cookie-modal.open ~ #cookie-modal-overlay {
  display: block;
}

/* ===========================================================
   PRINT STYLES (reduce shades)
   =========================================================== */
@media print {
  header, footer, #cookie-banner, .mobile-menu { display: none !important; }
  .section, .cta-banner { box-shadow: none !important; }
}

/* ===========================================================
   ADDITIONAL NOSTALGIC ELEMENTS & PATTERNS
   =========================================================== */
.section, .cta-banner {
  background-attachment: fixed;
  background-repeat: repeat;
}
::-webkit-scrollbar {
  width: 11px;
  background: #f4f2ed;
}
::-webkit-scrollbar-thumb {
  background: #e2b186;
  border-radius: 8px;
  border: 3px solid #f4f2ed;
}
::-webkit-scrollbar-thumb:active {
  background: #b25a12;
}

/* Vintage border for focusable links and controls */
a:focus, button:focus, input:focus, select:focus {
  outline: 2.1px dashed var(--retro-orange);
  outline-offset: 2px;
}

/* ==============================
   FONT FAMILY IMPORT (Fallback)
   ============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400|Open+Sans:400,700&display=swap');

/* ===========================================================
   END STYLES
   =========================================================== */
