/* Pixel-Perfect Refinement - Outfit Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Pastel Colors from Reference */
    --peach: #FFD4A3;
    --pink: #FFB4C8;
    --mint: #B4E4D4;
    --lavender: #D4C4F4;
    --sky: #A4D4F4;
    --yellow: #FFE5A3;


    /* Brand Colors from Reference */
    --brand-purple: #4F46E5;
    --brand-yellow: #FFC300;
    --brand-blue: #9333EA;
    --brand-gradient: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 100%);

    /* Primary */
    --primary: var(--brand-purple);
    --primary-dark: #4338CA;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;

    /* Border Radius */
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-800);
    background: #F8FAFC;
    min-height: 100vh;
    position: relative;
}

/* Floating Shapes */
/* body::before {
    content: '';
    position: fixed;
    width: 80px;
    height: 80px;
    background: rgba(255, 180, 200, 0.3);
    border-radius: 50%;
    top: 5%;
    right: 10%;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 60px;
    height: 60px;
    background: rgba(164, 212, 244, 0.3);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    z-index: 0;
} */

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gray-900);
}

/* Main Container - Full Width Header, Centered Content */
.main-container {
    width: 100%;
}

.top-nav {
    background: white;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gray-100);
    padding: 0;
}

.nav-container {
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.content-wrapper {
    max-width: 1250px;
    margin: 2rem auto;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.2s;
}

.nav-link.active {
    color: var(--gray-900);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-purple);
    border-radius: 2px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link:hover {
    color: var(--gray-900);
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--gray-200);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Hero Banner */
.hero-banner-and-stats {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}


.hero-banner {
    background: #554BF1;
    /* More vibrant Indigo from image */
    border-radius: var(--radius-3xl);
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    width: 75%;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(85, 75, 241, 0.2);
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0.40rem;
    color: white;
}

.hero-content p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1.1rem;
}

.hero-btn {
    background: var(--brand-yellow);
    color: var(--gray-900);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

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

.hero-illustration {
    flex: 0 0 40%;
    text-align: right;
}

.hero-illustration img {
    max-width: 100%;
    height: auto;
}



/* Stats Sidebar */
.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 25%;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: none;
}

.stat-info h4 {
    color: var(--gray-700);
    font-size: 0.8125rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.8125rem;
    font-weight: 600;
}

.stat-trend.positive {
    color: #22C55E;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Test Cards Refinement */
.main-column {
    width: 100%;
}

.test-grid {
    display: grid;
    width: 73%;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 1.5rem;
}

.test-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: none;
    transition: transform 0.2s;
}

.test-card:hover {
    transform: translateY(-5px);
}

.test-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: -1rem;
}

.test-details {
    padding: 2rem 1.2rem;
}

.test-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--gray-900);
}

.test-meta-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-700);
}

.test-meta-info i {
    color: var(--brand-purple);
    margin-right: 0.25rem;
}

/* Exam Cards Grid */
.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.exam-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    cursor: pointer;
}

.exam-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.exam-card.pink {
    background: linear-gradient(135deg, var(--pink) 0%, #FFD4E5 100%);
}

.exam-card.yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFF0CC 100%);
}

.exam-card.sky {
    background: linear-gradient(135deg, var(--sky) 0%, #D4E8FF 100%);
}

.exam-card.lavender {
    background: linear-gradient(135deg, var(--lavender) 0%, #E8DCFF 100%);
}

.exam-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.exam-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.exam-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.exam-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Explore Section */
.explore-section {
    padding: 0 2rem 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.search-box {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.exam-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.exam-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
}

.exam-item:hover {
    background: var(--gray-100);
}

.exam-item-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-item-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.exam-item-text p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Challenge Cards */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.challenge-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.challenge-card.pink {
    background: linear-gradient(135deg, var(--pink) 0%, #FFD4E5 100%);
}

.challenge-card.yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFF0CC 100%);
}

.challenge-card.sky {
    background: linear-gradient(135deg, var(--sky) 0%, #D4E8FF 100%);
}

.challenge-card.lavender {
    background: linear-gradient(135deg, var(--lavender) 0%, #E8DCFF 100%);
}

.challenge-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.challenge-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.challenge-subtitle {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.challenge-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Popular Topics */
.topics-section {
    padding: 0 2rem 2rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topic-tag {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.topic-tag:hover {
    transform: translateY(-2px);
}

.topic-tag.blue {
    background: #E0F2FE;
    color: #0369A1;
}

.topic-tag.pink {
    background: #FCE7F3;
    color: #BE185D;
}

.topic-tag.purple {
    background: #EDE9FE;
    color: #7C3AED;
}

.topic-tag.orange {
    background: #FFEDD5;
    color: #C2410C;
}

.topic-tag.red {
    background: #FEE2E2;
    color: #DC2626;
}

.topic-tag.green {
    background: #D1FAE5;
    color: #059669;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

    .exam-grid,
    .challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exam-list {
        grid-template-columns: 1fr;
    }

    .test-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Recent Books Section */
.recent-books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 10px;
    /* Space for hover shadow */
}

.book-card {
    background: white;
    border-radius: 24px;
    /* More rounded */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: none;
    /* Removed border */
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.book-thumb {
    width: 100%;
    height: 220px;
    /* Taller image */
    object-fit: cover;
    border-radius: 0;
    /* Full bleed image looks more premium */
    margin: 0;
    width: 100%;
}

.book-details {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-details p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.view-more-link {
    color: #6366F1;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.view-more-link:hover {
    gap: 0.75rem;
    /* Animated Arrow */
    transition: gap 0.2s;
}

/* Connect Section */
.connect-banner-wrapper {
    position: relative;
    padding-bottom: 4rem;
    /* More space for strip */
    margin-top: 6rem;
}

.connect-banner {
    background: linear-gradient(120deg, #4F46E5 0%, #8B5CF6 100%);
    border-radius: 30px;
    /* Matches design */
    padding: 4rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: visible;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.25);
}

.connect-content {
    flex: 1;
    max-width: 55%;
    z-index: 2;
    padding-bottom: 2rem;
    /* Space for layout */
}

.connect-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.connect-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: white;
    letter-spacing: -1px;
}

.connect-btn {
    background: #FFC300;
    color: #0F172A;
    padding: 1.1rem 2.75rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 25px rgba(255, 195, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 195, 0, 0.4);
}

.connect-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(5px);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.connect-image-container {
    position: absolute;
    right: 4rem;
    bottom: 0;
    height: 125%;
    /* Pops out more */
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.connect-person-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Newsletter Strip */
.newsletter-strip {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    width: 90%;
    margin: -4rem auto 0;
    /* Overlap */
    position: relative;
    z-index: 10;
}

.newsletter-left {
    padding-left: 1.5rem;
    border-left: 5px solid #6366F1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-label {
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    color: var(--gray-900);
    text-transform: uppercase;
}

.newsletter-left p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.input-group {
    position: relative;
    width: 350px;
}

.input-group i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    /* Pill shape */
    outline: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.input-group input:focus {
    background: white;
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.subscribe-btn {
    background: #FFC300;
    color: #0F172A;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.2);
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.3);
}

@media (max-width: 1024px) {
    .recent-books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .connect-banner {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        padding: 3rem;
    }

    .connect-content {
        max-width: 100%;
    }

    .connect-image-container {
        position: relative;
        right: auto;
        bottom: auto;
        height: 350px;
        width: 100%;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .newsletter-strip {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        margin-top: 2rem;
        padding: 2rem;
    }

    .newsletter-left {
        border: none;
        padding: 0;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .input-group {
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }
}

/* Responsive Dashboard Styles - Added by Antigravity */
@media (max-width: 1024px) {
    .main-container {
        overflow-x: hidden;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-banner-and-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-banner {
        width: 100%;
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-illustration {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .stats-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid for stats on tablet */
        gap: 1rem;
    }

    @media (max-width: 640px) {
        .stats-sidebar {
            grid-template-columns: 1fr;
            /* Stack on mobile */
        }
    }

    .main-column {
        margin-top: 0;
        /* Reset negative margin on mobile */
        padding-top: 2rem;
    }

    .test-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
        .test-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .recent-books-grid {
        grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
        .recent-books-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .connect-banner {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .dashed-border-inset {
        display: none;
    }
}

/* Base Mobile Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .nav-links {
        display: none;
        /* Hide by default, handled by mobile menu */
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-illustration {
        display: none;
    }

    .hero-content {
        margin-bottom: 0rem;
    }

    a.hero-btn {
        margin-bottom: 0px;
    }

}



@media (max-width: 768px) {

    .content-wrapper {
        margin: 20px;
    }




}