/* 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
:root {
  --primary: #1F3D62;
  --secondary: #FFFFFF;
  --accent: #FFD700;
  --brand-blue-100: #eaf1fb;
  --brand-blue-200: #bdd5ef;
  --brand-blue-300: #8ab5e0;
  --brand-pink: #FF60A8;
  --brand-lime: #5DF296;
  --brand-orange: #FFA857;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-sm: 0 2px 6px rgba(31,61,98,0.07);
  --shadow-md: 0 6px 20px rgba(31,61,98,0.10);
  --radius: 18px;
  --transition-fast: 0.18s cubic-bezier(.45,.8,.52,1.4);
  --transition-main: 0.3s cubic-bezier(.65,.05,.36,1);
}
body {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .01em;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* LINKS */
a {
  color: var(--primary);
  transition: color var(--transition-fast);
}
a:hover, a:focus {
  color: var(--brand-pink);
  text-decoration: underline;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* BUTTONS */
.btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65em 2.1em;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main), transform 0.18s;
  border: 0;
  margin: 8px 0 0 0;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px 0 rgba(255,215,0,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-lime);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.btn-secondary {
  background: var(--brand-pink);
  color: #fff;
  border: 2px solid var(--brand-pink);
  box-shadow: 0 4px 20px 0 rgba(255,96,168,0.12);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-orange);
  color: var(--primary);
  transform: translateY(-2px) scale(1.03) rotate(1deg);
}

/* MAIN NAVIGATION */
header {
  background: var(--secondary);
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  z-index: 20;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
  width: 100%;
}
.main-nav > a img {
  max-height: 44px;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 8px 18px;
  border-radius: 32px;
  color: var(--primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--brand-blue-100);
  color: var(--brand-pink);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 12px;
  padding: 7px 13px;
  margin-left: 12px;
  border: none;
  transition: background var(--transition-main), color var(--transition-main);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-lime);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--brand-blue-100);
  box-shadow: var(--shadow-sm);
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.37,2,.31,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.2rem;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: none;
  z-index: 200;
  cursor: pointer;
  transition: background var(--transition-main);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 60px 40px 0 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border-radius: 16px;
  padding: 12px 20px;
  margin-bottom: 4px;
  transition: color .18s, background .18s;
  box-shadow: var(--shadow-sm);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-pink);
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav ul, .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 60px 15px 0 15px;
    font-size: 1.1rem;
  }
  .mobile-menu-close {
    right: 15px;
  }
}

/* ==== LAYOUT WRAPPERS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 0 0;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px 22px 26px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.card:hover,
.card:focus-within {
  box-shadow: 0 10px 30px 0 rgba(31,61,98,0.14);
  transform: translateY(-3px) scale(1.019) rotate(-1.3deg);
  z-index: 10;
}
/* content-grid (default horizontal, mobile vertical) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 320px;
  max-width: 470px;
  border-left: 8px solid var(--brand-orange);
  transition: box-shadow var(--transition-main), transform 0.15s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 8px 32px rgba(255,168,87,0.14);
  transform: translateY(-2px) scale(1.025) rotate(0.5deg);
}
.testimonial-meta {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5em;
}
.testimonial-meta span {
  color: var(--brand-pink);
  font-size: 1.32rem;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* GRID COMPONENTS USING FLEX ONLY */
.feature-grid, .services-grid, .workshop-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 28px 0 14px 0;
}
.feature-grid li,
.services-grid li,
.workshop-overview li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 17px 18px 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow var(--transition-main), transform .18s;
}
.feature-grid li:hover,
.services-grid li:hover,
.workshop-overview li:hover {
  box-shadow: 0 10px 20px 0 rgba(31,61,98,0.13);
  transform: translateY(-3px) scale(1.04);
}
.feature-grid img, .services-grid img, .workshop-overview img {
  width: 40px;height: 40px; margin-bottom: 10px;
}

/* workshops.html accordion, details */
.details-accordion {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.details-accordion > div {
  background: var(--brand-blue-100);
  border-radius: 13px;
  padding: 20px 18px;
  flex: 1 1 275px;
  min-width: 220px;
  box-shadow: var(--shadow-sm);
  font-size: 1.04rem;
}

.upcoming-dates {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.02rem;
}

/**************** TESTIMONIAL FLEX WRAPPING **************/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/****************** HERO SECTIONS *******************/
.hero {
  background: linear-gradient(108deg, var(--accent) 0%, var(--brand-lime) 100%);
  border-bottom-left-radius: 60px 18px;
  border-bottom-right-radius: 60px 18px;
  padding: 54px 0 54px 0;
  box-shadow: 0 10px 28px 0 rgba(255, 215, 0, 0.13);
  margin-bottom: 48px;
  animation: slideinHero 1s cubic-bezier(.77,-0.14,.51,1.07);
}
@keyframes slideinHero {
  0% {opacity: 0; transform: translateY(-34px) scale(1.03);}
  60% {opacity: .83;}
  100% {opacity: 1; transform: none;}
}
.hero h1, .hero p {
  color: var(--primary);
}
.hero .btn-primary {
  margin-top: 14px;
}

/**************** CTA SECTION ********************/
.cta {
  background: var(--brand-pink);
  color: #fff;
  border-radius: 40px;
  margin: 52px 0 20px 0;
  box-shadow: 0 8px 34px 0 rgba(255,96,168,0.08);
  animation: popinCta 1s cubic-bezier(.58,1.3,.23,1.19);
}
@keyframes popinCta {
  0% { transform: scale(1.05) translateY(48px);opacity:0; }
  95% { opacity:1; }
  100% { transform: none;}
}
.cta h2, .cta p, .cta .btn-primary {
  color: #fff;
  text-shadow: 0 1px 0 rgba(31,61,98,0.07);
}
.cta .btn-primary {
  background: #fff;
  color: var(--brand-pink);
  border: 2px solid #fff;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: var(--brand-orange);
  color: #fff;
}

/***************** CARD & LIST STYLES ******************/
.lifehack-teasers-list, .topic-grid, .advisor-card, .benefit-cards, .testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.lifehack-teasers-list article,
.advisor-card,
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px 18px 18px;
  min-width: 210px;
  flex: 1 1 250px;
  transition: box-shadow var(--transition-main), transform .13s;
}
.lifehack-teasers-list article:hover,
.advisor-card:hover,
.benefit-card:hover {
  box-shadow: 0 4px 25px 0 rgba(255, 96,168,0.13);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.benefit-cards .benefit-card {
  border-left: 9px solid var(--brand-lime);
}

/****** Quick Tips, Tag Filters *****/
.quick-tips, .quick-links {
  background: var(--brand-blue-200);
  border-radius: 14px;
  padding: 12px 18px 14px 18px;
  margin-top: 13px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.quick-links a {
  color: var(--brand-pink);
  font-weight: 700;
  font-family: var(--font-display);
}
.tag-filters {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 8px;
}
.tag {
  background: var(--brand-lime);
  color: var(--primary);
  border-radius: 16px;
  padding: 5px 16px;
  font-size: 0.94rem;
  font-weight: 700;
  margin-right: 6px;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.tag:hover, .tag:focus {
  background: var(--brand-pink);
  color: #fff;
}

/******** Price Table ***********/
.price-table {
  margin: 32px 0 22px 0;
  overflow-x: auto;
}
.price-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 328px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  font-size: 1.04rem;
}
.price-table th, .price-table td {
  padding: 13px 18px;
  text-align: left;
}
.price-table th {
  background: var(--brand-blue-200);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.price-table tr:nth-child(even) td {
  background: var(--brand-blue-100);
}
.price-table td span {
  color: var(--brand-pink);
  font-family: var(--font-display);
}

/****** Map Placeholder (Kontakt) ******/
.map-placeholder {
  background: var(--brand-blue-100);
  border-radius: 13px;
  padding: 25px;
  color: var(--brand-pink);
  font-size: 1.13rem;
  font-family: var(--font-display);
  margin: 15px 0 0 0;
  text-align: center;
}

/*************** FOOTER ***************/
footer {
  background: var(--primary);
  color: var(--accent);
  font-size: 0.997rem;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  padding: 18px 0;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 30px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-lime);
  color: var(--primary);
}
.footer-info {
  padding: 8px 0 24px 0;
  color: var(--accent);
  font-size: 0.99rem;
  font-family: var(--font-body);
}

/********* LEGAL PAGES *********/
.legal .content-wrapper, .legal .text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 30px 27px 24px 27px;
  margin-top: 22px;
}

/* Animations & Playful Details */
/* Playful bouncy hover for cards and tags already set above */
.services-grid li:after,
.feature-grid li:after {
  content: '';
  display: block;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-pink);
  position: absolute;
  top: -13px; right: -13px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  animation: float1 2.7s infinite alternate cubic-bezier(.57,1.8,.32,1.05);
}
@keyframes float1 {
  0% {transform: translateY(0);}
  100% {transform: translateY(8px) scale(1.1);}
}

/******** COOKIE CONSENT BANNER *******/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe0;
  color: var(--primary);
  box-shadow: 0 -2px 12px 0 rgba(31,61,98,0.11);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  border-top: 4px solid var(--accent);
  animation: slideInCookie 0.53s cubic-bezier(.61,2.06,.31,.99);
}
@keyframes slideInCookie {
  from {transform: translateY(100px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 999px;
  padding: 7px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: background .16s, color .16s, transform .18s;
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--accent);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--brand-lime);
}
.cookie-banner .cookie-reject {
  background: var(--brand-pink);
  color: #fff;
  border: 2px solid var(--brand-pink);
}
.cookie-banner .cookie-reject:hover {
  background: var(--brand-orange);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.cookie-banner .cookie-settings:hover {
  background: var(--brand-pink);
  color: #fff;
}

/********* COOKIE MODAL ************/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 48px rgba(31,61,98, 0.22);
  padding: 34px 26px 16px 26px;
  min-width: 325px;
  max-width: 432px;
  z-index: 10999;
  animation: popCookie 0.28s cubic-bezier(.63,2.12,.17,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes popCookie {
  0% {transform: translate(-50%,-50%) scale(0.7);opacity:0;}
  90% {opacity:1;}
  100% {transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.36rem;
  font-family: var(--font-display);
  margin-top: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: var(--brand-blue-200);
  border-radius: 24px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--brand-pink);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left .18s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal .cookie-category span {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal .cookie-category .cookie-label-essential {
  color: var(--brand-blue-300);
  font-weight: 700;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  padding: 7px 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: var(--brand-orange);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-pink);
}

/* ======= RESPONSIVE RULES ====== */
@media (max-width: 1024px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  .feature-grid, .services-grid, .workshop-overview {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  .main-nav {gap: 10px;}
}
@media (max-width: 768px) {
  html,body {
    font-size: 15px;
  }
  .section, .hero, .cta {
    padding: 32px 5px;
    margin-bottom: 36px;
  }
  .content-wrapper {gap: 16px;}
  .testimonial-card {
    min-width: 86vw;
    max-width: 97vw;
  }
  .feature-grid, .services-grid, .workshop-overview {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .services-grid li, .workshop-overview li {
    max-width: 97vw;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .lifehack-teasers-list, .topic-grid, .advisor-card, .benefit-cards, .testimonial-snippets {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  html,body {font-size: 14px;}
  h1, h2 {font-size: 1.18rem;}
  .section, .hero, .cta {
    padding: 21px 4px;
  }
  .feature-grid li,.services-grid li,.workshop-overview li {
    min-width: 99vw;
  }
}
/********** PLAYFUL FONTS IMPORT ***********/
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/************* END OF STYLE.CSS ************/
