:root {
    --exclusive-elixir: #f9f1df;
    --black: #000000;
    --twilight-zone: #1c1913;
    --holy-crow: #322f28;
    --metropolis: #5e5950;
    --smoking-mirror: #9c9689;
    --oatmeal: #c9c2b3;
    --eggshell: #f0f0e8;
    --accent-orange: #ff6b35;
    --accent-gold: #ffa500;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--exclusive-elixir);
    color: var(--twilight-zone);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: var(--twilight-zone);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 80px;
}

.nav-contact {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
}

.phone-btn {
    background-color: var(--accent-orange);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.phone-btn:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--exclusive-elixir);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: var(--exclusive-elixir);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    transition: all 0.2s;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    display: block;
}

.nav-menu a:hover {
    color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/lot.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 25, 19, 0.85) 0%, rgba(50, 47, 40, 0.85) 100%), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C989B" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 2;
    opacity: 0.3;
}

/* Alternative excavator hero background */
.hero-section.hero-excavator::before {
    background-image: url('../assets/large-excavators.webp');
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--exclusive-elixir);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-orange);
}

.btn-secondary {
    background-color: transparent;
    color: var(--exclusive-elixir);
    border-color: var(--exclusive-elixir);
}

.btn-secondary:hover {
    background-color: var(--exclusive-elixir);
    color: var(--twilight-zone);
}

.btn-outline {
    background-color: transparent;
    color: var(--twilight-zone);
    border-color: var(--twilight-zone);
}

.btn-outline:hover {
    background-color: var(--twilight-zone);
    color: var(--exclusive-elixir);
}

.intro-section {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--metropolis);
}

/* New intro section with logo */
.intro-content-with-logo {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-logo-wrapper {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.intro-logo:hover {
    transform: scale(1.05);
}

.intro-text-wrapper {
    flex: 1;
    text-align: left;
}

.intro-text-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--twilight-zone);
}

.intro-text-wrapper p {
    font-size: 1.1rem;
    color: var(--metropolis);
    line-height: 1.7;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .intro-content-with-logo {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .intro-logo {
        width: 180px;
    }
    
    .intro-text-wrapper {
        text-align: center;
    }
    
    .intro-text-wrapper h2 {
        font-size: 2rem;
    }
    
    .intro-text-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-logo {
        width: 150px;
    }
    
    .intro-text-wrapper h2 {
        font-size: 1.75rem;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-grid {
    padding: 4rem 0;
    background-color: var(--exclusive-elixir);
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--twilight-zone);
    text-transform: uppercase;
}

.equipment-list {
    margin-bottom: 2rem;
}

.equipment-item {
    margin-bottom: 1.5rem;
}

.equipment-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--holy-crow);
}

.equipment-item ul {
    list-style: none;
    padding-left: 1rem;
}

.equipment-item li {
    padding: 0.25rem 0;
    color: var(--metropolis);
    position: relative;
}

.equipment-item li::before {
    content: '▸';
    position: absolute;
    left: -1rem;
    color: var(--accent-orange);
}

.rentals-section {
    padding: 4rem 0;
    background-color: var(--oatmeal);
}

.rental-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rental-card,
.rental-benefits {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rental-card h3,
.rental-benefits h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--twilight-zone);
    text-transform: uppercase;
}

.rental-list {
    list-style: none;
    margin-bottom: 1rem;
}

.rental-list li,
.rental-benefits ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--oatmeal);
}

.rental-benefits ul {
    list-style: none;
}

.rental-benefits ul li::before {
    content: '✓ ';
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

.rental-card a,
.rental-benefits a,
.intro-section a:not(.btn) {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.rental-card a:hover,
.rental-benefits a:hover,
.intro-section a:not(.btn):hover {
    color: var(--twilight-zone);
    text-decoration: underline;
}

.brands-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--exclusive-elixir) 0%, var(--eggshell) 100%);
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    margin: 3rem auto;
    padding: 4rem 3rem;
    max-width: 1000px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.brand-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-gold) 50%, var(--accent-orange) 100%);
}

.brand-logo-item {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1rem;
}

.brand-logo-item::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--oatmeal);
}

.brand-logo-item:last-child::after {
    display: none;
}

.brand-logo-img {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand-card {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--oatmeal);
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--twilight-zone);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-card p {
    color: var(--metropolis);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-models {
    list-style: none;
    padding: 1rem;
    margin: 0;
    background: var(--eggshell);
    border-radius: 6px;
    color: var(--metropolis);
    font-size: 0.9rem;
}

.brand-models li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.brand-models li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--holy-crow) 0%, var(--twilight-zone) 100%);
    text-align: center;
    color: var(--exclusive-elixir);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.main-footer {
    background: linear-gradient(to bottom, #1a1814, #0f0d0a);
    color: var(--exclusive-elixir);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold), var(--accent-orange));
}

.footer-brand-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(249, 241, 223, 0.1);
}

.footer-brand-logo {
    height: 35px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-brand-logo:hover {
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.35rem 0;
}

.footer-section a {
    color: rgba(249, 241, 223, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-nap {
    line-height: 1.8;
}

.footer-nap address {
    font-style: normal;
    margin: 1rem 0;
    color: rgba(249, 241, 223, 0.8);
}

.hours {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}

.hours p {
    color: rgba(249, 241, 223, 0.9);
    line-height: 1.6;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.contact-info li {
    padding: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 241, 223, 0.1);
    color: rgba(249, 241, 223, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(249, 241, 223, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-orange);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 1.5rem !important;
}

.dropdown-toggle::after {
    content: '▾';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--holy-crow);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem !important;
    color: var(--oatmeal) !important;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.9rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 107, 53, 0.15) !important;
    color: var(--accent-orange) !important;
    transform: translateX(4px);
}

.dropdown-divider {
    padding: 0.5rem 1rem 0.3rem !important;
    margin: 0.4rem 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--smoking-mirror);
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    display: block;
}

.dropdown-divider:first-child {
    border-top: none;
    margin-top: 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
        min-height: 72px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .nav-contact {
        margin-right: 0.5rem;
    }
    
    .phone-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .brand-logos {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .brand-logo-item::after {
        display: none;
    }
    
    .brand-logo-img {
        height: 50px;
        max-width: 160px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--twilight-zone);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 0 2rem;
        overflow-y: auto;
        scrollbar-width: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 998;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Close button for mobile menu */
    .nav-menu::before {
        content: '×';
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 3rem;
        font-weight: 300;
        color: var(--exclusive-elixir);
        cursor: pointer;
        z-index: 1001;
        line-height: 1;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }
    
    .nav-menu > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(249, 241, 223, 0.08);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        color: var(--exclusive-elixir) !important;
        font-size: 1.1rem !important;
        padding: 1.2rem 2rem !important;
        display: block;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: background-color 0.2s;
        width: 100%;
    }
    
    .nav-menu > li > a:active {
        background-color: rgba(255, 107, 53, 0.15) !important;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown .dropdown-toggle {
        position: relative;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown .dropdown-toggle::after {
        content: '+';
        position: static;
        font-size: 1.4rem;
        font-weight: 300;
        transition: transform 0.3s;
        color: var(--accent-orange);
        margin-left: auto;
        flex-shrink: 0;
        width: 1.4rem;
        text-align: center;
        line-height: 1;
        transform: none;
    }

    .dropdown.active .dropdown-toggle::after {
        content: '×';
        transform: none;
    }
    
    .dropdown-menu {
        display: none;
        background-color: var(--holy-crow);
        overflow: hidden;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        border: none;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        margin: 0;
        border: none;
    }
    
    .dropdown-menu a {
        color: var(--oatmeal) !important;
        padding: 1rem 2rem 1rem 3rem !important;
        font-size: 0.95rem !important;
        font-weight: 500;
        text-transform: none !important;
        letter-spacing: normal !important;
        position: relative;
        background-color: transparent;
    }
    
    .dropdown-menu a::before {
        content: '›';
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent-orange);
        font-size: 1.2rem;
        line-height: 1;
    }
    
    .dropdown-menu a:active {
        background-color: rgba(255, 107, 53, 0.1) !important;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .equipment-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand-strip {
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .footer-brand-logo {
        height: 25px;
        max-width: 100px;
    }
}