/* =========================================
   STUDY WITH JASMINE
========================================= */

:root {
    --bg: #fffafb;
    --white: #ffffff;

    --text: #44383c;
    --muted: #88777d;

    --pink: #d85f7e;
    --pink-dark: #b94b69;

    --pink-soft: #fff1f4;
    --pink-light: #f7dbe3;

    --cream: #fff6e5;
    --yellow: #fff6e3;
    --green: #eef8ef;
    --blue: #edf6fb;

    --border: #eedfe3;

    --shadow:
        0 14px 35px
        rgba(105, 67, 78, 0.07);

    --radius: 16px;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--bg);
    color: var(--text);

    font-family:
        "DM Sans",
        "Noto Sans SC",
        sans-serif;

    font-size: 14px;
    line-height: 1.75;

    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.85;
}

h1,
h2,
h3 {
    line-height: 1.25;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    min-height: 70px;

    padding: 10px 5vw;

    position: sticky;
    top: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background:
        rgba(255, 250, 251, 0.95);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(14px);
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--pink);

    color: white;

    border-radius: 11px;

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 17px;
    font-weight: 600;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 13px;

    line-height: 1.4;
}

.brand-copy span {
    margin-top: 1px;

    color: var(--muted);

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 8px;

    line-height: 1.5;
}


/* LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 27px;
}

.nav-links a {
    color: #65565b;

    font-size: 11px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.nav-links a:hover {
    color: var(--pink);
}


/* RIGHT SIDE */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.language-switcher {
    padding: 3px;

    display: flex;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 999px;
}

.language-btn {
    padding: 5px 8px;

    background: transparent;
    color: var(--muted);

    border: 0;

    border-radius: 999px;

    cursor: pointer;

    font-size: 9px;
    font-weight: 700;
}

.language-btn.active {
    background: var(--pink);
    color: white;
}

.book-btn {
    padding: 9px 14px;

    background: var(--pink);
    color: white;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.book-btn:hover {
    background: var(--pink-dark);

    transform:
        translateY(-1px);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 610px;

    max-width: 1280px;

    margin: auto;

    padding:
        70px
        7vw
        80px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.95fr);

    align-items: center;

    gap: 80px;
}

.eyebrow,
.section-label {
    display: block;

    margin-bottom: 10px;

    color: var(--pink);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.hero-chinese {
    margin:
        0
        0
        14px;

    color: var(--pink);

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size:
        clamp(
            20px,
            2.2vw,
            27px
        );

    font-weight: 600;

    line-height: 1.5;
}

.hero h1 {
    max-width: 650px;

    margin:
        0
        0
        20px;

    font-size:
        clamp(
            40px,
            4.6vw,
            55px
        );

    line-height: 1.15;

    letter-spacing: -0.035em;
}

.hero h1 span {
    color: var(--pink);
}

.hero-description {
    max-width: 540px;

    margin:
        0
        0
        24px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}


/* SUBJECTS */

.subject-list {
    margin-bottom: 27px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.subject-list span {
    padding: 6px 10px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: #716168;

    font-size: 9px;
    font-weight: 600;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.primary-btn,
.secondary-btn {
    padding: 10px 16px;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform:
        translateY(-2px);
}

.primary-btn {
    background: var(--pink);
    color: white;
}

.secondary-btn {
    background: white;

    border:
        1px solid var(--border);
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-image-area {
    width:
        min(
            100%,
            390px
        );

    margin: auto;

    position: relative;
}

.image-decoration {
    position: absolute;

    inset:
        35px
        -27px
        -23px
        30px;

    background:
        var(--pink-light);

    border-radius:
        44% 56% 48% 52%
        /
        47% 45% 55% 53%;

    transform:
        rotate(5deg);
}

.hero-photo-card {
    padding:
        10px
        10px
        13px;

    position: relative;

    z-index: 2;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow);
}


/*
   Taller photo window.
   This makes Jasmine appear taller/more prominent.
*/

.hero-photo-window {
    width: 100%;

    aspect-ratio:
        4 / 5.35;

    overflow: hidden;

    border-radius: 16px;
}

.hero-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Move crop slightly downward
       to give more space to the person.
    */

    object-position:
        center 57%;
}

.photo-caption {
    padding:
        11px
        6px
        0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.photo-caption > div {
    display: flex;
    flex-direction: column;
}

.photo-caption strong {
    font-size: 11px;
}

.photo-caption span {
    color: var(--muted);

    font-size: 8px;
}

.caption-cn {
    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 12px !important;
}

.floating-note {
    padding: 10px 13px;

    position: absolute;

    left: -35px;
    bottom: 65px;

    z-index: 4;

    display: flex;
    flex-direction: column;

    background: var(--cream);

    border:
        3px solid white;

    border-radius: 13px;

    box-shadow:
        var(--shadow);
}

.floating-note strong {
    color: var(--pink-dark);

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 14px;
}

.floating-note span {
    color: var(--muted);

    font-size: 8px;
}


/* =========================================
   INTRO STRIP
========================================= */

.intro-strip {
    padding: 13px 5vw;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    background: var(--pink);
    color: white;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.03em;
}

.intro-strip i {
    opacity: 0.5;

    font-style: normal;
}


/* =========================================
   GENERAL SECTION
========================================= */

.section {
    padding:
        82px
        8vw;
}

.section-header {
    max-width: 1100px;

    margin:
        0
        auto
        35px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.section-header h2,
.schedule-heading h2,
.about-content h2,
.contact-heading h2 {
    margin: 0;

    font-size:
        clamp(
            27px,
            3vw,
            35px
        );

    line-height: 1.3;

    letter-spacing: -0.025em;
}

.section-header > p {
    max-width: 390px;

    margin: 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================
   CLASSES
========================================= */

.classes-section {
    background: white;
}

.class-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 14px;
}


/*
   IMPORTANT:
   compact cards, not huge boxes.
*/

.class-card {
    min-height: 225px;

    padding: 19px;

    display: flex;
    flex-direction: column;

    border:
        1px solid
        rgba(100, 70, 80, 0.07);

    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.class-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        var(--shadow);
}

.pink-card {
    background: #fff0f4;
}

.yellow-card {
    background: #fff6e3;
}

.green-card {
    background: #eef8ef;
}

.blue-card {
    background: #eef7fb;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.card-number {
    color:
        rgba(68, 56, 60, 0.4);

    font-size: 8px;
    font-weight: 700;
}

.card-symbol {
    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 21px;
    font-weight: 600;
}

.class-card h3 {
    margin:
        0
        0
        8px;

    font-size: 14px;

    line-height: 1.5;
}

.class-card > p {
    margin:
        0
        0
        18px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.9;
}

.tags {
    margin-top: auto;

    padding-top: 12px;

    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    border-top:
        1px solid
        rgba(80, 50, 60, 0.08);
}

.tags span {
    padding: 4px 7px;

    background:
        rgba(255, 255, 255, 0.72);

    border-radius: 999px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 600;
}


/* =========================================
   SCHEDULE
========================================= */

.schedule-section {
    padding:
        82px
        8vw;

    background:
        var(--pink-soft);
}

.schedule-heading {
    max-width: 620px;

    margin:
        0
        auto
        32px;

    text-align: center;
}

.schedule-heading p {
    margin:
        10px
        auto
        0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;
}

.timezone-badge {
    width: fit-content;

    margin:
        14px
        auto
        0;

    padding: 6px 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 600;
}


/* SCHEDULE TABLE */

.schedule-container {
    width: 100%;
    max-width: 760px;

    margin: auto;

    overflow: hidden;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 12px 30px
        rgba(110, 70, 80, 0.05);
}

.schedule-item {
    min-height: 74px;

    padding:
        14px
        25px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    border-bottom:
        1px solid var(--border);
}

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

.schedule-day {
    display: flex;
    align-items: center;

    gap: 13px;
}

.day-short {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background:
        var(--pink-soft);

    color: var(--pink);

    border-radius: 9px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.04em;
}

.weekend .day-short {
    background: var(--pink);
    color: white;
}

.schedule-day strong {
    font-size: 12px;
    font-weight: 600;

    line-height: 1.8;
}


/*
   TIME IS CENTERED
*/

.schedule-time {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.8;

    letter-spacing: 0.05em;
}


/* =========================================
   RESOURCES
========================================= */

.resources-section {
    background: white;
}

.resource-filters {
    max-width: 1100px;

    margin:
        0
        auto
        22px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.filter-btn {
    padding: 7px 11px;

    background: var(--bg);
    color: var(--muted);

    border:
        1px solid var(--border);

    border-radius: 999px;

    cursor: pointer;

    font-size: 8px;
    font-weight: 700;
}

.filter-btn.active {
    background: var(--pink);
    color: white;

    border-color: var(--pink);
}


/* RESOURCE CARDS */

.resource-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 14px;
}

.resource-card {
    overflow: hidden;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.resource-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        var(--shadow);
}

.resource-card.hidden {
    display: none;
}

.resource-cover {
    min-height: 135px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pink-cover {
    background: #ffedf2;
}

.yellow-cover {
    background: #fff5df;
}

.green-cover {
    background: #eef8ef;
}

.blue-cover {
    background: #edf7fb;
}

.resource-cover strong {
    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 22px;

    line-height: 1.5;
}

.resource-cover span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;
}

.resource-info {
    min-height: 150px;

    padding: 16px;

    display: flex;
    flex-direction: column;
}

.resource-category {
    color: var(--pink);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.11em;
}

.resource-info h3 {
    margin:
        8px
        0
        5px;

    font-size: 12px;

    line-height: 1.5;
}

.resource-info p {
    margin:
        0
        0
        13px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.8;
}

.resource-info a {
    margin-top: auto;

    color: var(--pink);

    font-size: 8px;
    font-weight: 700;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    padding:
        88px
        10vw;

    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.2fr);

    align-items: center;

    gap: 80px;

    background: var(--cream);
}

.about-photo-wrapper {
    max-width: 350px;

    position: relative;
}

.about-shape {
    position: absolute;

    inset:
        24px
        -24px
        -24px
        24px;

    background:
        var(--pink-light);

    border-radius: 26px;
}

.about-photo {
    width: 100%;

    aspect-ratio:
        4 / 5.2;

    position: relative;

    display: block;

    object-fit: cover;
    object-position: center 57%;

    border:
        7px solid white;

    border-radius: 24px;

    box-shadow:
        var(--shadow);
}

.about-content {
    max-width: 600px;
}

.about-content p {
    margin:
        14px
        0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.95;
}

.about-points {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 8px;
}

.about-points div {
    padding: 13px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255, 255, 255, 0.62);

    border-radius: 10px;
}

.about-points span {
    margin-bottom: 4px;

    color: var(--pink);

    font-size: 7px;
    font-weight: 700;
}

.about-points strong {
    font-size: 9px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding:
        82px
        9vw;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(400px, 1.1fr);

    align-items: center;

    gap: 70px;

    background: var(--pink);

    color: white;
}

.light-label {
    color:
        rgba(255, 255, 255, 0.72);
}

.contact-heading p {
    max-width: 410px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 11px;

    line-height: 1.9;
}

.contact-form {
    padding: 24px;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;

    background: white;

    color: var(--text);

    border-radius: var(--radius);

    box-shadow:
        0 20px 45px
        rgba(80, 35, 48, 0.14);
}

.contact-form label {
    font-size: 9px;
    font-weight: 700;
}

.contact-form label > span {
    display: block;
}

.contact-form input,
.contact-form select {
    width: 100%;
    height: 40px;

    margin-top: 6px;

    padding:
        0
        10px;

    background: var(--bg);
    color: var(--text);

    border:
        1px solid var(--border);

    border-radius: 8px;

    outline: 0;

    font-size: 9px;
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--pink);
}

.form-submit {
    grid-column:
        1 / -1;

    height: 41px;

    background: var(--pink);
    color: white;

    border: 0;

    border-radius: 8px;

    cursor: pointer;

    font-size: 9px;
    font-weight: 700;
}

.message-result {
    grid-column:
        1 / -1;

    padding: 13px;

    background:
        var(--pink-soft);

    border-radius: 8px;
}

.message-result p {
    margin:
        0
        0
        9px;

    color: var(--muted);

    font-size: 9px;
}

.message-result button {
    padding: 6px 9px;

    background: white;
    color: var(--pink);

    border:
        1px solid var(--border);

    border-radius: 6px;

    cursor: pointer;

    font-size: 8px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding:
        23px
        6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #493a3f;

    color: white;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 10px;
}

.footer-brand span {
    margin-top: 2px;

    color: #cbbdc1;

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 7px;
}

footer p {
    margin: 0;

    color: #cbbdc1;

    font-size: 8px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns:
            1fr;

        gap: 60px;
    }

    .hero-image-area {
        width: 65%;
    }

    .class-grid,
    .resource-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .about-section,
    .contact-section {
        grid-template-columns:
            1fr;
    }

    .about-photo-wrapper {
        width: 65%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    body {
        font-size: 13px;
    }

    .navbar {
        min-height: 62px;

        padding:
            9px
            15px;
    }

    .brand-copy span {
        display: none;
    }

    .brand-copy strong {
        font-size: 11px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .book-btn {
        display: none;
    }

    .language-btn {
        padding:
            5px
            7px;

        font-size: 8px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            60px
            20px
            70px;

        gap: 55px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-image-area {
        width: 84%;
    }

    .floating-note {
        left: -18px;
    }


    /* SECTIONS */

    .section,
    .schedule-section,
    .about-section,
    .contact-section {
        padding:
            65px
            20px;
    }

    .section-header {
        flex-direction: column;

        align-items:
            flex-start;

        gap: 14px;
    }

    .section-header h2,
    .schedule-heading h2,
    .about-content h2,
    .contact-heading h2 {
        font-size: 27px;
    }


    /* CARDS */

    .class-grid,
    .resource-grid,
    .about-points {
        grid-template-columns:
            1fr;
    }

    .class-card {
        min-height: 210px;
    }


    /* SCHEDULE */

    .schedule-item {
        min-height: 72px;

        padding:
            13px
            16px;

        grid-template-columns:
            1fr
            1fr;

        gap: 10px;
    }

    .day-short {
        width: 37px;
        height: 37px;

        font-size: 7px;
    }

    .schedule-day {
        gap: 9px;
    }

    .schedule-day strong {
        font-size: 10px;
    }

    .schedule-time {
        padding: 0;

        justify-content: center;

        font-size: 12px;
    }


    /* ABOUT */

    .about-photo-wrapper {
        width: 82%;
    }


    /* FORM */

    .contact-form {
        grid-template-columns:
            1fr;
    }

    .contact-form > * {
        grid-column:
            1 / -1;
    }


    /* FOOTER */

    footer {
        flex-direction: column;

        align-items:
            flex-start;
    }
}


/* =========================================
   VERY SMALL PHONE
========================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero-image-area {
        width: 90%;
    }

    .schedule-item {
        grid-template-columns:
            1fr;

        gap: 7px;
    }

    .schedule-day {
        justify-content: center;
    }

    .schedule-time {
        justify-content: center;
    }
}
/* =========================================
   SPECIALIZED CHINESE PROGRAMS
========================================= */

.teaching-programs {
    margin-top: 28px;
}

.programs-title {
    margin: 0 0 13px !important;

    color: var(--text) !important;

    font-size: 10px !important;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.program-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px;
}

.program-item {
    min-height: 68px;

    padding: 11px 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    background:
        rgba(255, 255, 255, 0.72);

    border:
        1px solid
        rgba(216, 95, 126, 0.12);

    border-radius: 11px;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.program-item:hover {
    transform: translateY(-2px);

    background: white;

    box-shadow:
        0 9px 22px
        rgba(105, 67, 78, 0.07);
}

.program-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--pink-soft);
    color: var(--pink);

    border-radius: 9px;

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 12px;
    font-weight: 700;
}

.program-item > div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.program-item strong {
    color: var(--text);

    font-size: 9px;
    font-weight: 700;

    line-height: 1.45;
}

.program-item small {
    color: var(--muted);

    font-family:
        "Noto Sans SC",
        sans-serif;

    font-size: 7px;

    line-height: 1.5;
}


/* Make the fifth program look balanced */

.program-item:last-child {
    grid-column: 1 / -1;
}


/* TABLET */

@media (max-width: 1050px) {

    .program-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 650px) {

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

    .program-item:last-child {
        grid-column: auto;
    }

    .program-item {
        min-height: 64px;
    }

}