/* =========================================================
   SI-NARA - HOME
   Compatible dengan home.blade.php
========================================================= */

:root {
    --orange: #f36f21;
    --orange-dark: #d95712;
    --orange-light: #fff1e8;
    --orange-soft: #fff8f3;

    --navy: #17253d;
    --navy-dark: #101b2e;

    --text: #273247;
    --text-soft: #687386;
    --muted: #9aa3b2;

    --white: #ffffff;
    --background: #f8f9fb;
    --border: #e8ebf0;

    --green: #20a36a;
    --green-soft: #eaf8f1;

    --blue: #3976e8;
    --blue-soft: #edf3ff;

    --red: #e45555;
    --red-soft: #fff0f0;

    --shadow-sm: 0 4px 18px rgba(25, 35, 55, .06);
    --shadow: 0 15px 45px rgba(25, 35, 55, .10);
    --shadow-orange: 0 15px 35px rgba(243, 111, 33, .20);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(232, 235, 240, .9);
}

.main-navbar .container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.brand-logo {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--white)
        );

    border-radius: 12px;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .23);

    font-size: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    color: var(--navy);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: -.3px;
}

.brand-text small {
    display: block;

    margin-top: 5px;

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 500;
}


/* NAV MENU */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.nav-menu > a:not(.nav-button) {
    position: relative;

    padding: 27px 0;

    color: #626c7e;

    font-size: 13px;
    font-weight: 600;

    transition: .2s ease;
}

.nav-menu > a:not(.nav-button):hover {
    color: var(--orange);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    color: white !important;

    background: var(--orange);

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .17);

    transition: .2s ease;
}

.nav-button:hover {
    color: white;

    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(243, 111, 33, .25);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #ffffff 53%,
            #fff7f1 100%
        );
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -300px;

    border-radius: 50%;

    background: rgba(243, 111, 33, .055);
}

.hero-section .container {
    position: relative;
    z-index: 2;

    padding: 80px 0;
}


/* HERO LABEL */

.hero-label {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    color: #bb4e0e;

    background: var(--orange-light);

    border: 1px solid #ffe0cf;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;
}


/* HERO TITLE */

.hero-section h1 {
    max-width: 650px;

    margin-top: 22px;

    color: var(--navy);

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2.7px;

    font-weight: 800;
}

.hero-section h1 span {
    color: var(--orange);
}


/* HERO DESCRIPTION */

.hero-section p {
    max-width: 560px;

    margin-top: 22px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.8;
}


/* HERO ACTIONS */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 30px;
}

.btn-primary-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 20px;

    color: white;

    background: var(--orange);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .17);

    transition: .2s ease;
}

.btn-primary-orange:hover {
    color: white;

    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(243, 111, 33, .25);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 20px;

    color: var(--navy);

    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: .2s ease;
}

.btn-outline-dark:hover {
    color: var(--orange);

    border-color: #f4c4a7;

    background: var(--orange-soft);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;

    width: 410px;
    height: 410px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(243, 111, 33, .12),
            rgba(243, 111, 33, .035) 65%,
            transparent 66%
        );
}


/* MAIN HERO CARD */

.hero-card.main {
    position: relative;
    z-index: 2;

    width: min(100%, 330px);

    min-height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 35px;

    background: rgba(255, 255, 255, .97);

    border: 1px solid rgba(226, 230, 236, .9);

    border-radius: 23px;

    box-shadow:
        0 28px 65px rgba(28, 39, 58, .12);

    text-align: center;
}

.hero-card.main > i {
    width: 75px;
    height: 75px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--white)
        );

    border-radius: 20px;

    font-size: 36px;

    box-shadow:
        0 12px 25px rgba(243, 111, 33, .22);

    margin-bottom: 20px;
}

.hero-card.main strong {
    color: var(--navy);

    font-size: 25px;
    font-weight: 800;
}

.hero-card.main > span {
    margin-top: 5px;

    color: var(--text-soft);

    font-size: 11px;
}


/* FLOATING CARD */

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;

    box-shadow: var(--shadow);

    animation: floating 4s ease-in-out infinite;
}

.floating-card i {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: white;

    background: var(--orange);

    border-radius: 10px;

    font-size: 15px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--navy);

    font-size: 11px;
}

.floating-card small {
    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}

.card-one {
    left: -15px;
    bottom: 45px;

    min-width: 215px;
}

.card-two {
    right: -10px;
    top: 55px;

    min-width: 190px;

    animation-delay: -2s;
}

.card-two i {
    color: var(--blue);

    background: var(--blue-soft);
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   STATISTICS
========================================================= */

/* Sesuaikan background-color statistik agar konsisten dengan halaman */
.statistics-section {
    background-color: #f8f9fa; /* atau warna abu-abu lembut sesuai tema */
    padding: 20px 0;
    margin-top: -40px; /* Tarik sedikit ke atas agar floating card masuk mulus */
    position: relative;
    z-index: 5;
}

/* Hilangkan pemisah background pada wrapper/card jika ada */
.statistics-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.stat-item {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 20px 23px;

    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item > span {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--orange);

    background: var(--orange-light);

    border-radius: 11px;

    font-size: 18px;
}

.stat-item:nth-child(2) > span {
    color: var(--blue);
    background: var(--blue-soft);
}

.stat-item:nth-child(3) > span {
    color: var(--green);
    background: var(--green-soft);
}

.stat-item:nth-child(4) > span {
    color: #8757d8;
    background: #f3edff;
}

.stat-item strong,
.stat-item small {
    display: block;
}

.stat-item strong {
    color: var(--navy);

    font-size: 20px;
    font-weight: 800;

    line-height: 1.1;
}

.stat-item small {
    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   CALENDAR SECTION
========================================================= */

.calendar-section {
    padding: 105px 0;

    background: var(--background);
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.section-label {
    display: inline-flex;
    align-items: center;

    color: var(--orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.section-top h2,
.section-center h2 {
    margin-top: 10px;

    color: var(--navy);

    font-size: clamp(30px, 3vw, 40px);

    line-height: 1.18;

    letter-spacing: -1.4px;

    font-weight: 800;
}

.section-top p,
.section-center p {
    margin-top: 8px;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.75;
}


/* CALENDAR CARD */

.calendar-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    padding: 22px;
}

.calendar-legend {
    display: flex;
    align-items: center;

    justify-content: flex-end;

    gap: 18px;

    margin-bottom: 15px;

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 600;
}

.calendar-legend span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.calendar-legend i {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;
}

.calendar-legend .available {
    background: var(--green);
}

.calendar-legend .pending {
    background: var(--orange);
}

.calendar-legend .scheduled {
    background: var(--blue);
}


/* =========================================================
   FULLCALENDAR
========================================================= */

#speakerCalendar {
    width: 100%;
}

.fc {
    font-family: inherit !important;

    color: var(--text);
}

.fc .fc-toolbar {
    margin-bottom: 20px;
}

.fc .fc-toolbar-title {
    color: var(--navy);

    font-size: 19px;
    font-weight: 800;

    letter-spacing: -.4px;
}

.fc .fc-button {
    color: var(--navy);

    background: white;

    border: 1px solid var(--border);

    box-shadow: none;

    font-size: 11px;
    font-weight: 600;
}

.fc .fc-button:hover,
.fc .fc-button:focus {
    color: var(--orange);

    background: var(--orange-soft);

    border-color: #f4c4a7;

    box-shadow: none;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    color: white;

    background: var(--orange);

    border-color: var(--orange);
}

.fc .fc-daygrid-day {
    min-height: 105px;

    transition: .15s;
}

.fc .fc-daygrid-day:hover {
    background: var(--orange-soft);
}

.fc .fc-col-header-cell {
    padding: 10px 0;

    background: #fafbfc;

    border-color: var(--border);
}

.fc .fc-col-header-cell-cushion {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
}

.fc .fc-daygrid-day-number {
    color: var(--text-soft);

    padding: 8px;

    font-size: 10px;
    font-weight: 600;
}

.fc .fc-day-today {
    background: rgba(243, 111, 33, .055) !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    color: white;

    background: var(--orange);

    border-radius: 7px;

    padding: 4px 7px;

    margin: 5px;
}

.fc .fc-event {
    border: 0;

    border-radius: 6px;

    padding: 3px 5px;

    background: var(--orange);

    font-size: 9px;

    cursor: pointer;
}

.fc .fc-event:hover {
    background: var(--orange-dark);
}

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: var(--border);
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
    padding: 105px 0;

    background: white;
}

.section-center {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.process-item {
    position: relative;

    padding: 25px 20px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: white;

    transition: .25s ease;
}

.process-item:hover {
    transform: translateY(-5px);

    border-color: #f6c4a5;

    box-shadow: var(--shadow);
}

.process-number {
    color: #d9dde4;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .5px;
}

.process-item > i {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 11px auto 17px;

    color: var(--orange);

    background: var(--orange-light);

    border: 1px solid #ffe1d0;

    border-radius: 16px;

    font-size: 21px;
}

.process-item h3 {
    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.process-item p {
    margin-top: 8px;

    color: var(--text-soft);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #e85f14
        );
}

.cta-section::before,
.cta-section::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255, 255, 255, .13);

    border-radius: 50%;
}

.cta-section::before {
    width: 550px;
    height: 550px;

    right: -250px;
    top: -280px;
}

.cta-section::after {
    width: 350px;
    height: 350px;

    right: -120px;
    top: -180px;
}

.cta-card {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.cta-card > div:first-child {
    max-width: 650px;
}

.cta-card span {
    color: rgba(255, 255, 255, .72);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.cta-card h2 {
    margin-top: 8px;

    color: white;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    letter-spacing: -1.5px;

    font-weight: 800;
}

.cta-card p {
    margin-top: 10px;

    color: rgba(255, 255, 255, .72);

    font-size: 12px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    min-height: 48px;

    padding: 0 21px;

    color: var(--orange);

    background: white;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(120, 50, 10, .15);

    transition: .2s ease;
}

.cta-button:hover {
    color: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(120, 50, 10, .20);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    padding: 30px 0;

    color: rgba(255, 255, 255, .65);

    background: var(--navy-dark);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-content strong {
    color: white;

    font-size: 13px;

    font-weight: 800;
}

.footer-content p {
    margin-top: 5px;

    color: rgba(255, 255, 255, .45);

    font-size: 9px;
}

.footer-content small {
    color: rgba(255, 255, 255, .35);

    font-size: 9px;
}


/* =========================================================
   EVENT MODAL
========================================================= */

.event-modal {
    border: 0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(20, 30, 45, .20);
}

.event-modal .modal-header {
    padding: 22px;

    background: var(--navy);

    border: 0;
}

.event-modal .modal-header span {
    color: rgba(255, 255, 255, .55);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.event-modal-title {
    margin-top: 5px;

    color: white;

    font-size: 18px;
    font-weight: 800;
}

.event-modal .btn-close {
    filter: invert(1);

    opacity: .8;
}

.event-modal .modal-body {
    padding: 23px;
}

.event-info {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 13px 0;

    border-bottom: 1px solid var(--border);
}

.event-info > i {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--orange);

    background: var(--orange-light);

    border-radius: 9px;

    font-size: 14px;
}

.event-info small {
    display: block;

    color: var(--muted);

    font-size: 9px;
}

.event-info strong {
    display: block;

    margin-top: 2px;

    color: var(--navy);

    font-size: 11px;
}

.event-topic {
    margin-top: 18px;

    padding: 15px;

    background: var(--background);

    border-radius: 11px;
}

.event-topic small {
    color: var(--muted);

    font-size: 9px;
    font-weight: 700;
}

.event-modal-topic {
    margin-top: 5px;

    color: var(--navy);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 18px;
    }

    .hero-section .container {
        padding: 65px 0;
    }

    .hero-section h1 {
        font-size: 48px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistics-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
}


@media (max-width: 800px) {

    .main-navbar .container {
        min-height: 68px;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-section .container {
        padding: 60px 0 80px;
    }

    .hero-section .row {
        text-align: center;
    }

    .hero-section h1 {
        margin-left: auto;
        margin-right: auto;

        font-size: 44px;
    }

    .hero-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 30px;

        min-height: 390px;
    }

    .statistics-section {
        margin-top: -25px;
    }

    .section-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-top .btn-primary-orange {
        align-self: flex-start;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .brand-text strong {
        font-size: 13px;
    }

    .brand-text small {
        font-size: 9px;
    }

    .hero-section .container {
        padding: 45px 0 65px;
    }

    .hero-section h1 {
        font-size: 37px;

        letter-spacing: -1.7px;
    }

    .hero-section p {
        font-size: 12px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-circle {
        width: 310px;
        height: 310px;
    }

    .hero-card.main {
        width: 280px;

        min-height: 220px;

        padding: 25px;
    }

    .hero-card.main > i {
        width: 62px;
        height: 62px;

        font-size: 29px;
    }

    .hero-card.main strong {
        font-size: 21px;
    }

    .card-one {
        left: -5px;
        bottom: 5px;

        min-width: 175px;

        transform: scale(.82);

        transform-origin: left bottom;
    }

    .card-two {
        right: -5px;
        top: 10px;

        min-width: 165px;

        transform: scale(.78);

        transform-origin: right top;
    }

    .statistics-card {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 14px;

        gap: 8px;
    }

    .stat-item > span {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }

    .stat-item strong {
        font-size: 17px;
    }

    .stat-item small {
        font-size: 8px;
    }

    .calendar-section,
    .process-section {
        padding: 75px 0;
    }

    .calendar-card {
        padding: 10px;
    }

    .calendar-legend {
        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 10px;

        padding: 5px;
    }

    .fc .fc-toolbar {
        flex-wrap: wrap;

        gap: 8px;
    }

    .fc .fc-toolbar-title {
        font-size: 15px;
    }

    .fc .fc-button {
        font-size: 9px;
    }

    .fc .fc-daygrid-day {
        min-height: 70px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 8px;
    }

    .fc .fc-event {
        font-size: 7px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .section-center {
        margin-bottom: 35px;
    }

    .section-top h2,
    .section-center h2 {
        font-size: 30px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .cta-card h2 {
        font-size: 29px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-content {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 400px) {

    .statistics-card {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .hero-section h1 {
        font-size: 33px;
    }

    .hero-card.main {
        width: 250px;
    }

    .card-one {
        transform: scale(.72);

        transform-origin: left bottom;
    }

    .card-two {
        transform: scale(.68);

        transform-origin: right top;
    }
}