/* CSS RESET & BASE --------------------- */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22263D;
  background: #F7F9FB;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
}
img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}
a { color: #22263D; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #F5C242; }
ul, ol { list-style: none; }
strong { font-weight: 700; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  background: none;
  outline: none;
}

/* BRAND TYPOGRAPHY & HEADINGS ----------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: 0.015em;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.subheadline {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #A5B6CB;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 600;
}
p { margin-bottom: 16px; }

/* STRUCTURED CONTAINERS ----------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,38,61,0.04), 0 0.3px 1px 0 rgba(220,220,230,0.20);
  padding: 40px 28px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-section {
  margin-bottom: 20px;
}

/* SECTIONS SPACING (MANDATORY) ----------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px;
  background: #f7f9fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(34,38,61,0.07);
  margin-top: 24px;
  margin-bottom: 20px;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* HERO SECTION --------------------------- */
.hero {
  background: linear-gradient(120deg, #F5C242 0%, #A5B6CB 100%);
  border-radius: 0 0 42px 42px;
  margin-bottom: 56px;
  display: flex;
  min-height: 260px;
  align-items: stretch;
  position: relative;
  box-shadow: 0 6px 20px 0 rgba(222,199,72,0.07);
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 48px 0 32px 0;
  color: #22263D;
  gap: 14px;
}
.hero h1 { color: #22263D; }
.hero .subheadline { color: #22263D; }

/* HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  border-bottom: 3px solid #F5C242;
  box-shadow: 0 1px 8px 0 rgba(34,38,61,.07);
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}

header nav {
  display: flex; flex-direction: row; gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border .22s, color .16s;
}
header nav a:hover, header nav a:focus {
  color: #F5C242;
  border-bottom: 2.5px solid #F5C242;
}

.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F5C242;
  color: #22263D;
  padding: 12px 32px;
  border-radius: 32px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 3px 16px 0 rgba(222,199,72,.05);
  border: 2.5px solid #F5C242;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, border 0.17s, transform 0.17s;
  margin-left: 14px;
}
.cta-button:hover, .cta-button:focus {
  background: #22263D;
  color: #F5C242;
  border-color: #22263D;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE MENU -------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #F5C242;
  color: #22263D;
  border-radius: 50%;
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  margin-left: 14px;
  z-index: 60;
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22263D;
  color: #F5C242;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(34,38,61,0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #F5C242;
  font-size: 2rem;
  align-self: flex-end;
  margin: 30px 32px 10px 0;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 34px 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  transition: border 0.21s, color 0.17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: #F5C242;
  border-bottom: 2.5px solid #F5C242;
}

@media (max-width: 1020px) {
  .container { max-width: 97vw; }
  header .container { gap: 12px; }
  .content-wrapper { padding: 30px 8px; }
}

@media (max-width: 860px) {
  header nav { gap: 14px; }
  .cta-button { padding: 12px 20px; font-size: 1rem; }
}

@media (max-width: 768px) {
  .hero { min-height: 160px; border-radius: 0 0 22px 22px; }
  .hero .content-wrapper { padding: 34px 0 24px 0; }
  .content-wrapper { padding: 26px 6px; }
  .section { margin-bottom: 36px; padding: 20px 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  header .container {
    flex-direction: row;
    gap: 2px;
    padding: 12px 5px;
  }
  header nav { display: none; }
  .cta-button { margin-left: 4px; font-size: 0.95rem; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu {
    width: 100vw;
    min-width: 0;
  }
}

@media (max-width: 660px) {
  .container { max-width: 97vw; padding: 0 8px; }
  .content-wrapper { padding: 20px 2px; gap: 12px; }
}

/* CTA BANNER ------------------------- */
.cta-banner {
  background: #F5C242;
  padding: 44px 0;
  border-radius: 24px;
  margin-bottom: 42px;
  box-shadow: 0 2px 18px 0 rgba(245, 194, 66, 0.11);
}
.cta-banner .content-wrapper {
  background: transparent;
  box-shadow: none;
  color: #22263D;
  align-items: center;
  text-align: center;
  padding: 8px 0 2px 0;
}
.cta-banner h2 {
  color: #22263D;
}

/* FEATURE GRID FOR INDEX -------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 8px 0;
}
.feature-grid li {
  background: #F7F9FB;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(34,38,61,0.08);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 20px;
  min-width: 190px;
  position: relative;
  transition: transform 0.19s, box-shadow 0.24s;
}
.feature-grid li img {
  width: 38px; height: 38px; margin-bottom: 12px;
}
.feature-grid li:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 20px 0 rgba(34,38,61,0.13);
}

@media (max-width: 900px) {
  .feature-grid { gap: 18px; }
}
@media (max-width: 690px) {
  .feature-grid { flex-direction: column; gap: 16px; }
}

/* TEAM LIST (Über Uns) ----------------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  margin-top: 12px;
}
.team-list li {
  background: #F7F9FB;
  border-radius: 20px;
  flex: 1 1 240px;
  min-width: 150px;
  max-width: 290px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px 0 rgba(34,38,61,0.07);
  transition: box-shadow 0.2s, transform 0.17s;
}
.team-list li img {
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 50%;
  background: #A5B6CB;
}
.team-list li:hover {
  box-shadow: 0 6px 22px 0 rgba(165,182,203,0.18);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 760px) {
  .team-list { flex-direction: column; gap: 16px; }
  .team-list li { max-width: 100%; }
}

/* PRINCIPLE CARDS (Komposition) ------- */
.principle-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.principle-cards li {
  background: #F7F9FB;
  border-radius: 14px;
  flex: 1 1 170px;
  min-width: 140px;
  padding: 16px 15px 14px 18px;
  box-shadow: 0 2px 6px 0 rgba(34,38,61,0.06);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .principle-cards { flex-direction: column; gap: 12px; }
}

/* FAQ ACCORDION (Fototipps) ----------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.faq-accordion h3 {
  background: #22263D;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 14px 18px 10px 18px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  background: #F5C242;
  color: #22263D;
}
.faq-accordion p {
  background: #fff;
  color: #22263D;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  padding: 13px 20px 14px 18px;
  box-shadow: 0 1px 4px rgba(34,38,61,0.06);
}

/* TESTIMONIAL CARD -------------------- */
.testimonial-card {
  background: #fff;
  color: #22263D;
  border: 2.2px solid #A5B6CB;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 rgba(34,38,61,0.06);
  font-size: 1.05rem;
  position: relative;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px 24px 28px;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 4px;
  color: #22263D;
  font-size: 1.08rem;
}
.testimonial-card span {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #A5B6CB;
  font-weight: 700;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 14px 10px 16px 14px; }
}

/* CONTACT DETAILS (Kontakt) -------------- */
.contact-details {
  display: flex; flex-direction: column; gap: 17px; margin-bottom: 18px;
}
.contact-details ul {
  display: flex; flex-direction: column; gap: 9px; }
.contact-details li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-details li img {
  width: 23px; height: 23px; border-radius: 0;
}
.contact-details p img {
  width: 21px; height: 21px; margin-right: 5px;
}
.map-embed {
  margin-top: 24px;
  background: #FAFAFC;
  border-radius: 12px;
  padding: 16px 10px;
}

/* FOOTER ------------------------------ */
footer {
  background: #22263D;
  color: #fff;
  padding: 38px 0 18px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
footer nav a {
  color: #A5B6CB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #F5C242;
  border-bottom: 2px solid #F5C242;
}
.footer-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97rem;
  color: #fff;
  word-break: break-all;
}
.footer-details a { color: #F5C242; }

@media (max-width: 600px) {
  footer .container { gap: 14px; }
  footer nav { gap: 11px; font-size: 0.92rem; }
  footer { padding: 19px 0 14px 0; }
}

/* CARDS (General) ------------------------ */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,38,61,0.05);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 24px 0 rgba(245,194,66,0.15);
  transform: translateY(-2px) scale(1.013);
}

.card-container { margin-top: 18px; }

/* Cookie Consent Banner ----------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 22222;
  background: #22263D;
  color: #fff;
  padding: 20px 34px 22px 18px;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(34,38,61,0.19);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.38s, transform 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(35px);
}
.cookie-banner p {
  color: #fff;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 26px;
  background: #F5C242;
  color: #22263D;
  border: 2px solid #F5C242;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, border 0.12s, transform 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #22263D;
  border-color: #A5B6CB;
}
.cookie-btn.secondary {
  background: #fff;
  color: #22263D;
  border-color: #A5B6CB;
}
.cookie-btn.secondary:hover {
  background: #A5B6CB;
  color: #22263D;
}
.cookie-btn.ghost {
  background: transparent;
  color: #F5C242;
  border-color: transparent;
}
.cookie-btn.ghost:hover { background: #A5B6CB; color: #22263D; }

@media (max-width: 600px) {
  .cookie-banner {
    left: 4px; right: 4px; padding: 10px 9vw 18px 8px;
    gap: 10px;
  }
  .cookie-banner p { font-size: 0.96rem; }
  .cookie-banner .cookie-actions { gap: 8px; }
  .cookie-btn { padding: 8px 14px; font-size: 0.95rem; }
}

/* Cookie Consent Modal ------------------ */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 22225;
  background: rgba(34,38,61, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.36s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 40px 0 rgba(34,38,61,0.25);
  min-width: 340px;
  max-width: 484px;
  padding: 34px 34px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: #22263D;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22263D;
  font-weight: 700;
}
.cookie-modal-content .category {
  display: flex; align-items: center; gap: 15px;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-weight: 600;
  font-size: 1.06rem;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #F5C242;
  width: 18px; height: 18px;
  margin-right: 6px;
}
.cookie-modal-buttons {
  display: flex; gap: 13px; justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 17px 5vw 9px 6vw; min-width: 0; max-width: 97vw;
    font-size: 0.98rem;
  }
}

/* GENERAL BUTTONS ------------------------- */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  outline: none;
  transition: background 0.16s, color 0.17s, box-shadow 0.14s;
  cursor: pointer;
}
button:focus { box-shadow: 0 0 0 2px #F5C242AA; }

/* TABLES and FORMS ----------------------- */
table { border-collapse: collapse; width: 100%; font-size: 1rem; }
th, td { padding: 10px 8px; border-bottom: 1.5px solid #A5B6CB; text-align: left; }
th { background: #F7F9FB; font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: #22263D; }
input, textarea, select {
  background: #FAFAFC;
  border: 2px solid #A5B6CB;
  padding: 10px 14px;
  border-radius: 7px;
  margin-bottom: 10px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F5C242;
}

/* VISUAL DECORATIVE ELEMENTS ------------- */
hr {
  border: none;
  border-top: 2px solid #F5C242;
  margin: 40px 0;
}

/* GEOMETRIC ACCENTS ---------------------- */
/* Example: triangles or angle decorations can be added to .hero or .cta-banner with ::after or ::before if needed */

/* FLEX LAYOUT ENFORCEMENT ---------------- */
/* Enforce all layout containers to use flex with gap spacing! */

/* Mandatory provided classes are already included above */

/* RESPONSIVE FLEX FOR TEXT-IMAGE SECTIONS */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 16px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS -------- */
.card, .feature-grid li, .team-list li, .cta-button, .cookie-btn {
  transition: box-shadow 0.2s, transform 0.13s cubic-bezier(.58,.02,.46,1.03),
    background 0.18s, color 0.16s, border 0.14s;
}

/* List Styling in Text Sections ----------- */
.content-wrapper ul, .content-wrapper ol {
  margin: 0 0 12px 19px;
  font-size: 1rem;
  padding-left: 14px;
}
.content-wrapper ul li, .content-wrapper ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 7px;
  letter-spacing: 0.01em;
}
.content-wrapper ul li:before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #F5C242;
  margin-right: 8px;
  margin-left: -15px;
  vertical-align: middle;
}
.content-wrapper ol {
  list-style: decimal inside;
  padding-left: 10px;
}
.content-wrapper ol li:before { display: none; }

/* GEOMETRIC-STRUCTURED ACCENTS FOR HEADINGS */
h2, h3, .cta-banner h2 {
  position: relative;
  z-index: 2;
  padding-left: 7px;
}
h2:before, h3:before, .cta-banner h2:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 9px;
  background: #F5C242;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  margin-right: 10px;
  margin-bottom: 3px;
  vertical-align: middle;
}

/* RESPONSIVE FONTS SCALE */
@media (max-width: 480px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.97rem; }
  .cta-button { font-size: 0.91rem; }
  .content-wrapper { padding: 8px 3px; }
}

/* 404/EMPTY PAGE (DANKSEITE FALLBACK) -- */
/* Provide some center alignment for thank you and basic pages */
main > section > .container > .content-wrapper > .cta-button:first-of-type {
  margin-top: 16px;
}

/* Utility: Hide visually but accessible */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ENFORCE GAPS TO PREVENT OVERLAP -------- */
.content-wrapper > * { margin-bottom: 14px; }
.content-wrapper > *:last-child { margin-bottom: 0; }

/* ENFORCE ALL INTERACTIVE ELEMENTS VISIBLE ON FOCUS */
button:focus, a:focus {
  outline: 2px solid #F5C242;
  outline-offset: 1.5px;
}

/* ENSURE DARK TEXT IN TESTIMONIALS/REVIEWS */
.testimonial-card, .feature-grid li, .team-list li, .principle-cards li {
  color: #22263D;
}

/* GENERAL SPACING FOR CONSISTENCY (8,16,24,32px) */
.section, .cta-banner, .content-wrapper, .card, .testimonial-card {
  margin-bottom: 32px;
}

/* LIMIT CONTENT WIDTHS WHERE APPROPRIATE */
main { min-height: 60vh; }

/* Prevent element overlaps everywhere */
body *, body *:before, body *:after {
  box-sizing: inherit;
}

/* FONTS LOADING ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
