/* ============================================
   La Isla Restaurant — Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --charcoal: #2D2D2D;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #4A4A4A;
    --coral: #F4845F;
    --coral-light: #F7A08A;
    --coral-pale: #FDE8E0;
    --coral-soft: #FFF0EA;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F3EF;
    --sand: #EDE9E3;
    --sand-dark: #D4CFC7;
    --text-primary: #2D2D2D;
    --text-secondary: #6B6560;
    --text-light: #9B9590;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 16px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 32px rgba(45, 45, 45, 0.1);
    --shadow-xl: 0 16px 48px rgba(45, 45, 45, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

.section-label--light {
    color: var(--coral-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    color: var(--charcoal);
}

.section-title--light {
    color: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244, 132, 95, 0.3);
}

.btn-primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244, 132, 95, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand-dark);
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 207, 199, 0.5);
    transition: all var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--charcoal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--coral);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--coral-light);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--charcoal);
    padding: 8px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--coral);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
    padding: 1rem 2rem;
    background: var(--coral);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 50%, var(--coral-soft) 100%);
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(244, 132, 95, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 132, 95, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--sand);
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
}

.hero-trust-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero-trust-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.125rem;
}

.hero-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.floating-card-icon {
    font-size: 1.5rem;
}

.floating-card-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.floating-card-sublabel {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- About Section --- */
.about {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-content {
    max-width: 560px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.about-value {
    display: flex;
    gap: var(--space-md);
    align-items: start;
}

.about-value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-soft);
    border-radius: var(--radius-md);
    color: var(--coral);
}

.about-value h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.about-value p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About image grid */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.about-image-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-item--large {
    grid-row: 1 / 3;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image-item:hover img {
    transform: scale(1.03);
}

/* --- Menu Section --- */
.menu {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--off-white);
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.menu-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.menu-cat-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1.5px solid var(--sand);
    transition: all var(--transition-base);
}

.menu-cat-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.menu-cat-btn.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.375rem 0.875rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--coral);
}

.menu-card-content {
    padding: var(--space-md);
}

.menu-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.menu-card-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--sand);
}

.menu-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* --- Experience Section --- */
.experience {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(244, 132, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(244, 132, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.experience-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.experience-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.experience-card h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.experience-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.experience-divider {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.experience-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.experience-divider-icon {
    font-size: 1.5rem;
}

.experience-testimonial {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--coral);
}

.testimonial-quote path {
    fill: currentColor;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg path {
    fill: currentColor;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg path {
    fill: currentColor;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg path {
    fill: currentColor;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
    opacity: 0.15;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    fill: currentColor;
