:root {
    --omni-red: #e60012;
    --omni-red-dark: #b8000e;
    --omni-black: #111111;
    --omni-dark: #1b1b1f;
    --omni-gray: #6f7682;
    --omni-soft: #f6f7f9;
    --omni-border: #e9ebef;
    --omni-white: #ffffff;
    --omni-radius: 22px;
    --omni-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--omni-black);
    background: var(--omni-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: "Rajdhani", sans-serif;
    font-weight: 800;
}

.section-anchor {
    scroll-margin-top: 84px;
}

/* Navbar */
.omni-navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(230, 230, 230, 0.7);
    padding: 14px 0;
    transition: 0.25s ease;
}

.omni-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.omni-logo {
    height: 38px;
    width: auto;
}

.mobile-nav-panel {
    width: auto;
}

.navbar .nav-link {
    color: var(--omni-black);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--omni-red);
}

.navbar-toggler svg {
    width: 24px;
    height: 24px;
}

/* Button */
.btn {
    border-radius: 999px;
    letter-spacing: 0.3px;
    font-weight: 800;
}

.btn-omni-primary {
    background: var(--omni-red);
    color: #fff;
    border: 1px solid var(--omni-red);
    box-shadow: 0 12px 30px rgba(230, 0, 18, 0.22);
}

.btn-omni-primary:hover {
    background: var(--omni-red-dark);
    border-color: var(--omni-red-dark);
    color: #fff;
}

.btn-omni-outline {
    background: #fff;
    color: var(--omni-black);
    border: 1px solid var(--omni-border);
}

.btn-omni-outline:hover {
    border-color: var(--omni-red);
    color: var(--omni-red);
}

/* Hero */
.hero-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(230, 0, 18, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--omni-border);
    padding: 9px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: var(--omni-red);
    font-size: 14px;
    font-weight: 700;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-text {
    color: var(--omni-gray);
    font-size: 17px;
    max-width: 570px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    color: var(--omni-dark);
}

.hero-points svg {
    width: 18px;
    height: 18px;
    color: var(--omni-red);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--omni-border);
    border-radius: 34px;
    box-shadow: var(--omni-shadow);
    padding: 26px;
}

.main-dashboard {
    position: relative;
    z-index: 2;
    max-width: 470px;
    margin-left: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.dashboard-header small {
    color: var(--omni-gray);
    font-weight: 700;
}

.dashboard-header h5 {
    margin: 0;
    font-size: 26px;
}

.status-dot {
    width: 14px;
    height: 14px;
    background: var(--omni-red);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(230, 0, 18, 0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.stat-card {
    background: var(--omni-soft);
    border-radius: 20px;
    padding: 18px;
}

.stat-card span {
    display: block;
    color: var(--omni-gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.stat-card strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 32px;
    line-height: 1;
}

.machine-list {
    margin-top: 18px;
}

.machine-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--omni-border);
    border-radius: 18px;
    padding: 14px 16px;
    margin-top: 12px;
}

.machine-item strong,
.machine-item span {
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.machine-item small {
    display: block;
    color: var(--omni-gray);
}

.machine-item.active {
    background: rgba(230, 0, 18, 0.07);
    border-color: rgba(230, 0, 18, 0.22);
}

.machine-item.active span {
    color: var(--omni-red);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--omni-border);
    box-shadow: 0 18px 50px rgba(0,0,0,0.10);
    border-radius: 20px;
    padding: 16px 18px;
}

.floating-card svg {
    color: var(--omni-red);
}

.floating-card strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    line-height: 1;
}

.floating-card small {
    color: var(--omni-gray);
}

.card-iot {
    left: 10px;
    top: 90px;
}

.card-report {
    right: 5px;
    bottom: 70px;
}

/* Section */
.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
}

.section-subtitle {
    display: inline-block;
    color: var(--omni-red);
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-heading h2,
.section-title {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    margin-bottom: 18px;
}

.section-heading p,
.section-text {
    color: var(--omni-gray);
    font-size: 16px;
}

.bg-soft {
    background: var(--omni-soft);
}

/* About */
.about-card {
    background: #fff;
    border: 1px solid var(--omni-border);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--omni-shadow);
}

.about-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--omni-border);
}

.about-item:first-child {
    padding-top: 0;
}

.about-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-item svg {
    width: 28px;
    height: 28px;
    color: var(--omni-red);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-item h5 {
    font-size: 24px;
    margin-bottom: 4px;
}

.about-item p {
    color: var(--omni-gray);
    margin-bottom: 0;
    font-size: 14px;
}

/* Feature */
.feature-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--omni-border);
    border-radius: var(--omni-radius);
    padding: 30px;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--omni-shadow);
}

.feature-card svg {
    width: 34px;
    height: 34px;
    color: var(--omni-red);
    margin-bottom: 22px;
}

.feature-card h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--omni-gray);
    margin-bottom: 0;
    font-size: 15px;
}

/* Problem */
.problem-list {
    display: grid;
    gap: 14px;
}

.problem-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--omni-border);
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 600;
}

.problem-list svg {
    color: var(--omni-red);
    min-width: 20px;
}

.solution-box {
    background: var(--omni-black);
    color: #fff;
    border-radius: 32px;
    padding: 44px;
    box-shadow: var(--omni-shadow);
}

.solution-box svg {
    color: var(--omni-red);
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
}

.solution-box h3 {
    font-size: 40px;
    line-height: 1;
}

.solution-box p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
}

/* Product */
.product-mobile-hint {
    display: none;
}

.product-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--omni-border);
    border-radius: 28px;
    padding: 30px;
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--omni-shadow);
}

.product-card.highlight {
    border: 2px solid var(--omni-red);
    box-shadow: 0 20px 60px rgba(230, 0, 18, 0.10);
}

.product-label {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    background: var(--omni-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
}

.product-image {
    width: 100%;
    height: 190px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--omni-soft);
    margin-bottom: 24px;
    border: 1px solid var(--omni-border);
}

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

.product-card h4 {
    font-size: 30px;
}

.product-card p {
    color: var(--omni-gray);
}

.product-price {
    margin: 18px 0 20px;
    padding: 14px 16px;
    background: var(--omni-soft);
    border-radius: 16px;
}

.product-price small {
    display: block;
    color: var(--omni-gray);
    font-size: 12px;
    margin-bottom: 2px;
}

.product-price strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 30px;
    line-height: 1;
    color: var(--omni-black);
}

.product-price span {
    font-size: 12px;
    color: var(--omni-gray);
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.product-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
}

.product-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--omni-red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* Video */
.bg-dark-section {
    background:
        radial-gradient(circle at top right, rgba(230, 0, 18, 0.25), transparent 35%),
        #111111;
}

.text-red {
    color: var(--omni-red);
}

.video-placeholder {
    min-height: 340px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.video-placeholder svg {
    width: 70px;
    height: 70px;
    color: var(--omni-red);
    margin-bottom: 20px;
}

.video-placeholder h5 {
    font-size: 28px;
}

.video-placeholder p {
    color: rgba(255,255,255,0.55);
}

.demo-btn-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

.demo-btn-light:hover {
    background: #fff;
    color: var(--omni-black);
    border-color: #fff;
}

/* CTA */
.cta-section {
    padding: 90px 0;
}

.cta-box {
    background:
        radial-gradient(circle at top left, rgba(230, 0, 18, 0.12), transparent 35%),
        var(--omni-soft);
    border: 1px solid var(--omni-border);
    border-radius: 36px;
    padding: 70px 30px;
}

.cta-box h2 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
}

.cta-box p {
    color: var(--omni-gray);
    max-width: 680px;
    margin: 18px auto 0;
}

/* Footer */
.footer-section {
    background: #0f0f12;
    color: rgba(255,255,255,0.72);
    padding: 70px 0 30px;
}

.footer-logo {
    height: 38px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    max-width: 480px;
    color: rgba(255,255,255,0.68);
}

.footer-section h6 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    max-width: 360px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-contact-link svg {
    width: 17px;
    height: 17px;
    color: var(--omni-red);
    flex-shrink: 0;
}

.footer-contact-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 44px;
    padding-top: 24px;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: hidden;
    }

    .mobile-nav-panel {
        background: #fff;
        border: 1px solid var(--omni-border);
        border-radius: 18px;
        margin-top: 12px;
        padding: 14px;
        box-shadow: var(--omni-shadow);
        width: 100%;
    }

    .mobile-nav-panel .nav-link {
        padding: 9px 4px;
    }

    .mobile-nav-panel .btn {
        width: 100%;
        margin-top: 8px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 70px;
    }

    .hero-visual {
        min-height: auto;
    }

    .main-dashboard {
        margin: 0;
        max-width: 100%;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
    }

    .section-padding {
        padding: 72px 0;
    }

    .solution-box {
        padding: 34px;
    }

    .product-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 24px;
        font-size: 12px;
        color: var(--omni-gray);
    }

    .product-nav-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--omni-border);
        background: #fff;
        display: grid;
        place-items: center;
        color: var(--omni-black);
        box-shadow: 0 10px 24px rgba(0,0,0,0.06);
        flex-shrink: 0;
    }

    .product-nav-btn svg {
        width: 17px;
        height: 17px;
    }

    .product-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 8px 18px 18px;
        margin-left: -18px;
        margin-right: -18px;
        scrollbar-width: none;
    }

    .product-slider::-webkit-scrollbar {
        display: none;
    }

    .product-slide {
        width: 82%;
        min-width: 82%;
        scroll-snap-align: center;
    }

    .product-slide:first-child {
        margin-left: 9%;
    }

    .product-slide:last-child {
        margin-right: 9%;
    }

    .product-card {
        height: 100%;
    }

    .product-image {
        height: 150px;
        border-radius: 18px;
        margin-bottom: 18px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    body {
        line-height: 1.55;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-anchor {
        scroll-margin-top: 68px;
    }

    .omni-navbar {
        padding: 9px 0;
    }

    .omni-logo {
        height: 30px;
    }

    .navbar-toggler svg {
        width: 22px;
        height: 22px;
    }

    .hero-section .min-vh-100 {
        padding-top: 96px !important;
        padding-bottom: 46px;
    }

    .hero-badge {
        padding: 7px 12px;
        font-size: 11px;
        gap: 7px;
        margin-bottom: 16px !important;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 0.98;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .hero-text {
        font-size: 13.5px;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .hero-actions {
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .hero-section .btn-lg {
        width: auto;
        padding: 9px 15px;
        font-size: 14px;
        flex: 1 1 calc(50% - 8px);
        white-space: nowrap;
    }

    .hero-points {
        display: flex;
        gap: 8px;
        margin-top: 22px !important;
    }

    .hero-points span {
        font-size: 11.5px;
        padding: 7px 10px;
        background: #fff;
        border: 1px solid var(--omni-border);
        border-radius: 999px;
    }

    .hero-points svg {
        width: 14px;
        height: 14px;
    }

    .hero-visual {
        margin-top: 24px;
    }

    .dashboard-card {
        padding: 16px;
        border-radius: 10px;
    }

    .dashboard-header {
        margin-bottom: 14px;
    }

    .dashboard-header small {
        font-size: 11px;
    }

    .dashboard-header h5 {
        font-size: 20px;
    }

    .status-dot {
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 6px rgba(230, 0, 18, 0.12);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .stat-card {
        padding: 12px;
        border-radius: 10px;
    }

    .stat-card span {
        font-size: 10.5px;
        margin-bottom: 4px;
    }

    .stat-card strong {
        font-size: 24px;
    }

    .machine-list {
        margin-top: 10px;
    }

    .machine-item {
        padding: 10px 12px;
        border-radius: 10px;
        margin-top: 8px;
    }

    .machine-item strong,
    .machine-item span {
        font-size: 18px;
    }

    .machine-item small {
        font-size: 11px;
    }

    .floating-card {
        width: calc(50% - 5px);
        display: inline-flex;
        margin-top: 10px;
        margin-right: 6px;
        padding: 9px 10px;
        border-radius: 10px;
        gap: 8px;
        vertical-align: top;
    }

    .floating-card:nth-of-type(3) {
        margin-right: 0;
    }

    .floating-card svg {
        width: 16px;
        height: 16px;
    }

    .floating-card strong {
        font-size: 14px;
    }

    .floating-card small {
        font-size: 10px;
    }

    .card-iot {
        margin-right: 6px;
    }

    .card-report {
        margin-right: 0;
    }

    .section-padding {
        padding: 54px 0;
    }

    .section-heading {
        max-width: 100%;
    }

    .section-subtitle {
        font-size: 13px;
        letter-spacing: 0.8px;
        margin-bottom: 6px;
    }

    .section-heading h2,
    .section-title {
        font-size: 29px;
        line-height: 1.02;
        margin-bottom: 12px;
    }

    .section-heading p,
    .section-text {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .about-card {
        padding: 18px;
        border-radius: 10px;
    }

    .about-item {
        gap: 10px;
        padding: 13px 0;
    }

    .about-item svg {
        width: 20px;
        height: 20px;
    }

    .about-item h5 {
        font-size: 18px;
    }

    .about-item p {
        font-size: 12.5px;
        line-height: 1.45;
    }

    .row.g-4 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .feature-card {
        padding: 16px 13px;
        border-radius: 10px;
    }

    .feature-card svg {
        width: 24px;
        height: 24px;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 7px;
    }

    .feature-card p {
        font-size: 11.5px;
        line-height: 1.45;
    }

    .section-padding .col-md-6.col-lg-3 {
        width: 50%;
    }

    .problem-list {
        gap: 8px;
    }

    .problem-list div {
        padding: 11px 13px;
        border-radius: 10px;
        font-size: 12.5px;
        line-height: 1.35;
        gap: 8px;
    }

    .problem-list svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .solution-box {
        padding: 26px 22px;
        border-radius: 10px;
    }

    .solution-box svg {
        width: 32px;
        height: 32px;
        margin-bottom: 16px;
    }

    .solution-box h3 {
        font-size: 30px;
        line-height: 1;
    }

    .solution-box p {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .product-mobile-hint {
        margin-top: 18px;
    }

    .product-slide {
        width: 84%;
        min-width: 84%;
    }

    .product-slide:first-child {
        margin-left: 8%;
    }

    .product-slide:last-child {
        margin-right: 8%;
    }

    .product-card {
        padding: 20px;
        border-radius: 10px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-image {
        height: 135px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .product-card h4 {
        font-size: 24px;
        line-height: 1;
    }

    .product-card p {
        font-size: 12.8px;
        line-height: 1.5;
    }

    .product-price {
        border-radius: 10px;
        padding: 11px 12px;
        margin: 14px 0 16px;
    }

    .product-price strong {
        font-size: 24px;
    }

    .product-card ul {
        margin: 18px 0;
    }

    .product-card li {
        font-size: 12px;
        margin-bottom: 7px;
        padding-left: 18px;
    }

    .product-card li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .product-label {
        top: 16px;
        right: 16px;
        font-size: 10px;
        padding: 5px 9px;
        border-radius: 8px;
    }

    .product-card .btn {
        border-radius: 10px;
    }

    .video-placeholder {
        min-height: 220px;
        border-radius: 10px;
        padding: 26px 20px;
    }

    .video-placeholder svg {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .video-placeholder h5 {
        font-size: 22px;
    }

    .video-placeholder p {
        font-size: 13px;
    }

    .cta-section {
        padding: 54px 0;
    }

    .cta-box {
        padding: 34px 20px;
        border-radius: 10px;
    }

    .cta-box h2 {
        font-size: 32px;
        line-height: 1;
    }

    .cta-box p {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .cta-actions .btn-lg,
    .hero-section .btn-lg {
        border-radius: 10px;
    }

    .cta-actions .btn-lg {
        width: auto;
        flex: 1 1 calc(50% - 8px);
        padding: 9px 13px;
        font-size: 13.5px;
        white-space: nowrap;
    }

    .mobile-nav-panel {
        border-radius: 10px;
    }

    .footer-section {
        padding: 40px 0 22px;
    }

    .footer-logo {
        height: 30px;
    }

    .footer-section h6 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 12px;
        max-width: 100%;
    }

    .footer-contact-link {
        font-size: 12.8px;
        gap: 7px;
    }

    .footer-contact-link svg {
        width: 15px;
        height: 15px;
    }

    .footer-bottom {
        margin-top: 24px;
        padding-top: 16px;
        font-size: 12px;
    }
}