/*       V 23.03.2026     */
/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --sage: #5c7a6e;
  --sage-dark: #3d5449;
  --sage-light: #8aab9c;
  --cream: #faf7f2;
  --warm: #f0e9dc;
  --stone: #8c7b6b;
  --ink: #1e1a16;
  --line: rgba(92, 122, 110, 0.2);
  --gold: #b09060;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .5;
}
/*----------- PAGES -----------------------*/
.hidden {
  display: none !important;
}
/* ─── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.07);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--sage-dark);
  letter-spacing: .02em;
}

.nav-brand-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--stone);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .25s;
}

.nav-links a:hover {
  color: var(--sage);
}

.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: .45rem 1.3rem;
  border-radius: 1px;
  transition: background .25s !important;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  /* hidden on desktop */
  font-size: 28px;
  cursor: pointer;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* animated background leaf / circle shapes */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 122, 110, .12) 0%, transparent 70%);
}

.hero-bg .blob1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg .blob2 {
  width: 400px;
  height: 400px;
  bottom: 50px;
  left: -80px;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 6rem 5vw;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .2s;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--sage-dark);
  margin-bottom: .8rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .4s;
}

h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-role {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .55s;
}

.hero-lead {
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.85;
  color: #4a3f35;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .7s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease forwards .85s;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-sage {
  background: var(--sage);
  color: #fff;
}

.btn-sage:hover {
  background: var(--sage-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
}

.btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

/* hero right – botanical illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem 4rem 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards .6s;
}

.meridian-circle {
  width: min(380px, 90%);
  position: relative;
}

/* ─── SECTION COMMON ─────────────────────────────── */
.section {
  padding: 6rem 5vw;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .8rem;
  display: block;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--sage-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.rule {
  width: 48px;
  height: 2px;
  background: var(--sage-light);
}

.rule-gold {
  background: var(--gold);
}

/* ─── ÜBER MICH ──────────────────────────────────── */
#ueber {
  display: grid; /* altrimenti viene sovrascritto da block e non visualizza l immagine parall. */
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.credentials {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.credentials li {
  padding: .65rem 1rem;
  border-left: 3px solid var(--sage-light);
  background: var(--warm);
  font-size: .88rem;
  color: #4a3f35;
  transition: border-color .2s;
}

.credentials li:hover {
  border-left-color: var(--sage);
}

.ueber-img {
  position: relative;
}

.ueber-img::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--sage-light);
  z-index: 0;
}

.ueber-card {
  position: relative;
  z-index: 1;
  background: var(--warm);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hanzi-large {
  font-family: 'Noto Serif SC', serif;
  font-size: 5rem;
  color: var(--sage);
  opacity: .35;
  line-height: 1;
}

.ueber-card-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

.ueber-card-attr {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ─── INDIKATIONEN ───────────────────────────────── */
#indikationen {
  background: var(--sage-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#indikationen::before {
  content: '針';
  font-family: 'Noto Serif SC', serif;
  font-size: 30rem;
  color: rgba(255, 255, 255, .03);
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  line-height: 1;
  pointer-events: none;
}

#indikationen h2 {
  color: #fff;
}

#indikationen .section-tag {
  color: var(--sage-light);
}

.indikationen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
}

.indikation-item {
  padding: .85rem 1.2rem;
  background: rgba(255, 255, 255, .04);
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  border-left: 2px solid transparent;
  transition: all .25s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.indikation-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
}

.indikation-item:hover {
  background: rgba(138, 171, 156, .12);
  border-left-color: var(--sage-light);
  color: #fff;
}

.schmerztherapie-box {
  margin-top: 3rem;
  border: 1px solid rgba(138, 171, 156, .3);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.schmerztherapie-box .st-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.4rem;
  color: var(--sage-light);
}

.schmerztherapie-box h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .5rem;
}

.schmerztherapie-box p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

/* ─── ABLAUF ─────────────────────────────────────── */
#ablauf {
  background: var(--warm);
}

.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
  counter-reset: step;
}

.ablauf-step {
  background: var(--cream);
  padding: 2.5rem 1.8rem;
  position: relative;
  counter-increment: step;
}

.ablauf-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--sage-light);
  opacity: .4;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.ablauf-step h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--sage-dark);
  margin-bottom: .6rem;
}

.ablauf-step p {
  font-size: .85rem;
  color: var(--stone);
  line-height: 1.7;
}

.ablauf-connector {
  position: absolute;
  top: 2.5rem;
  right: -1px;
  width: 2px;
  height: 30px;
  background: var(--sage-light);
  opacity: .4;
}

.ablauf-step:last-child .ablauf-connector {
  display: none;
}

/* ─── GEBÜHREN ───────────────────────────────────── */
#gebuehren {}

.preis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.preis-card {
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  position: relative;
  transition: box-shadow .3s, border-color .3s;
}

.preis-card:hover {
  box-shadow: 0 8px 40px rgba(92, 122, 110, .1);
  border-color: var(--sage-light);
}

.preis-card.featured {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
}

.preis-card.featured .preis-title {
  color: rgba(255, 255, 255, .6);
}

.preis-card.featured .preis-amount {
  color: #fff;
}

.preis-card.featured .preis-desc {
  color: rgba(255, 255, 255, .65);
}

.preis-title {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  display: block;
}

.preis-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: .4rem;
}

.preis-amount sup {
  font-size: 1rem;
  vertical-align: super;
}

.preis-desc {
  font-size: .82rem;
  color: var(--stone);
  margin-top: .8rem;
  line-height: 1.65;
}

.goae-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--warm);
  border-left: 3px solid var(--sage-light);
  font-size: .85rem;
  color: var(--stone);
  line-height: 1.7;
}

.goae-note strong {
  color: var(--sage-dark);
}

.versicherung-box {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--warm);
  border-left: 3px solid var(--gold);
  font-size: .85rem;
  color: var(--stone);
  line-height: 1.7;
}

.versicherung-box strong {
  color: var(--sage-dark);
}

/* ─── KONTAKT ────────────────────────────────────── */
#kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.kontakt-left {
  background: var(--sage-dark);
  color: #fff;
  padding: 6rem 5vw;
}

.kontakt-left h2 {
  color: #fff;
}

.kontakt-left .section-tag {
  color: var(--sage-light);
}

.kontakt-left .rule {
  background: var(--sage-light);
}

.kontakt-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.kd-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(138, 171, 156, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kd-icon svg {
  width: 15px;
  fill: var(--sage-light);
}

.kd-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: .25rem;
}

.kd-value {
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.kd-value a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.kd-value a:hover {
  color: #fff;
}

.kontakt-right {
  background: var(--warm);
  padding: 6rem 5vw;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-group label {
  display: block;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(92, 122, 110, .3);
  padding: .5rem 0;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  background: var(--sage);
  color: #fff;
  border: none;
  padding: .85rem 2.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}

.form-submit:hover {
  background: var(--sage-dark);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  text-align: center;
  padding: 1.8rem 5vw;
  background: var(--ink);
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  letter-spacing: .1em;
}

footer a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

footer a:hover {
  color: var(--sage-light);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinSlowr {
  to {
    transform: rotate(-360deg);
  }
}

.spin {
  animation: spinSlow 80s linear infinite;
  transform-origin: center;
}

.spinr {
  animation: spinSlowr 55s linear infinite;
  transform-origin: center;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── MOBILE ─────────────────────────────────────── */
@media(max-width:900px) {
  nav {
    padding: 1rem 4vw;
  }

  /** .nav-links { display:none; }*/

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    padding: 5rem 5vw;
  }

  #ueber {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ablauf-steps {
    grid-template-columns: 1fr 1fr;
  }

  .preis-cards {
    grid-template-columns: 1fr;
  }

  #kontakt {
    grid-template-columns: 1fr;
  }

  .kontakt-left, .kontakt-right {
    padding: 4rem 5vw;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;              /* hide menu */
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;                  /* below the nav bar */
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
    .nav-links.open {
    display: flex;              /* show when toggled */
  }

  .nav-toggle {
    display: block;             /* show hamburger */
  }
}


/*  ----- Enrico --------*/
.tavolaPrezzi {

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 20px;
  background: #f7f7f7;


}

.leistungen-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  gap: 4px;
  background: #ddd;
  padding: 4px;
}

.leistungen-grid>div {
  background: #fff;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.leistungen-grid .header {
  font-weight: 600;
  background: #e3e3e3;
}

#img_ago {
  max-width: 100%;
  height: auto;
}

/** -------------  Datenschutz  --------------------------*/
/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdh18Smxg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdo18Smxg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdg18Smxg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdj18Smxg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18Q.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* greek-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}

/* greek */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* vietnamese */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}