

/* Start:/local/templates/main/styles.css?177629052319657*/
/* ═══════════════════════════════════════════════════════
   PAGE STYLES — Content Sections & Components
   ═══════════════════════════════════════════════════════ */

/* ── Base ──────────────────────────────────────────── */
body {
    font-family: "Inter", sans-serif;
    background-color: #efefef;
    color: #212529;
    line-height: 1.6;
    margin: 0;
}

.urban {
    font-family: "Urbanist", sans-serif;
}

#logo {
    display: none;
}

/* ── Background Decorations ────────────────────────── */
.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    min-width: 250px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

spline-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: auto;
}

/* ── Layout ────────────────────────────────────────── */
main.inner {
    margin-top: 100px;
}

/* ── Hero Section ──────────────────────────────────── */
.promo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo .about {
    min-height: 100vh;
    width: 100%;
    max-width: 1024px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    pointer-events: none;
}

.promo .about section.hero {
    width: 50%;
    display: flex;
    box-sizing: border-box;
    pointer-events: none;
}

.promo .about section.hero .hero-content {
    position: relative;
    z-index: 150;
    max-width: 600px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.promo .about section.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .5rem;
}

.promo .about section.hero h2 {
    margin: .2rem 0 2rem;
}

.promo .about section.hero p {
    font-size: 1.1rem;
    margin: 0 0 2rem;
    color: #191919;
}

.promo .about section.hero .btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    padding: .75rem 1.2rem;
    border-radius: 2rem;
    position: relative;
    z-index: 151;
    pointer-events: auto;
    color: #333;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.promo .about section.hero .btn::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #e0e0e0;
    border-radius: 50%;
    z-index: -1;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.promo .about section.hero .btn:hover {
    transform: translateX(15px);
}

.promo .about section.hero .btn:hover::before {
    background: #333;
    transform: translateY(-50%) translateX(-15px);
}

.promo .about section.hero-no {
    width: 50%;
    display: flex;
}

.promo .about .links {
    margin-top: auto;
    font-size: .95rem;
    pointer-events: auto;
    position: absolute;
    bottom: 20px;
    z-index: 120;
}

.promo .about .links a {
    color: #333;
    text-decoration: none;
    margin: 0 .5rem 0 0;
    line-height: 36px;
}

.promo .about .links span {
    color: #888;
    margin: 0 .5rem 0 0;
}

/* ── Cases Section ─────────────────────────────────── */
.cases {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases section {
    min-height: 100vh;
    width: 100%;
    max-width: 1024px;
    padding: 0 16px;
}

.cases .cases-section {
    text-align: center;
    margin-bottom: 80px;
}

.cases .cases-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 3rem 0 .5rem;
}

.cases .cases-section .section-subtitle {
    margin: .2rem 0 2rem;
}

.cases .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.cases .cases-grid .case-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 30px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
}

.cases .cases-grid .case-card .case-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    background-color: #fff;
    border-radius: 16px;
}

.cases .cases-grid .case-card .card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #333;
}

.cases .cases-grid .case-card .card-description {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-top: 0;
}

.cases .cases-grid .case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

/* ── Case Detail ───────────────────────────────────── */
.case {
    display: flex;
    align-items: center;
    justify-content: center;
}

.case section {
    min-height: 100vh;
    width: 100%;
    max-width: 1024px;
    padding: 0 16px;
}

.case .case-section {
    text-align: center;
    margin-bottom: 80px;
}

.case .case-section .case-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 16px;
    margin: 3rem 0 .5rem;
}

.case .case-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .5rem;
}

.case .case-section .section-subtitle {
    margin: .2rem 0 2rem;
}

.case .case-section .case-detail {
    text-align: left;
}

/* ── Solutions Grid ────────────────────────────────── */
.solutions-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.solutions-section .cases-section {
    width: 100%;
    max-width: 1024px;
    padding: 80px 16px 60px;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
    text-align: left;
}

.solution-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.solution-card-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-card-body {
    flex: 1;
}

.solution-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.3;
}

.solution-card-desc {
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 14px;
}

.solution-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.solution-card-tags span {
    font-size: 11px;
    font-weight: 600;
    background: #f0f0f0;
    color: #444;
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: .02em;
}

.solution-card-arrow {
    font-size: 18px;
    color: #bbb;
    flex-shrink: 0;
    align-self: center;
    transition: transform .2s, color .2s;
}

.solution-card:hover .solution-card-arrow {
    transform: translateX(4px);
    color: #333;
}

/* ── Solution Detail Page ──────────────────────────── */
.solution-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px 80px;
}

/* ── Solution Hero (full-width, two-column) ────────── */
.solution-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 40px;
    z-index: 99;
    pointer-events: auto;
}

.solution-hero-content {
    width: 50%;
    padding-right: 40px;
    text-align: left;
}

.solution-hero-content .badge {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.solution-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #1a1a1a;
}

.solution-hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 32px;
    line-height: 1.7;
}

.solution-hero-content .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.solution-hero-3d {
    width: 50%;
    position: relative;
    min-height: 500px;
}

.solution-hero-3d spline-viewer {
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    height: 100%;
    right: -20px;
}

/* ── Solution Blocks (legacy, used by hh/rag/voice) ── */
.solution-block {
    margin-bottom: 64px;
}

.solution-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
}

.solution-block p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
}

/* ── Stats Row ─────────────────────────────────────── */
.solution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
    padding: 36px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: .85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── Problem Accent ────────────────────────────────── */
.solution-problem {
    background: #1a1a1a;
    color: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 64px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.problem-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.problem-body h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.problem-body p {
    color: rgba(255, 255, 255, .65);
    margin: 0 0 12px;
    line-height: 1.7;
}

.problem-body p:last-child {
    margin-bottom: 0;
}

/* ── Timeline Flow ─────────────────────────────────── */
.solution-flow {
    position: relative;
    padding-left: 56px;
    margin-bottom: 64px;
}

.solution-flow::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, #333, #e0e0e0);
    border-radius: 1px;
}

.flow-step {
    position: relative;
    padding-bottom: 40px;
}

.flow-step:last-child {
    padding-bottom: 0;
}

.flow-dot {
    position: absolute;
    left: -56px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.flow-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aaa;
    margin-bottom: 4px;
}

.flow-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.flow-step p {
    font-size: .92rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── Bento Grid ────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.bento-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.bento-card.bento-wide {
    grid-column: span 2;
    display: flex;
    gap: 20px;
    align-items: center;
}

.bento-card.bento-accent {
    background: #1a1a1a;
    color: #fff;
}

.bento-card .bento-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.bento-card.bento-wide .bento-icon {
    font-size: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.bento-card p {
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
    color: #666;
}

.bento-card.bento-accent h3 {
    color: #fff;
}

.bento-card.bento-accent p {
    color: rgba(255, 255, 255, .55);
}

/* ── Use Case Cards ────────────────────────────────── */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.use-case-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.use-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.use-case-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.use-case-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: .95rem;
    color: #1a1a1a;
}

.use-case-card p {
    font-size: .85rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* ── Legacy Feature Cards (hh/rag/voice) ───────────── */
.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 64px;
}

.solution-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.solution-feature-card .feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.solution-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.solution-feature-card p {
    font-size: .88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Legacy Steps (hh/rag/voice) ───────────────────── */
.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 64px;
    counter-reset: step-counter;
}

.solution-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.solution-step:last-child {
    border-bottom: none;
}

.solution-step-num {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.solution-step-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.solution-step-text p {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Block ─────────────────────────────────────── */
.solution-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
}

.solution-cta p {
    color: rgba(255, 255, 255, .6);
    margin: 0 0 28px;
    line-height: 1.6;
    position: relative;
}

.solution-cta .view-all-button {
    background: #fff;
    color: #222;
    position: relative;
}

.solution-cta .view-all-button:hover {
    background: #eee;
}

/* ── Back Link ─────────────────────────────────────── */
.solution-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 40px;
    transition: color .2s;
}

.solution-back:hover {
    color: #333;
}

/* ── View All Button ───────────────────────────────── */
.view-all-button {
    display: inline-block;
    background-color: #333;
    color: #eee;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 16px;
    font-weight: 500;
    transition: background-color .3s ease, color .3s ease;
}

.view-all-button span {
    display: inline-block;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.view-all-button:hover {
    background-color: #333;
    color: #eee;
}

.view-all-button:hover span {
    transform: translateX(5px);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 767px) {
    spline-viewer {
        opacity: 0.2;
    }

    main .about section.hero {
        width: 80% !important;
    }

    main .about section.hero-no {
        display: none !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-hero {
        flex-direction: column;
        min-height: auto;
        padding: 20px 24px 40px;
    }

    .solution-hero-content {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .solution-hero-content h1 {
        font-size: 2rem;
    }

    .solution-hero-content .hero-actions {
        justify-content: center;
    }

    .solution-hero-3d {
        display: none;
    }

    /* New components responsive */
    .solution-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
    }

    .solution-problem {
        flex-direction: column;
        padding: 28px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.bento-wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .solution-cta {
        padding: 40px 24px;
    }
}

/* End */


/* Start:/local/templates/main/template_styles.css?17762858105314*/
/* ═══════════════════════════════════════════════════════
   TEMPLATE STYLES — Header, Navigation, Mobile Menu
   Loaded on every page via Bitrix template
   ═══════════════════════════════════════════════════════ */

/* ── Header ────────────────────────────────────────── */
header {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 310;
    background-color: #333;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    transform: translateX(-50%);
    margin: 30px auto 0;
    display: flex;
    align-items: center;
}

header a {
    padding: 5px 20px;
    font-weight: 300;
    font-size: 14px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

header a.active {
    border-radius: 30px;
}

header span {
    height: 14px;
    display: inline-block;
    width: 3px;
    border-radius: 4px;
    background: #ccc;
}

/* ── Desktop Navigation / Dropdown ─────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown > a::after {
    content: '▾';
    font-size: 10px;
    opacity: .55;
    transition: transform .2s;
}

.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    border-radius: 16px;
    padding: 20px 8px 8px;
    min-width: 230px;
    z-index: 300;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 14px !important;
    border-radius: 10px;
    font-size: 13px !important;
    color: #ccc !important;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff !important;
}

.dropdown-menu a .emoji {
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Burger Button ─────────────────────────────────── */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger-btn span:nth-child(1) {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s, width .3s;
}

.burger-btn span:nth-child(2) {
    display: block !important;
    height: 2px !important;
    width: 60% !important;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s, width .3s;
}

.burger-btn span:nth-child(3) {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s, width .3s;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100% !important;
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
    width: 0 !important;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100% !important;
}

/* ── Mobile Overlay ────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #1e1e1e;
    z-index: 299;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 80px 20px 20px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: #eee;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .08);
}

.mobile-nav .mob-section-label {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    width: 100%;
    max-width: 300px;
    padding: 14px 24px 4px;
}

.mobile-nav hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    max-width: 300px;
    margin: 8px 0;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 767px) {
    .header-nav-links {
        display: none !important;
    }

    .burger-btn {
        display: flex;
    }
}

/* End */
/* /local/templates/main/styles.css?177629052319657 */
/* /local/templates/main/template_styles.css?17762858105314 */
