:root {
    --primary-color: #8b2759;
    --secondary-color: #5f2e7a;
    --price-color: #be5188;
    --light-bg: #fdfcff;
    --lighter-bg: #ffffff;
    --dark-text: #333;
    --light-text: #555;
    --accent-bg: #ebe8e5;
    --border-color: #eee;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    --border-radius: 8px;
}

html { scroll-padding-top: 100px;}

body { font-family: 'Montserrat', sans-serif; margin: 0; padding: 0; color: var(--dark-text); background-color: var(--light-bg); line-height: 1.6; font-size: 16px; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 20px; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; }
.fließtext {text-align: left;}
.text-center {text-align: center}
/* Screen Reader Only - Hides content visually but keeps it accessible */
.sr-only {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);white-space: nowrap;border: 0;}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* General Content Section Styling */
.content-section { padding: 25px 0; text-align: center; animation: fadeIn 1s ease-out forwards;  }
.content-section:nth-of-type(even) { background-color: var(--lighter-bg); }
.content-section h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 40px; }
.content-section h3 { color: var(--primary-color); font-size: 24px; margin-bottom: 40px; }
p.section-intro { max-width: 850px; margin-left: auto; margin-right: auto; color: var(--light-text); }

/* Header & Navigation - with subtle shadow */
#header { background-color: var(--lighter-bg); padding: 15px 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
#header .container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo img { max-height: 55px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav li { margin-left: 30px; }
.main-nav a { text-decoration: none; color: var(--primary-color); font-weight: bold; font-size: 16px; transition: color 0.3s; position: relative; padding-bottom: 5px; }
.main-nav a:hover { color: var(--secondary-color); }
.main-nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--secondary-color); transition: width 0.3s ease; }
.main-nav a:hover::after { width: 100%; }

#hero { background: radial-gradient(circle, rgba(139, 39, 89, 0.1), rgba(139, 39, 89, 0.7)), url('./img/wecare-garten.jpg') no-repeat center top/cover; color: #fff; text-align: center; }
.hero-text h1 { font-size: 58px; margin-bottom: 200px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.hero-text .subtitle { font-size: 32px; margin-bottom: 30px; font-weight: bold; opacity: 0.9; }

.hero-boxes {display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1200px; margin: 20px auto;}
.hero-box {flex: 1 1 250px; background: rgba(175, 140, 171, 0.7); border-radius: var(--border-radius); padding: 10px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.3); }
.hero-box p { margin-top: 0; }

/* Intro Section */
.intro .container { max-width: 850px; }

/* 4. Service Grid using CSS Grid for better alignment and responsiveness */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 30px; margin-top: 40px; }
.service-item { padding: 30px; border-radius: var(--border-radius); background-color: var(--lighter-bg); text-align: left; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-item:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.service-item h3 { margin-top: 0; color: var(--primary-color); }
.service-item ul { list-style: none; padding: 0; }
.service-item ul li { padding: 5px 0; position: relative; padding-left: 20px; color: var(--light-text); }
.service-item ul li::before { content: '›'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }
.services-outro {max-width: 850px; margin-top: 50px; margin-left: auto; margin-right: auto;}

.service-icon { margin-bottom: 15px; display: block; margin-left: auto; margin-right: auto; }

/* Team Section */
.team-container { display: flex; justify-content: center; align-items: center; gap: 50px; margin-bottom: 50px; flex-wrap: wrap; }
.team-column { flex: 1; max-width: 500px; }
.team-image-column { text-align: center; }
.team-image-column img { border-radius: var(--border-radius); width: 380px; height: 380px; object-fit: cover; box-shadow: var(--shadow); }
.network-info { max-width: 850px; margin: 0 auto; }
.team-photo { width: 100%; max-width: 600px; height: auto; border-radius: var(--border-radius); margin-top: 30px; box-shadow: var(--shadow); }


.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.pricing-item { display: flex; flex-direction: column; flex: 1 1 330px; max-width: 330px; border-radius: var(--border-radius); padding: 25px; background: var(--lighter-bg); text-align: center; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }

.pricing-item:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.pricing-item h3 { font-size: 20px; min-height: 50px; color: var(--primary-color); }
.pricing-item .duration { font-style: italic; color: var(--light-text); font-size: 15px; }
.pricing-item .leistungen { font-size: 15px; color: #444; flex-grow: 1; margin: 15px 0; }
.pricing-item .price { font-size: 22px; font-weight: normal; color: var(--price-color); margin-top: auto; }
.anfahrt { margin-top: 40px; background: var(--accent-bg); padding: 20px; border-radius: var(--border-radius); }

/* Contact Section - Professional Form */
.contact-flex-container { display: flex; gap: 50px; text-align: left; align-items: flex-start; }
.contact-form-container { flex: 1; }
.contact-details-container { flex: 1; }
.contact-person { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.contact-person img { border-radius: 50%; }
.contact-person a { text-decoration: none; color: var(--light-text)}
.contact-person p { margin: 2px 0; color: var(--light-text); }
.contact-person strong { color: var(--dark-text); }
form { display: flex; flex-direction: column; gap: 20px; }
form input, form textarea { padding: 15px; border: 1px solid #ccc; border-radius: var(--border-radius); font-family: 'Nunito', sans-serif; font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
form input:focus, form textarea:focus { outline: 1px solid var(--primary-color);border-color: var(--primary-color); box-shadow: 0 0 5px rgba(139, 39, 89, 0.3); }
.impressum { margin-top: 0px; text-align: center; font-size: 14px; color: #777; }

.button { display: inline-block; background-color: var(--primary-color); color: #fff; padding: 15px 30px; text-decoration: none; font-weight: bold; border-radius: 50px; transition: background-color 0.3s, transform 0.3s; margin-top: 20px; text-align: center; border: none; cursor: pointer; box-shadow: 0 4px 10px rgba(139, 39, 89, 0.3); }
.button:hover { background-color: var(--secondary-color); transform: translateY(-3px); }
.button:disabled { background-color: #ccc; color: #666; cursor: not-allowed; border-color: #ccc;}

.simple-footer {padding: 30px 20px; background-color: var(--primary-color); color: #fff; text-align: center;}
.footer-content {max-width: 900px; margin: 0 auto;}
.simple-footer h4 {font-size: 18px; margin-bottom: 10px; font-weight: 600;}
.simple-footer p {margin: 5px 0; font-size: 14px; line-height: 1.7;}
.footer-content a {color: var(--light-bg); text-decoration: none; transition: color 0.2s ease-in-out;}
.footer-content a:hover { text-decoration: underline}
.copyright-text {margin-top: 20px; font-size: 12px; opacity: 0.7;}

.menu-toggle { display: none; position: relative; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; z-index: 1002; }
.menu-toggle span { display: block; position: absolute; width: 100%; height: 3px; background-color: var(--primary-color); border-radius: 3px; transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* --- Contact Form Styles --- */
.privacy-checkbox-container {display: flex;align-items: center;gap: 10px;margin: 15px 0;}
.privacy-checkbox-container input[type="checkbox"] {width: auto;margin: 0;}
.privacy-checkbox-container label {margin: 0;font-size: 0.9rem;color: var(--light-text);text-align: left;}
.form-status {margin-top: 15px;padding: 10px;border-radius: 8px;text-align: center;font-weight: bold;min-height: 20px;transition: all 0.3s ease;}
.form-status.success {background-color: #d4edda;color: #155724;border: 1px solid #c3e6cb;}
.form-status.error {background-color: #f8d7da;color: #721c24;border: 1px solid #f5c6cb;}
.form-status:empty {display: none;margin: 0;padding: 0;min-height: 0;}
.honeypot-field { opacity: 0; position: absolute; left: -9999px; }

/* --- Kooperationspartner Section --- */
@keyframes fadeInUp {
    from {opacity: 0;transform: translateY(20px);}
    to {opacity: 1;transform: translateY(0);}
}
/* --- Partner Network Centering Update --- */

.partner-network {display: flex;flex-wrap: wrap;justify-content: center;align-items: center;gap: 40px;width: fit-content; margin: 50px auto;padding: 0;max-width: 860px;}
.partner-node {width: 160px;height: 160px;background-color: var(--lighter-bg);border-radius: 50%;border: 3px solid var(--border-color);display: flex;justify-content: center;align-items: center;box-shadow: var(--shadow);transition: all 0.4s ease;opacity: 0;animation: fadeInUp 0.8s ease-out forwards;}
.partner-node a {display: flex;justify-content: center;align-items: center;width: 100%;height: 100%;border-radius: 50%;}
.partner-node img {max-width: 75%;max-height: 75%;object-fit: contain;filter: grayscale(100%);opacity: 0.7;transition: all 0.4s ease;}
.partner-node:hover img {filter: grayscale(0%);opacity: 1;}
.partner-node:hover {transform: translateY(-5px) scale(1.05);border-color: var(--primary-color);box-shadow: 0 8px 25px rgba(139, 39, 89, 0.2);}

.partner-node:nth-child(1) { animation-delay: 0.1s; }
.partner-node:nth-child(2) { animation-delay: 0.2s; }
.partner-node:nth-child(3) { animation-delay: 0.3s; }
.partner-node:nth-child(4) { animation-delay: 0.4s; }
.partner-node:nth-child(5) { animation-delay: 0.5s; }
.partner-node:nth-child(6) { animation-delay: 0.6s; }
.partner-node:nth-child(7) { animation-delay: 0.7s; }
.partner-node:nth-child(8) { animation-delay: 0.8s; }
.partner-node:nth-child(9) { animation-delay: 0.9s; }
.partner-node:nth-child(10) { animation-delay: 1s; }
.partner-node:nth-child(11) { animation-delay: 1.1s; }
.partner-node:nth-child(12) { animation-delay: 1.2s; }

.resource-page-container {padding: 20px;}
.resource-header {text-align: center;margin-bottom: 40px;}
.header-logo {max-width: 100%;height: auto;}
.settings-content-area {max-width: 850px;margin: 0 auto;line-height: 1.7;color: #374151;}
.title-section {text-align: center;margin-bottom: 24px;}
.resource-title {font-size: 2rem;margin-bottom: 0;color: #111827;}
.last-updated {color: #666;margin-top: 4px;}
.section-heading {color: #111827;border-bottom: 2px solid #e5e7eb;padding-bottom: 8px;font-size: 1.5rem;margin-top: 32px;}
.sub-heading {font-size: 1.1rem;margin-top: 24px;color: #111827;}
.intro-section {margin-bottom: 32px}
.highlight-box {font-weight: 500;background-color: #f9fafb;padding: 15px;border-radius: 8px;border: 1px solid #e5e7eb;}
.warning-box {background-color: #fef2f2;padding: 16px;border-radius: 8px;border: 1px solid #fee2e2;margin-top: 16px;}
.legal-section {margin-bottom: 48px;}
.content-list {padding-left: 20px;}
.content-list li {margin-bottom: 8px;}
.no-margin {margin: 0 !important;}
.resource-footer {margin-top: 48px;padding-top: 20px;border-top: 1px solid #e5e7eb;font-size: 13px;color: #6b7280;text-align: center;}
.footer-link {color: #2563eb;text-decoration: none;}
.footer-link:hover {text-decoration: underline;}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .partner-network {max-width: 600px;}
    .partner-node img {filter: grayscale(0%);opacity: 1;}
    .partner-node {border-color: var(--primary-color);}
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .menu-toggle { display: block; }
    .main-nav { flex-direction: column; justify-content: center; align-items: center; position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background-color: var(--lighter-bg); transition: left 0.3s ease-in-out; z-index: 1001; }
    .main-nav.open { left: 0; }
    .main-nav ul { flex-direction: column; align-items: center; }
    .main-nav li { margin: 25px 0; }
    .main-nav a { font-size: 30px; }
    .main-nav a::after { display: none; }
    .hero-text h1 { font-size: 40px; margin-bottom: 170px; }
    .content-section h2 { font-size: 26px; }
    .contact-flex-container {flex-direction: column; gap: 40px;}
    .contact-form-container, .contact-details-container {width: 100%;flex: none;}
    .contact-details-container {display: flex;justify-content: center;}
    form button { align-self: center; }
    .contact-person {display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 25px;}
    .team-image-column img {width: 300px; height: 300px;}
    .hero-boxes {display: none;}
    .team-container {gap: 10px}
    .partner-network {width: 100%;gap: 25px;}
    .partner-node {width: 130px;height: 130px;}
}

@media (max-width: 500px){
    .hero-text h1 { font-size: 36px; }
    .hero-text .subtitle { font-size: 26px;}
}

@media (max-width: 400px){
    body {font-size: 14px;}
    h3 {font-size: 18px;}
    .hero-text .subtitle { font-size: 24px;}
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-ExtraBold.woff2') format('woff2'),
    url('./fonts/Nunito-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-BoldItalic.woff2') format('woff2'),
    url('./fonts/Nunito-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-BlackItalic.woff2') format('woff2'),
    url('./fonts/Nunito-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-ExtraBoldItalic.woff2') format('woff2'),
    url('./fonts/Nunito-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Black.woff2') format('woff2'),
    url('./fonts/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Bold.woff2') format('woff2'),
    url('./fonts/Nunito-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-ExtraLight.woff2') format('woff2'),
    url('./fonts/Nunito-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Light.woff2') format('woff2'),
    url('./fonts/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Italic.woff2') format('woff2'),
    url('./fonts/Nunito-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Medium.woff2') format('woff2'),
    url('./fonts/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-MediumItalic.woff2') format('woff2'),
    url('./fonts/Nunito-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-LightItalic.woff2') format('woff2'),
    url('./fonts/Nunito-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-ExtraLightItalic.woff2') format('woff2'),
    url('./fonts/Nunito-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-SemiBold.woff2') format('woff2'),
    url('./fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-SemiBoldItalic.woff2') format('woff2'),
    url('./fonts/Nunito-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('./fonts/Nunito-Regular.woff2') format('woff2'),
    url('./fonts/Nunito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* montserrat-100 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100;
    src: local(''),
    url('./fonts/montserrat-v25-latin-100.woff2') format('woff2');
}

/* montserrat-200 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 200;
    src: local(''),
    url('./fonts/montserrat-v25-latin-200.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-300 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: local(''),
    url('./fonts/montserrat-v25-latin-300.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('./fonts/montserrat-v25-latin-regular.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-500 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: local(''),
    url('./fonts/montserrat-v25-latin-500.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-600 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: local(''),
    url('./fonts/montserrat-v25-latin-600.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-700 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('./fonts/montserrat-v25-latin-700.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-800 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: local(''),
    url('./fonts/montserrat-v25-latin-800.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-900 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: local(''),
    url('./fonts/montserrat-v25-latin-900.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-100italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100;
    src: local(''),
    url('./fonts/montserrat-v25-latin-100italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-200italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 200;
    src: local(''),
    url('./fonts/montserrat-v25-latin-200italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-300italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: local(''),
    url('./fonts/montserrat-v25-latin-300italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: local(''),
    url('./fonts/montserrat-v25-latin-italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-500italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    src: local(''),
    url('./fonts/montserrat-v25-latin-500italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-600italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 600;
    src: local(''),
    url('./fonts/montserrat-v25-latin-600italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-700italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 700;
    src: local(''),
    url('./fonts/montserrat-v25-latin-700italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-800italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 800;
    src: local(''),
    url('./fonts/montserrat-v25-latin-800italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}

/* montserrat-900italic - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 900;
    src: local(''),
    url('./fonts/montserrat-v25-latin-900italic.woff2') format('woff2'); /* Chrome 26+, Opera 23+, Firefox 39+ */
}


