* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f7f2;
    color: #111;
}

header {
    background-color: #11b67a;
    color: #061b12;
    padding: 5px 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    color: #061b12;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

nav a {
    color: #061b12;
    text-decoration: none;
    font-weight: bold;
}

nav span {
    font-weight: bold;
}

button {
    background-color: white;
    color: #004225;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #e9fff4;
}

main {
    margin: 0;
    padding: 0;
}

.hero {
    min-height: 460px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
        url("https://images.unsplash.com/photo-1563013544-824ae1b704d3");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 90px;
    color: white;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 56px;
    margin: 0 0 20px;
    color: white;
}

.hero p {
    font-size: 23px;
    line-height: 1.5;
    color: white;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: white;
    color: #004225;
    padding: 18px 34px;
    font-size: 17px;
}

.atm-tabs {
    width: calc(100% - 180px);
    margin: -45px 0 80px 90px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #11b67a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.atm-tab {
    padding: 30px 26px;
    color: #061b12;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-right: 1px solid rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.atm-tab:last-child {
    border-right: none;
}

.atm-tab:hover {
    background-color: #0ca678;
}

.atm-tab span {
    font-size: 34px;
}

.info-card {
    max-width: 900px;
    margin: 90px auto 80px;
    background-color: #eeeeee;
    border-radius: 24px;
    padding: 70px;
}

.info-card h2 {
    font-size: 38px;
    color: #004225;
    margin-top: 0;
}

.info-card p {
    font-size: 20px;
    line-height: 1.6;
}

.form-card {
    max-width: 430px;
    margin: 70px auto;
    background-color: white;
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.form-card h1 {
    color: #004225;
    margin-top: 0;
}

input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

.form-card button {
    width: 100%;
    background-color: #004225;
    color: white;
    margin-top: 15px;
}

.form-card button:hover {
    background-color: #006b3f;
}

.form-card a {
    color: #004225;
    font-weight: bold;
}

.signup-link {
    margin-top: 18px;
}

.signup-link a {
    color: #004225;
    font-weight: bold;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.balance-box {
    margin-top: 35px;
    background-color: white;
    color: #004225;
    width: 420px;
    padding: 24px 34px;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.balance-box h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #004225;
}

.balance-box p {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
    color: #004225;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.hide-balance-btn {
    background-color: #004225;
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    white-space: nowrap;
}

.hide-balance-btn:hover {
    background-color: #006b3f;
}


.card-page {
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.card-container {
    width: 440px;
    height: 280px;
    perspective: 1200px;
    margin-bottom: 30px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.9s;
    transform-style: preserve-3d;
}

.card-container.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.card-front img,
.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    transform: rotateY(180deg);
}

/* ---------- FRONT TEXT ---------- */

.front-card-number {
    position: absolute;
    left: 46px;
    top: 155px;
    color: #111;
    font-size: 25px;
    letter-spacing: 3px;
    font-weight: bold;
    z-index: 999;
    white-space: nowrap;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

.front-account-number {
    position: absolute;
    left: 150px;
    top: 216px;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    z-index: 999;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

.front-cardholder {
    position: absolute;
    left: 159px;
    top: 249px;
    color: #111;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 999;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

/* ---------- BACK TEXT ---------- */

.back-card-number {
    position: absolute;
    left: 57px;
    top: 189px;
    color: 111;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

.back-expiry {
    position: absolute;
    left: 312px;
    top: 191px;
    color: #111;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

.back-account-number {
    position: absolute;
    left: 145px;
    top: 222px;
    color: #111;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

.back-cvv {
    position: absolute;
    left: 322px;
    top: 222px;
    color: #111;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(79, 255, 137, 0.8);

}

/* ---------- BUTTONS ---------- */

#flipBtn {
    width: 320px;
    background-color: black;
    color: white;
    margin-bottom: 15px;
    border-radius: 12px;
}

#flipBtn:hover {
    background-color: #222;
}

.back-home-btn {
    width: 320px;
    background-color: white;
    border: 2px solid #999;
    color: black;
    border-radius: 12px;
}

.back-home-btn:hover {
    background-color: #ececec;
}


.success-notification {
    background-color: #11b67a;
    color: #061b12;
    padding: 16px 22px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    margin-top: 22px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    width: 236px;
    height: 95px;
    object-fit: contain;
}


.error-notification {
    background-color: #ffdddd;
    color: #8b0000;
    padding: 16px 22px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    margin-top: 22px;
}

.current-balance-card {
    background-color: #e9fff4;
    color: #004225;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

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

.transfer-card {
    max-width: 540px;
}

.transfer-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.transfer-tab-btn {
    flex: 1;
    background-color: #e9fff4;
    color: #004225;
    border-radius: 12px;
    padding: 12px 8px;
    font-size: 12px;
}

.transfer-tab-btn.active {
    background-color: #004225;
    color: white;
}

.transfer-description {
    background-color: #f3f7f2;
    color: #004225;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.hidden {
    display: none;
}

.history-page {
    padding: 60px 20px;
}

.history-card {
    max-width: 900px;
    margin: auto;
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.history-card h1 {
    color: #004225;
    margin-top: 0;
    margin-bottom: 30px;
}

.filter-form {
    margin-bottom: 35px;
}

.filter-form button {
    height: 54px;
    padding: 0 28px;
    margin-top: 34px;
    background-color: #004225;
    color: white;
    border-radius: 12px;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: start;
    margin-bottom: 20px;
}

.filter-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.filter-grid label {
    display: block;
    height: 28px;
    margin-bottom: 6px;
    color: #004225;
    font-weight: bold;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    height: 54px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    line-height: 54px;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.transaction-item {
    background-color: #f3f7f2;
    border-radius: 16px;
    padding: 20px;
}

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

.transaction-type {
    font-size: 20px;
    font-weight: bold;
    color: #004225;
}

.transaction-amount {
    font-size: 22px;
    font-weight: bold;
    color: #11b67a;
}

.transaction-description {
    margin: 12px 0;
    color: #555;
}

.transaction-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
}

.pagination {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.pagination a {
    text-decoration: none;
    color: #004225;
    font-weight: bold;
}

.back-history-btn {
    width: 100%;
    margin-top: 30px;
    background-color: #004225;
    color: white;
}

.no-transactions {
    background-color: #f3f7f2;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: #666;
    font-weight: bold;
}

.filter-grid input,
.filter-grid select {
    margin: 0;
}

.filter-form button {
    margin: 34px 0 0 0;
}


.burger-wrapper {
    position: relative;
    margin-left: 14px;
    margin-right: auto;
}

.burger-btn {
    background-color: transparent;
    color: #061b12;
    font-size: 28px;
    padding: 8px 12px;
}

.burger-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.burger-menu {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 270px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.20);
    overflow: hidden;
    z-index: 9999;
}

.burger-menu a {
    display: flex;
    justify-content: space-between;
    padding: 16px 18px;
    color: #004225;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #e8e8e8;
}

.burger-menu a:hover {
    background-color: #e9fff4;
}

.show-burger-menu {
    display: block;
}

.support-section {
    padding: 75px 90px 80px;
    margin-top: 0;
    text-align: center;
}

.support-title {
    font-size: 42px;
    margin: 0 0 34px;
    color: #111;
    font-weight: bold;
}

.support-card {
    background-color: #11b67a;
    border-radius: 20px;
    padding: 34px 42px;
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

.support-icon-box {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: #e9fff4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    margin: 0 0 8px;
    font-size: 32px;
    color: #061b12;
}

.support-text p {
    margin: 0;
    font-size: 18px;
    color: #061b12;
    line-height: 1.5;
}

.support-btn {
    border: 2px solid #061b12;
    color: #061b12;
    text-decoration: none;
    font-weight: bold;
    padding: 16px 34px;
    border-radius: 12px;
    white-space: nowrap;
    transition: 0.25s;
}

.support-btn:hover {
    background-color: #061b12;
    color: white;
}

/* scroll animation */
.reveal-section,
.reveal-card {
    opacity: 0;
    transform: translateY(55px);
    transition: 0.8s ease;
}

.reveal-section.show,
.reveal-card.show {
    opacity: 1;
    transform: translateY(0);
}


.quick-help-section {
    padding: 0 90px 35px;
    margin-top: -15px;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quick-help-card {
    background-color: white;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    border: 1px solid #e7eee9;
    transform: translateY(60px);
    opacity: 0;
    transition: 0.8s ease;
}

.quick-help-card.show {
    transform: translateY(0);
    opacity: 1;
}

.quick-help-card:nth-child(2) {
    transition-delay: 0.12s;
}

.quick-help-card:nth-child(3) {
    transition-delay: 0.24s;
}

.quick-help-icon {
    width: 58px;
    height: 58px;
    background-color: #e9fff4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.quick-help-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #004225;
}

.quick-help-card p {
    margin: 0 0 22px;
    color: #444;
    line-height: 1.5;
    font-size: 16px;
}

.quick-help-card a {
    color: #004225;
    font-weight: bold;
    text-decoration: none;
}

.quick-help-card a:hover {
    text-decoration: underline;
}


.hero {
    position: relative;
    overflow: hidden;
}

.floating-card-hero {
    position: absolute;
    right: 95px;
    top: 120px;
    width: 380px;
    height: 240px;
    perspective: 1200px;
    z-index: 2;
}

.floating-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 24px;
    transform-style: preserve-3d;
    animation: floatCard 3s ease-in-out infinite, rotateCard 8s linear infinite;
}

.floating-card-inner img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.floating-card-hero:hover .floating-card-inner {
    animation-play-state: paused;
    transform: rotateY(12deg) rotateX(8deg) translateY(-8px);
}
.floating-card-front,
.floating-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    backface-visibility: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        0 0 45px rgba(18, 184, 134, 0.35);
}

.floating-card-front {
    transform: rotateY(0deg);
}

.floating-card-back {
    transform: rotateY(180deg);
}



























@keyframes floatCard {
    0% {
        translate: 0 0;
    }

    50% {
        translate: 0 -18px;
    }

    100% {
        translate: 0 0;
    }
}

@keyframes rotateCard {
    0% {
        transform: rotateY(0deg) rotateX(8deg) rotateZ(-7deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(8deg) rotateZ(-7deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(8deg) rotateZ(-7deg);
    }

}




.floating-card-front,
.floating-card-back {
    position: absolute;
    inset: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 24px;
    backface-visibility: hidden;
}

.floating-card-front {
    transform: translateZ(3px);
}

.floating-card-back {
    transform: rotateY(180deg) translateZ(3px);
}

.floating-card-edge {
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 80%;
    border-radius: 24px;
    background: #063d27;
    transform: translateZ(0);
}




/* chatbot */
#chatbot-toggle {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: #004225;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(224, 68, 134, 0.35);
    
}

#chatbot-box {
    position: fixed;
    right: 28px;
    bottom: 115px;
    width: 360px;
    height: 520px;
    background: white;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    border: 1px solid rgba(0,0,0,0.08);
}

#chatbot-header {
    background: #004225;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

#chatbot-header button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    font-size: 32px !important;
}

#chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    font-size: 14px;
    background: #fafafa;
}

.bot-message,
.user-message {
    padding: 11px 13px;
    margin-bottom: 10px;
    border-radius: 16px;
    max-width: 82%;
    line-height: 1.5;
}

.bot-message {
    background: white;
    color: #111;
    border: 1px solid #eee;
}

.user-message {
    background: #004225;
    color: white;
    margin-left: auto;
}

.bot-message button {
    border: none;
    border-radius: 999px;
    padding: 9px 16px;
    margin: 4px;
    background: #f3f3f3;
    cursor: pointer;
    font-weight: 600;
}

#chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: white;
    border-top: 1px solid #eee;
}

#chatbot-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 12px 14px;
    outline: none;
}

#chatbot-send {
    border: none;
    border-radius: 999px;
    background: #004225;
    color: white;
    padding: 0 18px;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 480px) {
    #chatbot-box {
        right: 15px;
        left: 15px;
        width: auto;
        height: 500px;
    }

    #chatbot-toggle {
        right: 20px;
        bottom: 20px;
    }
}

.rtl-message {
    direction: rtl;
    text-align: right;
}

.ltr-message {
    direction: ltr;
    text-align: left;
}

.ltr-name {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}


#chatbot-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    animation: chatbot-bounce 3s ease-in-out infinite;
}

#chatbot-toggle::before {
    content: "💬";
    display: block;
    transform: translateY(-1px);
}

#chatbot-toggle {
    font-size: 0 !important;
}

#chatbot-toggle::before {
    font-size: 34px !important;
}

@keyframes chatbot-bounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(1);
    }

    85% {
        transform: translateY(-8px) scale(1.03);
    }

    90% {
        transform: translateY(0) scale(1);
    }

    95% {
        transform: translateY(-4px) scale(1.01);
    }
}



#chatbot-toggle.chatbot-seen {
    animation: none !important;
}



.market-section {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 90px 20px 0;
    overflow: hidden;
}

.market-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.market-content p {
    max-width: 720px;
    margin: 0 auto 34px;
    font-size: clamp(16px, 1.7vw, 24px);
    line-height: 1.45;
    font-weight: 500;
    opacity: 0.82;
}

.market-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.market-btn:hover {
    transform: translateY(-4px) scale(1.04);
    background: #f3f3f3;
    box-shadow: 0 18px 45px rgba(255, 255, 255, 0.22);
}

.market-video-wrap {
    margin-top: 85px;
    width: 100%;
}

.market-video {
    width: min(50%, 1000px);
    display: block;
    margin: 0 auto;
}



/* PLANS SECTION */

.plans-section {
    background: #111817;
    padding: 90px 70px 170px;
    overflow: hidden;
}

.plans-content h2 {
    color: #fff;
    font-size: 38px;
    line-height: 1;
    margin: 0 0 14px;
    text-align: center;
    
}

.plans-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    margin: 0 0 60px;
    text-align: center;
}

.plans-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
}

.plan-card {
    width: 310px;
    min-height: 250px;
    background: #f4f7f3;
    border-radius: 26px;
    padding: 28px;
    text-align: center;

    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        box-shadow 0.3s ease;
}

.plans-section.active .plan-card {
    opacity: 1;
    transform: translateY(0);
}

.plans-section.active .plan-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 45px rgba(0,0,0,0.32);
}

.plan-card h3 {
    color: #111817;
    font-size: 28px;
    margin: 0 0 8px;
}

.plan-card:nth-child(1) h3 {
    color: #000000;
}

.plan-card:nth-child(2) h3 {
    color: #949495;
}

.plan-card:nth-child(3) h3 {
    color: #c8a120;
}

.plan-price {
    display: block;
    color: #111817;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.plan-card p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.plan-card a {
    display: inline-block;
    background: #111817;
    color: white;
    text-decoration: none;
    padding: 11px 19px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .plans-section {
        padding: 70px 22px 130px;
    }

    .plans-content h2 {
        font-size: 42px;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 330px;
    }
}


.market-video-wrap {
    transition:
        opacity 1.3s ease,
        transform 1.3s ease;
}


