/* Zamonaviy, mobilga mos CRM sayt uchun CSS */

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 9px;
    background: #f3e8ff;
}

::-webkit-scrollbar-thumb {
    background: #a78bfa;
    border-radius: 6px;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #f6f8fa 60%, #f3e8ff 100%);
    color: #222;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.10);
    transition: background 0.4s;
    backdrop-filter: blur(12px);
    padding: 8px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-header h1 {
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 2.1rem;
    background: linear-gradient(90deg, #38bdf8 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Dark mode toggle button */
#darkModeToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#darkModeToggle:hover {
    transform: scale(1.1);
}

#darkModeToggle.active {
    background: #333;
    color: #fff;
    border-color: #555;
}

.sticky-header nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.sticky-header nav ul li a {
    color: #312e81;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 7px 18px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}

.sticky-header nav ul li a:hover {
    background: #a78bfa22;
    color: #38bdf8;
}

.hero {
    position: relative;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    background: none;
}

.wave-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.94;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-image {
    flex: 1;
    max-width: 440px; /* Resized as per user request */
    text-align: center;
    position: relative;
    aspect-ratio: 4 / 3; /* Guessing a common aspect ratio */
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents image distortion/clipping */
    border-radius: 10px;
    background: transparent;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#hero-image-1 {
    animation: fade-p1 6s infinite;
}

#hero-image-2 {
    animation: fade-p2 6s infinite;
}

@keyframes fade-p1 {
    0% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fade-p2 {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

.hero-image img:hover {
    transform: scale(1.05);
}

.dark-mode .hero-image img {
    background: transparent;
}

.hero-glass {
    position: relative;
    z-index: 1;
    padding: 52px 32px 36px 32px;
    background: rgba(255, 255, 255, 0.27);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.13), 0 1.5px 5px rgba(167, 139, 250, 0.07);
    backdrop-filter: blur(18px);
    border: 1.5px solid rgba(56, 189, 248, 0.13);
    animation: fadeUp 1.1s cubic-bezier(.4, 2, .6, 1) forwards;
}

.hero-glass h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #312e81;
}

.hero-glass p {
    font-size: 1.13rem;
    color: #334155;
    margin-bottom: 22px;
}

.hero .btn {
    background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 12px;
    padding: 13px 40px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(56, 189, 248, 0.12);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hero .btn:hover {
    background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.16);
}

.creative-divider svg {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.services, .features, .about-modern {
    padding: 48px 0 64px 0;
}

.support {
    background: linear-gradient(120deg, #f3e8ff 0%, #f0f4ff 100%);
    padding: 64px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.service-list, .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service, .feature-box {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.10);
    padding: 32px 24px 28px 24px;
    min-width: 220px;
    flex: 1 1 260px;
    max-width: 320px;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.service:hover, .feature-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 36px rgba(56, 189, 248, 0.18);
}

.dark-mode .service:hover, .dark-mode .feature-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.service h4, .feature-box h4 {
    color: #2563eb;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.service p, .feature-box p {
    color: #374151;
    font-size: 1.03rem;
    margin-bottom: 0;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #a78bfa;
}

.about-modern {
    background: linear-gradient(135deg, #f0f4ff 60%, #e0e7ff 100%);
    padding: 48px 0 64px 0;
    display: flex;
    justify-content: center;
}

.about-glass-card {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(56, 189, 248, 0.12), 0 1.5px 8px 0 rgba(49, 46, 129, 0.08);
    border-radius: 24px;
    padding: 40px 36px 36px 36px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(168, 139, 250, 0.12);
}

.about-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #38bdf8;
}

.about-title {
    font-size: 2rem;
    color: #312e81;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.about-desc {
    font-size: 1.12rem;
    color: #374151;
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    font-size: 1.04rem;
    color: #2563eb;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 18px;
    position: relative;
}

.about-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
}

.support-container {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.12), 0 1.5px 8px rgba(49, 46, 129, 0.08);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(168, 139, 250, 0.12);
    padding: 48px 40px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.support h3 {
    font-size: 2rem;
    color: #312e81;
    font-weight: 700;
    margin-bottom: 14px;
}

.support p {
    font-size: 1.12rem;
    color: #374151;
    margin-bottom: 28px;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(90deg, #229ED9 0%, #1DA1F2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 12px;
    padding: 13px 30px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(34, 158, 217, 0.2);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.support-btn:hover {
    background: linear-gradient(90deg, #1DA1F2 0%, #229ED9 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(34, 158, 217, 0.3);
}

.support-btn img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 10px;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 3px 12px rgba(220, 39, 67, 0.2);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.3);
}

.blog-list {
    background: #f8fafc;
    padding: 40px 0 60px 0;
}

.dark-mode .blog-list {
    background: #121212; /* Dark mode uchun blog-list fonini o'zgartiramiz */
}

.blog-list h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: #312e81;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(56, 189, 248, 0.10), 0 1.5px 8px 0 rgba(49, 46, 129, 0.09);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 340px;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px 0 rgba(56, 189, 248, 0.18), 0 3px 16px 0 rgba(49, 46, 129, 0.13);
}

.blog-card-content {
    padding: 28px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card-content .date {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 14px;
}

.blog-card-content p {
    flex: 1;
    color: #374151;
    margin-bottom: 16px;
}

.read-more {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2563eb;
}

.xotira-bargi-section {
    padding: 40px 0 24px 0;
}

#xotira-bargi-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.09);
    padding: 22px 18px 14px 18px;
    margin-bottom: 18px;
}

#xotira-bargi-form input, #xotira-bargi-form textarea {
    font-size: 1.07rem;
    padding: 10px;
    border: 1.2px solid #a78bfa;
    border-radius: 8px;
    outline: none;
    resize: none;
}

#xotira-bargi-form textarea {
    min-height: 80px;
    max-height: 190px;
}

#xotira-bargi-form button {
    background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 12px;
    padding: 13px 0;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

#xotira-bargi-form button:hover {
    background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.16);
}

#xotira-bargi-info {
    margin-top: 10px;
    color: #e11d48;
    font-size: 1rem;
    min-height: 22px;
}

.barg-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.09);
    padding: 18px 16px 10px 16px;
    margin-bottom: 18px;
    position: relative;
}

.barg-card .barg-name {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 6px;
}

.barg-card .barg-date {
    font-size: 0.93rem;
    color: #64748b;
    margin-bottom: 8px;
}

.barg-card .barg-message {
    color: #374151;
    margin-bottom: 8px;
    font-size: 1.08rem;
    white-space: pre-line;
}

.barg-card .delete-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #e11d48;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 4px 10px;
    font-size: 0.96rem;
    cursor: pointer;
    transition: background 0.16s;
}

.barg-card .delete-btn:hover {
    background: #be123c;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #121212;
    color: #e0e0e0;
}

.dark-mode .sticky-header {
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0 6px 24px rgba(200, 200, 200, 0.05);
}

.dark-mode .sticky-header h1 {
    background: linear-gradient(90deg, #58cff8 60%, #b79bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .sticky-header nav ul li a {
    color: #c0c0c0;
}

.dark-mode .sticky-header nav ul li a:hover {
    background: #b79bfa22;
    color: #68dff8;
}

.dark-mode .hero-glass {
    background: rgba(30, 30, 30, 0.27);
    box-shadow: 0 8px 32px rgba(200, 200, 200, 0.07), 0 1.5px 5px rgba(200, 200, 200, 0.04);
    border: 1.5px solid rgba(200, 200, 200, 0.07);
}

.dark-mode .hero-glass h2, .dark-mode .about-title, .dark-mode .blog-list h2 {
    color: #f0f0f0;
}

.dark-mode .hero-glass p, .dark-mode .about-desc {
    color: #b0b0b0;
}

.dark-mode .service, .dark-mode .feature-box, .dark-mode .blog-card, .dark-mode .about-glass-card {
    background: rgba(35, 35, 35, 0.85);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.05);
}

.dark-mode .service:hover, .dark-mode .feature-box:hover, .dark-mode .blog-card:hover {
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.08);
}

.dark-mode .service h4, .dark-mode .feature-box h4, .dark-mode .blog-card-content h3 {
    color: #68dff8;
}

.dark-mode .service p, .dark-mode .feature-box p, .dark-mode .blog-card-content p, .dark-mode .blog-card-content .date {
    color: #b0b0b0;
}

.dark-mode .about-modern {
    background: #1e1e1e;
}

.dark-mode .features, .dark-mode .services, .dark-mode .support {
    background: #121212 !important;
}

.dark-mode .support-container {
    background: #1e1e1e;
}

.dark-mode .support-container h3 {
    color: #f0f0f0;
}

.dark-mode .support-container p {
    color: #b0b0b0;
}

.dark-mode .about-features li {
    color: #68dff8;
}

.dark-mode .about-features li:before {
    background: #68dff8;
}

.dark-mode footer {
    background: #111;
    color: #aaa;
}

.dark-mode footer a, .dark-mode .read-more {
    color: #68dff8;
}

.dark-mode a:hover {
    color: #8ae9ff;
}

footer {
    background: #1e293b;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 30px;
}

footer p {
    margin-top: 0;
}

footer a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #a78bfa;
}

.floating-support-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #229ED9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2s infinite;
}

.floating-support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 36px;
    z-index: 1201;
    background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.16);
    cursor: pointer;
    opacity: 0.92;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.scroll-to-top:hover {
    background: linear-gradient(90deg, #a78bfa 0%, #38bdf8 100%);
    transform: scale(1.11);
}

#three-snake-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .sticky-header nav ul {
        gap: 12px;
    }

    .sticky-header nav ul li a {
        padding: 6px 14px;
        font-size: 1rem;
    }

    .service, .feature-box {
        flex-basis: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-image {
        flex: none;
        width: 90%;
    }


    .sticky-header .container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .sticky-header h1 {
        font-size: 1.8rem;
    }

    .sticky-header nav ul {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        padding: 10px 0;
    }

    .sticky-header nav ul li a {
        padding: 8px 12px;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .hero-glass {
        margin-top: 40px;
        padding: 30px 20px;
        max-width: 90%;
    }

    .hero-glass h2 {
        font-size: 1.9rem;
    }

    .service-list, .features-list, .blog-cards {
        flex-direction: column;
        gap: 20px;
    }

    .service, .feature-box, .blog-card {
        flex-basis: 100%;
        max-width: 100%;
        transform: none !important;
        box-shadow: 0 6px 24px rgba(56, 189, 248, 0.10);
    }

    .about-glass-card {
        padding: 30px 25px;
        max-width: 90%;
    }

    .scroll-to-top, .floating-support-btn {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sticky-header h1 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-glass h2 {
        font-size: 1.7rem;
    }

    .hero-glass p {
        font-size: 1rem;
    }

    .service h4, .feature-box h4, .blog-card-content h3 {
        font-size: 1.1rem;
    }

    .service p, .feature-box p, .blog-card-content p {
        font-size: 0.95rem;
    }

    .sticky-header nav ul {
        gap: 8px;
    }

    .sticky-header nav ul li a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(34, 157, 217, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 0;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(120deg, #38bdf8 0%, #a78bfa 100%);
    opacity: 0.13;
    transition: opacity 0.4s;
}

.feature-box:hover::before {
    opacity: 0.28;
}

.animated {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}
  .youtube-btn {
        background: linear-gradient(45deg, #ff4e4e 0%, #ff1c1c 50%, #cc0000 100%);
        box-shadow: 0 3px 12px rgba(255, 0, 0, 0.2);
        color: white;
    }

    .youtube-btn:hover {
        background: linear-gradient(45deg, #cc0000 0%, #ff1c1c 50%, #ff4e4e 100%);
        box-shadow: 0 6px 24px rgba(255, 0, 0, 0.3);
}

/* Lightbox styles */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10002; /* Higher than header */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#lightbox.hidden {
  opacity: 0;
  pointer-events: none;
}

#lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #bbb;
