/* home page */

:root {
    --bg-color: #000000;
    --brand-orange: #FF744D;
    --brand-orange-dark: #D94D26;
    --gray-1: #C5C4C8;
    --gray-2: #A9A8AE;
    --white-soft: #FCFCFF;
    --white-warm: #FFF3F0;
}

/* SECTION */
.hybrid-section {
    width: 100%;
}


    .hybrid-container {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }


/* HEADER */
.hybrid-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 1128px;
}

.hybrid-breadcrumbs {
    display: flex;
    gap: 8px;
    color: var(--gray-2);
    font-size: 14px;
}

.hybrid-breadcrumbs .active {
    font-weight: 600;
}

.hybrid-title {
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    background: linear-gradient(180deg, #FCFCFF, rgba(252, 252, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}

.hybrid-description {
    font-size: 20px;
    line-height: 30px;
    color: var(--gray-2);
    max-width: 1128px;
}


/* RESPONSIVE */
@media (max-width: 1024px) {

    .hybrid-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hybrid-container {
        padding: 80px 20px;
    }
}

.hybrid-breadcrumbs span {
    margin-right: 5px;
}

.hybrid-breadcrumbs .active {
    font-weight: bold;
}

nav.hybrid-breadcrumbs span a {
    color: #A9A8AE;
    text-decoration: none;
}


/* home page ends */