﻿.psn-rnd-page {
    --psn-primary: #0000fe;
    --psn-primary-dark: #0000b8;
    --psn-primary-light: #4d4dff;
    --psn-dark: #080b16;
    --psn-dark-soft: #111526;
    --psn-text: #252a38;
    --psn-muted: #6d7280;
    --psn-light: #f5f7fb;
    --psn-white: #ffffff;
    --psn-border: rgba(12, 18, 40, 0.09);
    --psn-radius-sm: 14px;
    --psn-radius-md: 22px;
    --psn-radius-lg: 32px;
    --psn-shadow: 0 22px 60px rgba(10, 16, 40, 0.09);
    --psn-shadow-hover: 0 30px 80px rgba(0, 0, 254, 0.16);
    direction: rtl;
    width: 100%;
    overflow: hidden;
    color: var(--psn-text);
    background: var(--psn-white);
    line-height: 2;
    margin-top: -8px
}

    .psn-rnd-page *,
    .psn-rnd-page *::before,
    .psn-rnd-page *::after {
        box-sizing: border-box;
    }

    .psn-rnd-page img {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .psn-rnd-page a {
        color: inherit;
        text-decoration: none;
    }

    .psn-rnd-page h1,
    .psn-rnd-page h2,
    .psn-rnd-page h3,
    .psn-rnd-page h4,
    .psn-rnd-page p {
        margin-top: 0;
    }

.psn-rnd-container {
    width: min(1320px, calc(100% - 130px));
    margin-inline: auto;
}

.psn-rnd-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    /*background: #080b16;*/
    background: radial-gradient(circle at 18% 18%,rgba(31,81,255,.55),transparent 28%),linear-gradient(135deg,rgba(7,10,26,.92),rgba(8,15,48,.86))
}

.psn-rnd-hero__image {
    position: absolute;
    inset: 0;
    z-index: -3;
}

    .psn-rnd-hero__image img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.03);
        animation: psnHeroZoom 14s ease-in-out infinite alternate;
    }

.psn-rnd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    /*background: linear-gradient( 90deg, rgba(4, 7, 18, 0.2) 0%, rgba(4, 7, 18, 0.65) 50%, rgba(4, 7, 18, 0.96) 100% );*/
    background: linear-gradient(90deg,rgba(0,0,254,.28),rgba(0,0,0,.45) 46%,rgba(0,0,0,.10));
}

.psn-rnd-hero::after {
    /*content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: radial-gradient( circle at 20% 20%, rgba(0, 0, 254, 0.35), transparent 38% ), linear-gradient( 180deg, transparent 50%, rgba(4, 7, 18, 0.72) 100% );*/
    content: "PSN";
    position: absolute;
    left: -20px;
    bottom: -120px;
    font-size: 17rem;
    font-weight: 900;
    letter-spacing: -18px;
    color: rgba(255,255,255,.045);
    z-index: -1
}

.psn-rnd-hero__content {
    padding-block: 150px 130px;
    color: var(--psn-white);
}

.psn-rnd-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.88rem;
    font-weight: 600;
}

    .psn-rnd-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #5d5dff;
        box-shadow: 0 0 0 7px rgba(93, 93, 255, 0.18);
    }

.psn-rnd-hero h1 {
    max-width: 920px;
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4.5vw, 5.0rem);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--psn-white)
}

    .psn-rnd-hero h1 span {
        color: #7777ff;
    }

.psn-rnd-hero__description {
    max-width: 760px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    line-height: 2.1;
}

.psn-rnd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.psn-rnd-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    font-weight: 700;
}

    .psn-rnd-btn:hover {
        transform: translateY(-3px);
    }

.psn-rnd-btn--primary {
    background: var(--psn-primary);
    color: var(--psn-white) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 254, 0.3);
}

.psn-rnd-btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--psn-white) !important;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

@keyframes psnHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.1);
    }
}

/* =========================
       QUICK NAVIGATION
    ========================== */

.psn-rnd-quick-nav {
    position: relative;
    z-index: 5;
    margin-top: -40px;
}

.psn-rnd-quick-nav__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--psn-white);
    border: 1px solid var(--psn-border);
    border-radius: var(--psn-radius-md);
    box-shadow: var(--psn-shadow);
    overflow: hidden;
}

.psn-rnd-quick-item {
    position: relative;
    min-height: 130px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 25px;
    border-left: 1px solid var(--psn-border);
    transition: transform 0.35s ease, background 0.35s ease;
}

    .psn-rnd-quick-item:last-child {
        border-left: 0;
    }

    .psn-rnd-quick-item::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: var(--psn-primary);
        transition: width 0.4s ease;
    }

    .psn-rnd-quick-item:hover {
        background: #f8f8ff;
    }

        .psn-rnd-quick-item:hover::after {
            width: 100%;
        }

.psn-rnd-quick-item__number {
    flex: 0 0 auto;
    color: rgba(0, 0, 254, 0.15);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 900;
}

.psn-rnd-quick-item h3 {
    margin-bottom: 4px;
    color: var(--psn-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 800;
}

.psn-rnd-quick-item span {
    display: block;
    color: var(--psn-muted);
    font-size: 0.8rem;
}

/* =========================
       GENERAL SECTION
    ========================== */

.psn-rnd-section {
    position: relative;
    padding-block: 115px;
}

.psn-rnd-section--soft {
    background: radial-gradient( circle at 10% 10%, rgba(0, 0, 254, 0.04), transparent 30% ), var(--psn-light);
}

.psn-rnd-section--dark {
    color: var(--psn-white);
    background: radial-gradient( circle at 10% 10%, rgba(0, 0, 254, 0.4), transparent 35% ), linear-gradient(135deg, #070914, #11162a);
}

.psn-rnd-section-header {
    max-width: 820px;
    margin-bottom: 50px;
}

.psn-rnd-section-header--center {
    margin-inline: auto;
    text-align: center;
    border-radius: 8px;
    padding: 10px
}

.psn-rnd-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--psn-primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

    .psn-rnd-section-label::before {
        content: "";
        width: 34px;
        height: 3px;
        border-radius: 10px;
        background: var(--psn-primary);
    }

.psn-rnd-section--dark .psn-rnd-section-label {
    color: #8b8bff;
}

.psn-rnd-section-title {
    margin-bottom: 18px;
    color: var(--psn-dark);
    font-size: clamp(1.9rem, 2.5vw, 3.35rem);
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: -1px;
}

.psn-rnd-section--dark .psn-rnd-section-title {
    color: var(--psn-dark);
}

.psn-rnd-section-desc {
    margin-bottom: 0;
    color: var(--psn-muted);
    font-size: 1.03rem;
    line-height: 2.15;
}

.psn-rnd-section--dark .psn-rnd-section-desc {
    color: rgba(255, 255, 255, 0.68);
}

/* =========================
       INTRO SPLIT
    ========================== */

.psn-rnd-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 70px;
}

.psn-rnd-split--reverse .psn-rnd-split__media {
    order: 2;
}

.psn-rnd-split__media {
    position: relative;
}

.psn-rnd-split__image {
    position: relative;
    min-height: 580px;
    border-radius: var(--psn-radius-lg);
    overflow: hidden;
    box-shadow: var(--psn-shadow);
}

    .psn-rnd-split__image img {
        height: 100%;
        min-height: 580px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .psn-rnd-split__image:hover img {
        transform: scale(1.055);
    }

    .psn-rnd-split__image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, transparent 55%, rgba(0, 0, 30, 0.65) );
        pointer-events: none;
    }

.psn-rnd-floating-card {
    position: absolute;
    right: -35px;
    bottom: 38px;
    z-index: 2;
    width: min(290px, 75%);
    padding: 24px;
    border-radius: 20px;
    color: var(--psn-white);
    background: var(--psn-primary);
    box-shadow: 0 25px 55px rgba(0, 0, 254, 0.3);
}

    .psn-rnd-floating-card strong {
        display: block;
        margin-bottom: 7px;
        font-size: 1.35rem;
        font-weight: 900;
        color: var(--psn-white)
    }

    .psn-rnd-floating-card span {
        display: block;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.87rem;
        line-height: 1.9;
    }

.psn-rnd-content-title {
    margin-bottom: 23px;
    color: var(--psn-dark);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.45;
    font-weight: 900;
}

    .psn-rnd-content-title span {
        color: var(--psn-primary);
    }

.psn-rnd-content-text {
    margin-bottom: 30px;
    color: var(--psn-muted);
    text-align: justify;
    line-height: 2.25;
}

.psn-rnd-highlight {
    position: relative;
    margin-top: 28px;
    padding: 22px 24px 22px 24px;
    border: 1px solid rgba(0, 0, 254, 0.12);
    border-right: 4px solid var(--psn-primary);
    border-radius: 16px;
    color: #3c4150;
    background: #f7f7ff;
}

/* =========================
       PARAMETER CARDS
    ========================== */

.psn-rnd-parameter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.psn-rnd-parameter-card {
    position: relative;
    min-height: 100%;
    padding: 32px 28px;
    border: 1px solid var(--psn-border);
    border-radius: var(--psn-radius-md);
    background: var(--psn-white);
    box-shadow: 0 15px 45px rgba(16, 22, 48, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .psn-rnd-parameter-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, transparent, var(--psn-primary) );
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
    }

    .psn-rnd-parameter-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 0, 254, 0.2);
        box-shadow: var(--psn-shadow-hover);
    }

        .psn-rnd-parameter-card:hover::before {
            transform: scaleX(1);
        }

.psn-rnd-parameter-card__index {
    margin-bottom: 18px;
    color: rgba(0, 0, 254, 0.16);
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 900;
}

.psn-rnd-parameter-card h3 {
    margin-bottom: 20px;
    color: var(--psn-dark);
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 900;
}

.psn-rnd-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .psn-rnd-list li {
        position: relative;
        margin-bottom: 10px;
        padding-right: 22px;
        color: var(--psn-muted);
        font-size: 0.91rem;
        line-height: 1.85;
    }

        .psn-rnd-list li::before {
            content: "";
            position: absolute;
            top: 0.84em;
            right: 0;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--psn-primary);
            box-shadow: 0 0 0 5px rgba(0, 0, 254, 0.08);
        }

.psn-rnd-en {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
    color: #8a8f9c;
    font-size: 0.84em;
}

/* =========================
       ENGINEERING TIMELINE
    ========================== */

.psn-rnd-timeline {
    position: relative;
    max-width: 1050px;
    margin-inline: auto;
}

    .psn-rnd-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        right: 42px;
        bottom: 0;
        width: 2px;
        background: linear-gradient( 180deg, var(--psn-primary), rgba(255, 255, 255, 0.08) );
    }

.psn-rnd-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 26px;
    margin-bottom: 28px;
}

    .psn-rnd-timeline-item:last-child {
        margin-bottom: 0;
    }

.psn-rnd-timeline-number {
    position: relative;
    z-index: 2;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px;
    color: var(--psn-white);
    background: linear-gradient( 145deg, rgba(0, 0, 254, 0.95), rgba(0, 0, 140, 0.95) );
    box-shadow: 0 17px 35px rgba(0, 0, 254, 0.2);
    font-size: 1.15rem;
    font-weight: 900;
}

.psn-rnd-timeline-content {
    padding: 27px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, background 0.35s ease;
}

    .psn-rnd-timeline-content:hover {
        transform: translateX(-8px);
        background: rgba(255, 255, 255, 0.09);
    }

    .psn-rnd-timeline-content h3 {
        margin-bottom: 8px;
        color: var(--psn-white);
        font-size: 1.18rem;
        font-weight: 800;
    }

    .psn-rnd-timeline-content p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.63);
        line-height: 2;
    }

/* =========================
       PROCESS IMAGE SECTION
    ========================== */

.psn-rnd-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 620px;
    background: var(--psn-white);
}

.psn-rnd-feature__image {
    position: relative;
    overflow: hidden;
}

    .psn-rnd-feature__image img {
        height: 100%;
        min-height: 620px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.psn-rnd-feature:hover .psn-rnd-feature__image img {
    transform: scale(1.05);
}

.psn-rnd-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, transparent, rgba(0, 0, 254, 0.18) );
}

.psn-rnd-feature__content {
    display: flex;
    align-items: center;
    padding: clamp(45px, 7vw, 100px);
    background: radial-gradient( circle at 100% 0%, rgba(0, 0, 254, 0.08), transparent 36% ), var(--psn-white);
}

.psn-rnd-feature__content-inner {
    max-width: 620px;
}

.psn-rnd-standard {
    display: inline-flex;
    align-items: center;
    margin-top: 17px;
    padding: 8px 15px;
    border-radius: 10px;
    color: var(--psn-primary);
    background: rgba(0, 0, 254, 0.07);
    font-weight: 800;
}

/* =========================
       MATERIALS COLLAGE
    ========================== */

.psn-rnd-materials {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 65px;
}

.psn-rnd-collage {
}

.psn-rnd-collage__item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--psn-shadow);
}

    .psn-rnd-collage__item:first-child {
    }

    .psn-rnd-collage__item img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.85);
        transition: transform 0.7s ease, filter 0.4s ease;
    }

    .psn-rnd-collage__item:hover img {
        transform: scale(1.07);
        filter: saturate(1.1);
    }

    .psn-rnd-collage__item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, transparent 55%, rgba(0, 0, 50, 0.35) );
    }

/* =========================
       LAB SECTION
    ========================== */

.psn-rnd-lab {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    isolation: isolate;
    color: var(--psn-white);
    overflow: hidden;
}

.psn-rnd-lab__background {
    position: absolute;
    inset: 0;
    z-index: -3;
}

    .psn-rnd-lab__background img {
        height: 100%;
        object-fit: cover;
    }

.psn-rnd-lab::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient( circle at 10% 10%, rgba(0, 0, 254, 0.4), transparent 35% ), linear-gradient(135deg, #070914, #11162a);
}

.psn-rnd-lab::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient( circle at 15% 30%, rgba(0, 0, 254, 0.38), transparent 38% );
}

.psn-rnd-lab__content {
    max-width: 690px;
    padding-block: 100px;
}

    .psn-rnd-lab__content h2 {
        margin-bottom: 22px;
        font-size: clamp(2rem, 4vw, 3.6rem);
        line-height: 1.45;
        font-weight: 900;
        color: var(--psn-white)
    }

    .psn-rnd-lab__content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.03rem;
        line-height: 2.2;
        text-align: justify;
    }

.psn-rnd-lab-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.psn-rnd-lab-stat {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

    .psn-rnd-lab-stat strong {
        display: block;
        margin-bottom: 5px;
        color: #9292ff;
        font-size: 1.02rem;
        font-weight: 800;
    }

    .psn-rnd-lab-stat span {
        color: rgba(255, 255, 255, 0.66);
        font-size: 0.82rem;
    }

/* =========================
       RESPONSIVE
    ========================== */

@media (max-width: 1100px) {
    .psn-rnd-quick-nav__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .psn-rnd-quick-item:nth-child(2) {
        border-left: 0;
    }

    .psn-rnd-quick-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--psn-border);
    }

    .psn-rnd-parameter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .psn-rnd-split {
        gap: 45px;
    }

    .psn-rnd-floating-card {
        right: 20px;
    }
}

@media (max-width: 850px) {
    .psn-rnd-container {
        width: min(100% - 30px, 1320px);
    }

    .psn-rnd-hero {
        min-height: 650px;
    }

    .psn-rnd-hero__content {
        padding-block: 130px 85px;
    }

    .psn-rnd-split,
    .psn-rnd-materials,
    .psn-rnd-feature {
        grid-template-columns: 1fr;
    }

    .psn-rnd-split--reverse .psn-rnd-split__media {
        order: initial;
    }

    .psn-rnd-feature__image img {
        min-height: 450px;
    }

    .psn-rnd-feature__content {
        padding: 65px 25px;
    }

    .psn-rnd-parameter-grid {
        grid-template-columns: 1fr;
    }

    .psn-rnd-split__image,
    .psn-rnd-split__image img {
        min-height: 480px;
    }

    .psn-rnd-lab {
        min-height: 650px;
    }
}

@media (max-width: 600px) {
    .psn-rnd-section {
        padding-block: 75px;
    }

    .psn-rnd-hero {
        min-height: 600px;
        align-items: center;
    }

        .psn-rnd-hero h1 {
            font-size: 2.25rem;
            letter-spacing: -1px;
        }

    .psn-rnd-hero__description {
        font-size: 0.94rem;
    }

    .psn-rnd-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .psn-rnd-btn {
        width: 100%;
    }

    .psn-rnd-quick-nav {
        margin-top: -25px;
    }

    .psn-rnd-quick-nav__inner {
        grid-template-columns: 1fr;
    }

    .psn-rnd-quick-item {
        min-height: 105px;
        border-left: 0;
        border-bottom: 1px solid var(--psn-border);
    }

        .psn-rnd-quick-item:last-child {
            border-bottom: 0;
        }

    .psn-rnd-split__image,
    .psn-rnd-split__image img {
        min-height: 390px;
    }

    .psn-rnd-floating-card {
        right: 14px;
        bottom: 14px;
    }

    .psn-rnd-collage {
    }

    .psn-rnd-collage__item:first-child {
    }

    .psn-rnd-timeline::before {
        right: 28px;
    }

    .psn-rnd-timeline-item {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 15px;
    }

    .psn-rnd-timeline-number {
        width: 58px;
        height: 58px;
        border-radius: 17px;
        font-size: 0.9rem;
    }

    .psn-rnd-timeline-content {
        padding: 21px 18px;
    }

    .psn-rnd-lab-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .psn-rnd-page *,
    .psn-rnd-page *::before,
    .psn-rnd-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.nav-logo .logo-text-container .logo-name, .nav-logo .logo-text-container .logo-sub, .nav-links a, .nav-links a:hover, .btn:hover {
    color: #FFF !important
}

.psn-rnd-list li {
    list-style-type: none
}

@media (min-width:768px) {
    .s-bottom-after {
        position: absolute;
        left: -20px;
        bottom: -150px;
        font-size: 17rem;
        letter-spacing: -18px;
        font-weight: 900;
        color: rgba(255,255,255,.1);
        z-index: -1
    }

    .img-bottom-after {
        position: absolute;
        left: -20px;
        top: 50px;
        z-index: -1;
        max-width: 400px !important;
        height: auto;
        opacity: 0.5
    }
}
