/* =========================================================
   Radiance Roll Solutions — gradient_modern theme: style.css
   ---------------------------------------------------------
*/

/* 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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(125deg, #fffdfc 0%, #f5f7fa 100%);
  color: #193449;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #70A842;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #193449;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 4px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #193449;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.08rem; margin-bottom: 10px; font-weight: 600; }
p {
  margin-bottom: 12px;
  color: #193449;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #193449;
}

/* =========================================================
   GENERAL LAYOUT containers
========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* =========================================================
   HEADER & NAVBAR — Modern Gradient Style
========================================================= */
header {
  width: 100%;
  background: linear-gradient(90deg, #193449 90%, #70a842 100%);
  box-shadow: 0 2px 20px 0 rgba(25, 52, 73, 0.04);
  position: relative;
  z-index: 20;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
  height: 68px;
}
nav .logo {
  margin-right: 12px;
}
nav .logo img {
  height: 37px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fffdfc;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a:not(.logo):hover,
nav a:not(.logo):focus {
  background: #fffdfc;
  color: #193449;
}
.cta-primary {
  background: #70A842;
  color: #fffdfc;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 9px 22px 9px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 8px 0 rgba(112, 168, 66, 0.15);
  transition: background 0.21s, box-shadow 0.18s, color 0.17s;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #193449;
  color: #70A842;
  box-shadow: 0 4px 12px 0 rgba(112,168,66,0.18);
  text-decoration: none;
}
.cta-secondary {
  background: #193449;
  color: #fffdfc;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  margin-top: 14px;
  display: inline-block;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(25,52,73,0.09);
  transition: background 0.19s, color 0.17s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #70A842;
  color: #fffdfc;
  text-decoration: none;
}

/* ========== MOBILE BURGER MENU =========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #fffdfc;
  z-index: 31;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  color: #70A842;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #193449;
  color: #fffdfc;
  z-index: 33;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 12px 0;
  background: none;
  border: none;
  color: #fffdfc;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #70A842;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-left: 40px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fffdfc;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 0;
  margin-right: 28px;
  border-radius: 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #70A842;
  background: none;
}

@media (max-width: 1024px) {
  nav {
    gap: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 8px;
    padding-right: 8px;
    height: auto;
  }
}
@media (max-width: 820px) {
  nav a:not(.logo):not(.cta-primary) { display: none; }
  nav .cta-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 820px) {
  nav {
    justify-content: flex-start;
    height: 60px;
    padding-right: 42px;
  }
}

/* =========================================================
   HERO & MAIN PAGES
========================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
  box-shadow: none;
}
@media (max-width: 600px) {
  section {
    padding: 28px 7px;
  }
}
.hero, .section.hero {
  background: linear-gradient(90deg, #70A842 0%, #fffdfc 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(25,52,73,0.10);
}

/* Feature grid (as in /), use flex only */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 22px;
}
.feature-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.feature-description {
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 8px;
}
@media (max-width: 850px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-description { margin-bottom: 14px; }
}

/* =========================================================
   CARDS & FLEX CARD CONTAINERS
========================================================= */
.card-container,
.card-grid,
.service-cards,
.benefits-list,
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.service-card,
.benefit-item,
article.blog-post,
.case-study-snippet {
  position: relative;
  background: #fffdfc;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(25,52,73,0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 384px;
  transition: box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover,
.service-card:hover,
.benefit-item:hover,
article.blog-post:hover {
  box-shadow: 0 8px 30px 0 rgba(112,168,66,0.12);
  transform: translateY(-2px);
}
/* Blog listing */
.blog-listing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-search {
  display: flex;
  gap: 10px;
}
.blog-search input[type="search"] {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #fffdfc;
  font-size: 1rem;
  width: 100%;
  transition: border 0.2s;
}
.blog-search input[type="search"]:focus {
  outline: none;
  border: 1.5px solid #70A842;
}
.category-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
}
.category-filter button {
  background: #193449;
  color: #fffdfc;
  padding: 7px 16px;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-size: 0.98rem;
  transition: background 0.2s, color 0.18s;
}
.category-filter button:hover,
.category-filter button:focus {
  background: #70a842;
  color: #fffdfc;
}
.article-listing, .blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  min-width: 260px;
}
.blog-post a {
  color: #193449;
  font-weight: bold;
  transition: color 0.18s;
  margin-top: 10px;
  display: inline-block;
}
.blog-post a:hover, .blog-post a:focus {
  color: #70A842;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .card-container, .card-grid, .service-cards, .benefits-list, .blog-post-grid {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .card,
  .service-card,
  .benefit-item,
  .case-study-snippet {
    min-width: 85vw;
    max-width: 100%;
  }
  .card-container, .card-grid, .service-cards, .benefits-list, .blog-post-grid {
    flex-direction: column;
  }
}

.service-card .price,
.case-study-snippet .price {
  font-size: 1.075rem;
  font-weight: bold;
  color: #70A842;
  margin-top: 4px;
}

.benefits-list {
  gap: 24px;
  margin-bottom: 15px;
}
.benefit-item img {
  height: 42px;
  width: 42px;
  margin-bottom: 12px;
}
.benefit-item h3 {
  font-size: 1.08rem;
  color: #193449;
  margin-bottom: 4px;
}
.benefit-item p {
  color: #193449;
}

/* =========================================================
   TESTIMONIALS & CASE STUDIES (MANDATORY CONTRAST)
========================================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #fffdfc;
  color: #193449;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px 0 rgba(25,52,73,0.07);
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #193449;
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #70A842;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.testimonial-card span span {
  color: #f6be00; /* yellow stars */
  letter-spacing: 0.05em;
  font-size: 1.08em;
}

.case-study-snippet {
  border-left: 5px solid #70a842;
  padding-left: 18px;
  margin-bottom: 20px;
  background: #fcfff8;
  box-shadow: 0 2px 6px 0 rgba(112, 168, 66, 0.08);
}

/* FAQ Accordion Styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #f5f7fa;
  border-radius: 8px;
  box-shadow: 0 2px 7px 0 rgba(25,52,73,0.07);
  padding: 18px 20px;
  margin-bottom: 6px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #193449;
  margin-bottom: 7px;
}
.faq-item p {
  color: #193449;
  margin-bottom: 3px;
  font-size: 1rem;
}

/* Contacts, Map snippet, Company address */
.company-address, .email-and-hours, .map-snippet {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #193449;
}

/* Pricing and process steps (ordered list) */
.pricing-toggle ul {
  list-style: disc outside;
  margin-bottom: 10px;
  margin-left: 18px;
}
.pricing-toggle h3 {
  font-size: 1.15rem;
}
ol {
  margin-left: 25px;
  margin-bottom: 16px;
  font-size: 1.06rem;
}
ol li {
  margin-bottom: 7px;
}


/* ========== LEGAL TEXT SECTIONS ========== */
.legal-text {
  font-size: 1rem;
  color: #2b445f;
  line-height: 1.68;
}
.legal-text h2 { font-size: 1.19rem; color: #193449; margin-top: 20px; margin-bottom: 10px; }
.legal-text a { text-decoration: underline; }

/* =========================================================
   TEXT-IMAGE // FLEX SECTION TEMPLATES
========================================================= */
/* For layouts with image and text side-by-side */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: linear-gradient(93deg, #193449 90%, #70A842 100%);
  box-shadow: 0 -2px 24px 0 rgba(25,52,73,0.07);
  color: #fffdfc;
  font-size: 1rem;
  width: 100%;
  margin-top: 70px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 45px 20px 38px 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.18rem;
  color: #fffdfc;
  margin-bottom: 10px;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fffdfc;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  padding: 2px 0;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #70A842;
  color: #fffdfc;
}
.footer-contact {
  margin-bottom: 10px;
}
.footer-contact p, .footer-contact a {
  color: #fffdfc;
  font-size: 0.99rem;
}
.footer-social {
  display: flex;
  gap: 13px;
  margin-bottom: 10px;
  align-items: center;
}
.footer-social img {
  height: 25px;
  width: 25px;
  transition: opacity 0.15s, filter 0.15s;
  opacity: 0.84;
}
.footer-social a:hover img {
  opacity: 1;
  filter: brightness(1.12);
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
}
.footer-newsletter span {
  color: #fffdfc;
  font-size: 1rem;
  font-weight: 600;
}
.footer-newsletter input[type="email"] {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  width: 100%;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #193449;
}
.footer-newsletter button {
  background: #70A842;
  color: #fffdfc;
  padding: 7px 21px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 7px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px 0 rgba(112,168,66,0.13);
  transition: background 0.19s, color 0.14s;
}
.footer-newsletter button:hover, .footer-newsletter button:focus {
  background: #193449;
  color: #70A842;
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

/* =========================================================
   COOKIE BANNER & MODAL
========================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #193449;
  color: #fffdfc;
  z-index: 9999;
  padding: 22px 10px 17px 10px;
  box-shadow: 0 -2px 12px rgba(25,52,73,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  transition: transform 0.36s cubic-bezier(0.55, 1, 0.77, 1), opacity 0.26s;
  opacity: 0.98;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background 0.22s, color 0.18s;
  margin-right: 0;
}
.cookie-accept {
  background: #70A842;
  color: #fffdfc;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fffdfc;
  color: #70A842;
}
.cookie-reject {
  background: #fffdfc;
  color: #193449;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #70A842;
  color: #fffdfc;
}
.cookie-settings {
  background: #193449;
  color: #fffdfc;
  border: 1.5px solid #70A842;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #70A842;
  color: #fffdfc;
}

.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(25,52,73,0.46);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fffdfc;
  color: #193449;
  border-radius: 14px;
  box-shadow: 0 2px 24px 0 rgba(25,52,73, 0.23);
  padding: 32px 30px 30px 30px;
  max-width: 380px;
  min-width: 248px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeScaleIn 0.24s cubic-bezier(.22,1.05,.17,1.01);
}
@keyframes fadeScaleIn {
  from { opacity:0; transform:scale(0.92); }
  to { opacity:1; transform:scale(1); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #e0e0e0;
  border-radius: 12px;
  position: relative;
  outline: none;
  margin: 0 5px 0 0;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #70A842;
}
.cookie-toggle:before {
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  background: #fffdfc;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.19s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  color: #193449;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.78;
  transition: opacity 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  opacity: 1;
  color: #70A842;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 20px 11px 17px 15px;
    min-width: 90vw;
    max-width: 94vw;
  }
}

/* =========================================================
   ANIMATION & MICRO-INTERACTIONS
========================================================= */
button, .cta-primary, .cta-secondary {
  outline: none;
  cursor: pointer;
}
button:active, .cta-primary:active, .cta-secondary:active {
  outline: none;
  box-shadow: 0 2px 6px rgba(112,168,66,0.22) inset;
}
input[type="email"]:focus, input[type="search"]:focus {
  outline: 2px solid #70A842;
  box-shadow: 0 1px 6px rgba(112,168,66,0.09);
}

/* Subtle fade-in for cards & sections */
.section, .card, .service-card, .benefit-item, .faq-item, .testimonial-card {
  opacity: 0;
  animation: fadeIn 0.75s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes fadeIn {
  from { opacity:0; transform: translateY(24px); }
  to { opacity:1; transform: none; }
}

/* =========================================================
   RESPONSIVE TYPOGRAPHY & SPACING
========================================================= */
@media (max-width: 900px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.59rem; }
  .container { max-width: 96vw; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .section { margin-bottom: 34px; padding: 20px 4px; border-radius: 7px; }
  .testimonial-card, .case-study-snippet { padding: 14px 5px; }
}

/* =========================================================
   UTILITIES
========================================================= */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 2px 12px 0 rgba(25,52,73,0.10); }

/* =========================================================
   FONT FACE - fallback for Google Fonts
========================================================= */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm4532VJOt5-QNFgpC0.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
}

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