:root { --navy: #0A0D1F; --silver: #D1D3D6; --gold: #D1A860; --white: #FFFFFF; --header-height: 82px; --footer-height: 56px; } * { box-sizing: border-box; } html, body { height: 100%; } body { margin: 0; overflow: hidden; background: var(--navy); color: var(--white); font-family: 'Montserrat', sans-serif; } a { color: inherit; } /* INTRO */ .intro-site-600 { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: var(--navy); animation: introExit 2.8s ease forwards; } .intro-brand-site-600 { text-align: center; opacity: 0; animation: introBrand 1.25s ease forwards; } .intro-logo-site-600 { display: flex; align-items: center; justify-content: center; gap: 22px; font-family: 'Lora', serif; font-size: 84px; font-weight: 400; line-height: 1; color: var(--silver); } .intro-logo-gold { color: var(--gold); } .intro-logo-line { color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 300; } .intro-logo-by { color: var(--silver); font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 300; letter-spacing: 0.18em; } .intro-logo-silver { color: var(--silver); } .intro-tagline-site-600 { margin-top: 30px; color: var(--silver); font-size: 21px; font-weight: 300; letter-spacing: 0.18em; text-transform: lowercase; } @keyframes introBrand { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } @keyframes introExit { 0% { opacity: 1; visibility: visible; } 72% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; } } /* HEADER */ .site-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; padding: 0 64px; background: rgba(10,13,31,0.98); border-bottom: 1px solid rgba(209,211,214,0.22); z-index: 1000; } .site-logo { display: flex; align-items: center; gap: 10px; color: var(--silver); text-decoration: none; font-family: 'Lora', serif; font-size: 26px; font-weight: 400; } .site-logo span:first-child { color: var(--gold); } .site-logo em { color: var(--gold); font-style: normal; font-family: 'Montserrat', sans-serif; font-weight: 300; } .site-logo small { color: var(--silver); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 300; letter-spacing: 0.18em; } .site-nav { display: flex; align-items: center; gap: 24px; } .site-nav a { color: rgba(209,211,214,0.88); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.25s ease; } .site-nav a:hover { color: var(--gold); } .client-area-btn { padding: 11px 16px; border: 1px solid var(--gold); background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; } /* MAIN */ .site-main { position: fixed; top: var(--header-height); bottom: var(--footer-height); left: 0; right: 0; overflow: hidden; background: var(--navy); } /* HOME */ .home-stage { height: 100%; display: flex; align-items: center; justify-content: center; padding: 64px; text-align: center; } .home-brand { transform: translateY(-8px); } .home-logo { display: flex; align-items: center; justify-content: center; gap: 26px; color: var(--silver); font-family: 'Lora', serif; font-size: 104px; font-weight: 400; line-height: 1; } .home-logo span:first-child { color: var(--gold); } .home-logo em { color: var(--gold); font-family: 'Montserrat', sans-serif; font-style: normal; font-weight: 300; } .home-logo small { color: var(--silver); font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 300; letter-spacing: 0.18em; } .home-tagline { margin: 34px 0 0; color: rgba(209,211,214,0.92); font-size: 22px; font-weight: 300; letter-spacing: 0.18em; text-transform: lowercase; } .home-actions { margin-top: 58px; display: flex; justify-content: center; gap: 22px; } .home-actions a { min-width: 178px; padding: 15px 24px; border: 1px solid rgba(209,211,214,0.38); color: var(--silver); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.25s ease; } .home-actions a:hover { border-color: var(--gold); color: var(--gold); } /* MOBILE APPS PAGE */ .mobile-apps-page { min-height: 100%; display: grid; grid-template-columns: 330px 1fr; align-items: center; gap: 115px; padding: 64px 88px; background: var(--navy); } .page-kicker { display: inline-block; margin-bottom: 24px; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; } .mobile-apps-copy { margin-left: 0; } .mobile-apps-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--silver);
    font-family: 'Lora', serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.12;
} .mobile-apps-copy p {
    max-width: 760px;
    margin: 26px 0 0;
    color: rgba(209,211,214,0.88);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
} .mobile-apps-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    max-width: 560px;
    margin-top: 36px;
} .mobile-apps-points span { padding: 14px 16px; border-left: 1px solid var(--gold); background: rgba(255,255,255,0.025); color: rgba(209,211,214,0.86); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; } .page-actions { display: flex; gap: 22px; margin-top: 46px; } .page-actions a { min-width: 182px; padding: 15px 24px; border: 1px solid rgba(209,211,214,0.38); color: var(--silver); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.25s ease; } .page-actions a:hover { border-color: var(--gold); color: var(--gold); } .mobile-apps-visual { display: flex; justify-content: center; align-items: center; } .phone-frame { width: 330px; height: 590px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0; border: 1px solid rgba(209,168,96,0.60); border-radius: 30px; background: transparent; box-shadow: 0 38px 100px rgba(0,0,0,0.58); } .phone-frame img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 29px; } /* CONTACT PAGE */ .contact-page { min-height: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 86px; padding: 68px 88px; background: var(--navy); } .contact-copy h1 { max-width: 850px; margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 60px; font-weight: 400; line-height: 1.12; } .contact-copy p { max-width: 760px; margin: 28px 0 0; color: rgba(209,211,214,0.88); font-size: 17px; font-weight: 300; line-height: 1.85; } .contact-details { margin-top: 46px; max-width: 720px; border-top: 1px solid rgba(209,211,214,0.20); } .contact-line { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(209,211,214,0.20); } .contact-line span { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; } .contact-line a, .contact-line strong { color: rgba(209,211,214,0.92); font-size: 15px; font-weight: 400; text-decoration: none; } .contact-line a:hover { color: var(--gold); } .contact-card { padding: 46px; border: 1px solid rgba(209,168,96,0.42); background: rgba(255,255,255,0.018); } .contact-card-label { display: inline-block; margin-bottom: 24px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; } .contact-card h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 38px; font-weight: 400; line-height: 1.18; } .contact-card p { margin: 24px 0 0; color: rgba(209,211,214,0.84); font-size: 15px; font-weight: 300; line-height: 1.8; } .contact-button { display: inline-block; margin-top: 36px; padding: 15px 26px; min-width: 180px; border: 1px solid var(--gold); background: var(--gold); color: var(--navy); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; } /* SOLUTIONS PAGE */ .solutions-page { height: 100%; overflow-y: auto; padding: 34px 88px 44px; background: var(--navy); } .solutions-intro { max-width: 1280px; margin-bottom: 28px; } .solutions-intro h1 { max-width: 1280px; margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 50px; font-weight: 400; line-height: 1.08; } .solutions-intro p { max-width: 1160px; margin: 18px 0 0; color: rgba(209,211,214,0.88); font-size: 16px; font-weight: 300; line-height: 1.7; } .solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; } .solution-card { min-height: 214px; padding: 30px 24px 24px; border: 1px solid rgba(209,168,96,0.34); background: rgba(255,255,255,0.018); display: flex; flex-direction: column; } .solution-card h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 29px; font-weight: 400; line-height: 1.18; } .solution-card p { margin: 18px 0 0; color: rgba(209,211,214,0.84); font-size: 14px; font-weight: 300; line-height: 1.62; } .solution-card strong { margin-top: auto; padding-top: 20px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; } .section-label { display: block; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; } .solutions-process { margin-top: 30px; padding: 26px 0 0; border-top: 1px solid rgba(209,211,214,0.18); } .process-timeline { display: flex; align-items: center; gap: 16px; margin-top: 18px; width: 100%; } .process-step { text-align: center; min-width: 94px; } .process-step span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(209,168,96,0.55); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.10em; margin-bottom: 8px; } .process-step p { margin: 0; color: rgba(209,211,214,0.90); font-size: 13px; font-weight: 300; } .process-connector { flex: 1; min-width: 34px; height: 1px; background: linear-gradient(90deg, rgba(209,168,96,0.15), rgba(209,168,96,0.55), rgba(209,168,96,0.15)); } .solutions-packages { margin-top: 34px; } .packages-title { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; } .packages-title::before, .packages-title::after { content: ""; height: 1px; background: linear-gradient(90deg, transparent, rgba(209,168,96,0.70), transparent); } .packages-title::before { width: 54px; } .packages-title::after { flex: 1; } .packages-title span { color: var(--gold); font-family: 'Lora', serif; font-size: 31px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; } .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; } .package-card { min-height: 300px; padding: 30px 28px; border: 1px solid rgba(209,168,96,0.32); background: rgba(255,255,255,0.018); display: flex; flex-direction: column; } .package-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; } .package-header h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 34px; font-weight: 400; line-height: 1.1; } .package-icon { color: var(--gold); font-size: 34px; line-height: 1; } .package-description { margin: 22px 0 0; min-height: 78px; color: rgba(209,211,214,0.84); font-size: 14px; font-weight: 300; line-height: 1.65; } .package-list { list-style: none; padding: 20px 0 0; margin: 20px 0 0; border-top: 1px solid rgba(209,168,96,0.22); } .package-list li { position: relative; padding-left: 24px; margin-bottom: 8px; color: rgba(209,211,214,0.90); font-size: 14px; font-weight: 300; line-height: 1.45; } .package-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 12px; } .packages-note { margin: 24px 0 0; text-align: center; color: rgba(209,211,214,0.72); font-size: 14px; font-weight: 300; } .solutions-ecosystem { margin-top: 28px; padding: 28px 30px; border-left: 2px solid var(--gold); background: rgba(255,255,255,0.025); display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 16px; align-items: center; } .solutions-ecosystem h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 32px; font-weight: 400; line-height: 1.08; } .solutions-ecosystem p { margin: 0; color: rgba(209,211,214,0.86); font-size: 15px; font-weight: 300; line-height: 1.65; } .solutions-actions { display: flex; gap: 20px; margin-top: 24px; } .solutions-actions a { min-width: 180px; padding: 15px 24px; border: 1px solid rgba(209,211,214,0.38); color: var(--silver); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.25s ease; text-align: center; } .solutions-actions a:hover { border-color: var(--gold); color: var(--gold); } /* WHY 600 BY DC PAGE */ .why-page { height: 100%; overflow-y: auto; padding: 44px 88px 44px; background: radial-gradient(circle at 18% 0%, rgba(209,168,96,0.08), transparent 32%), var(--navy); } .why-intro { max-width: 1180px; margin-bottom: 34px; } .why-intro h1 { max-width: 980px; margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 54px; font-weight: 400; line-height: 1.08; } .why-intro p { max-width: 920px; margin: 20px 0 0; color: rgba(209,211,214,0.88); font-size: 16px; font-weight: 300; line-height: 1.75; } .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; } .why-card { min-height: 230px; padding: 30px; border: 1px solid rgba(209,168,96,0.30); background: rgba(255,255,255,0.018); display: flex; flex-direction: column; justify-content: flex-start; } .why-card h3 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 31px; font-weight: 400; line-height: 1.16; } .why-card p { margin: 20px 0 0; color: rgba(209,211,214,0.84); font-size: 14px; font-weight: 300; line-height: 1.68; } .why-card-wide { grid-column: span 2; min-height: 190px; } .why-final { margin-top: 28px; padding: 30px 34px; border-left: 2px solid var(--gold); background: rgba(255,255,255,0.025); display: grid; grid-template-columns: 0.9fr 1.45fr; gap: 42px; align-items: center; } .why-final h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 34px; font-weight: 400; line-height: 1.15; } .why-final p { margin: 0; color: rgba(209,211,214,0.86); font-size: 15px; font-weight: 300; line-height: 1.70; } .why-actions { display: flex; gap: 20px; margin-top: 24px; } .why-actions a { min-width: 180px; padding: 15px 24px; border: 1px solid rgba(209,211,214,0.38); color: var(--silver); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: 0.25s ease; text-align: center; } .why-actions a:hover { border-color: var(--gold); color: var(--gold); } /* FOOTER */ footer { position: fixed; left: 0; right: 0; bottom: 0; height: var(--footer-height); display: flex; align-items: center; padding: 0 64px; background: rgba(10,13,31,0.98); border-top: 1px solid rgba(209,211,214,0.22); color: rgba(209,211,214,0.70); font-size: 11px; font-weight: 300; line-height: 1.4; z-index: 1000; } footer a { color: var(--gold); text-decoration: none; } /* RESPONSIVE */ @media (max-width: 1000px) { :root { --header-height: 136px; --footer-height: 68px; } .site-header { flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: 18px 24px; } .site-nav { flex-wrap: wrap; gap: 13px; } .site-nav a { font-size: 10px; } .intro-logo-site-600, .home-logo { font-size: 52px; gap: 14px; } .intro-logo-by, .home-logo small { font-size: 13px; } .intro-tagline-site-600, .home-tagline { font-size: 15px; letter-spacing: 0.11em; } .home-actions { flex-direction: column; align-items: center; margin-top: 42px; } .mobile-apps-page, .contact-page { grid-template-columns: 1fr; padding: 52px 24px; gap: 48px; } .solutions-page { padding: 42px 24px; } .solutions-intro h1 { font-size: 38px; } .solutions-intro p { font-size: 15px; } .solutions-grid, .packages-grid { grid-template-columns: 1fr; } .process-timeline { flex-direction: column; align-items: flex-start; gap: 14px; } .process-connector { display: none; } .process-step { display: flex; align-items: center; gap: 14px; min-width: 0; text-align: left; } .process-step span { margin-bottom: 0; } .solutions-ecosystem { grid-template-columns: 1fr; gap: 18px; padding: 24px; } .solutions-actions { flex-direction: column; } .mobile-apps-visual { justify-content: flex-start; } .mobile-apps-copy h1, .contact-copy h1 { font-size: 38px; } .mobile-apps-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--silver);
    font-family: 'Lora', serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.12;
} .mobile-apps-copy p, .contact-copy p { font-size: 15px; }  .mobile-apps-points { grid-template-columns: 1fr; } .page-actions { flex-direction: column; } .phone-frame { width: 260px; height: 460px; } .contact-line { grid-template-columns: 1fr; gap: 8px; } .contact-card { padding: 30px; } .why-page { padding: 42px 24px; } .why-intro h1 { font-size: 38px; } .why-intro p { font-size: 15px; } .why-layout, .why-final { grid-template-columns: 1fr; gap: 18px; } .why-main-card { min-height: 0; padding: 28px; } .why-grid { grid-template-columns: 1fr; } .why-card-wide { grid-column: span 1; } .why-actions { flex-direction: column; } footer { padding: 0 24px; font-size: 10px; } } /* WHY 600 BY DC - CENTERED COMMUNICATION LAYOUT */ .why-page { height: 100%; overflow-y: auto; padding: 28px 56px 42px; background: radial-gradient(circle at 50% 42%, rgba(209,168,96,0.10), transparent 34%), radial-gradient(circle at 12% 0%, rgba(209,168,96,0.08), transparent 30%), var(--navy); } .why-values-grid { display: grid; grid-template-columns: 1fr 0.18fr 1fr; grid-template-rows: auto auto auto; gap: 26px 38px; max-width: 1680px; margin: 0 auto; } .why-value-card { min-height: 225px; padding: 34px 42px; border: 1px solid rgba(209,168,96,0.66); background: linear-gradient(180deg, rgba(255,255,255,0.026), rgba(255,255,255,0.012)); box-shadow: 0 28px 80px rgba(0,0,0,0.18); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; text-align: center; } .why-value-top-left { grid-column: 1 / 2; grid-row: 1 / 2; } .why-value-top-right { grid-column: 3 / 4; grid-row: 1 / 2; } .why-value-center { grid-column: 1 / 4; grid-row: 2 / 3; width: 54%; min-height: 205px; justify-self: center; } .why-value-bottom-left { grid-column: 1 / 2; grid-row: 3 / 4; } .why-value-bottom-right { grid-column: 3 / 4; grid-row: 3 / 4; } .why-value-icon { color: var(--gold); font-size: 38px; line-height: 1; font-family: 'Montserrat', sans-serif; font-weight: 300; } .why-value-card h2 { margin: 0; color: var(--silver); font-family: 'Lora', serif; font-size: 32px; font-weight: 400; line-height: 1.15; } .why-value-card p { max-width: 620px; margin: 0; color: rgba(209,211,214,0.86); font-size: 15px; font-weight: 300; line-height: 1.75; } .why-value-center h2 { font-size: 34px; } .why-value-center p { max-width: 720px; } @media (max-width: 1000px) { .why-page { padding: 42px 24px; } .why-values-grid { display: flex; flex-direction: column; gap: 20px; } .why-value-center { width: 100%; } .why-value-card { min-height: 0; padding: 28px 24px; } }
/* 600 by DC - shared page title bar */
.title-bar-site-600 {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    min-width: 0;
    color: var(--gold);
    font-family: 'Lora', serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.title-bar-site-600::before,
.title-bar-site-600::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209,168,96,0.85), transparent);
}

.title-bar-site-600::before {
    width: 64px;
    flex: 0 0 64px;
}

.title-bar-site-600::after {
    flex: 1;
    min-width: 40px;
}

.title-bar-site-600 span {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .title-bar-site-600 {
        gap: 18px;
        margin-bottom: 20px;
        font-size: 24px;
        letter-spacing: 0.18em;
    }

    .title-bar-site-600::before {
        width: 44px;
        flex-basis: 44px;
    }
}

@media (max-width: 520px) {
    .title-bar-site-600 {
        gap: 14px;
        margin-bottom: 18px;
        font-size: 21px;
        letter-spacing: 0.16em;
    }

    .title-bar-site-600::before {
        width: 38px;
        flex-basis: 38px;
    }

    .title-bar-site-600::after {
        min-width: 24px;
    }
}

/* Contact page alignment patch: keeps the title bar consistent with the section pages. */
.contact-page {
    align-items: start !important;
    padding-top: 44px !important;
}

.contact-page .title-bar-site-600,
.contact-page .lux-section-title {
    width: calc(100vw - 128px) !important;
    max-width: 1680px;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    min-width: 0;
}

.contact-page .title-bar-site-600::before,
.contact-page .title-bar-site-600::after,
.contact-page .lux-section-title::before,
.contact-page .lux-section-title::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209,168,96,0.85), transparent);
}

.contact-page .title-bar-site-600::before,
.contact-page .lux-section-title::before {
    width: 64px;
    flex: 0 0 64px;
}

.contact-page .title-bar-site-600::after,
.contact-page .lux-section-title::after {
    flex: 1 1 auto;
    min-width: 0;
}

.contact-page .title-bar-site-600 span,
.contact-page .lux-section-title span {
    color: var(--gold);
    font-family: 'Lora', serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .contact-page {
        padding-top: 42px !important;
    }

    .contact-page .title-bar-site-600,
    .contact-page .lux-section-title {
        width: 100% !important;
        gap: 18px !important;
    }

    .contact-page .title-bar-site-600::before,
    .contact-page .lux-section-title::before {
        width: 44px;
        flex-basis: 44px;
    }

    .contact-page .title-bar-site-600 span,
    .contact-page .lux-section-title span {
        font-size: 24px;
        letter-spacing: 0.18em;
    }
}

@media (max-width: 520px) {
    .contact-page {
        padding-top: 34px !important;
    }

    .contact-page .title-bar-site-600,
    .contact-page .lux-section-title {
        gap: 14px !important;
    }

    .contact-page .title-bar-site-600::before,
    .contact-page .lux-section-title::before {
        width: 38px;
        flex-basis: 38px;
    }

    .contact-page .title-bar-site-600 span,
    .contact-page .lux-section-title span {
        font-size: 21px;
        letter-spacing: 0.16em;
    }
}

/* 600 BY DC — GLOBAL PAGE HERO TITLE COMPONENT */
.page-hero-title-site-600 {
    margin: 0;
    color: var(--silver);
    font-family: 'Lora', serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.08;
}

@media (max-width: 980px) {
    .page-hero-title-site-600 {
        font-size: 38px;
        line-height: 1.12;
    }
}

@media (max-width: 520px) {
    .page-hero-title-site-600 {
        font-size: 32px;
        line-height: 1.11;
    }
}
