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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.navbar {
    background: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e94560;
}

.btn-primary {
    background: #e94560;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d63651;
}

.btn-secondary {
    background: #16213e;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #0f1626;
}
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.75), rgba(22, 33, 62, 0.75)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    min-height: 500px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.certifications {
    padding: 4rem 0;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.cert-item h4 {
    color: #e94560;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cta {
    background: #e94560;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.services-detail, .industries-detail, .about-content, .contact-content, .request-content {
    padding: 4rem 0;
}

.service-block, .industry-block, .about-section {
    margin-bottom: 3rem;
}

.service-block h2, .industry-block h2, .about-section h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-block ul, .industry-block ul, .about-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.service-block li, .industry-block li, .about-section li {
    margin-bottom: 0.5rem;
}

.service-features {
    margin-top: 3rem;
}

.service-features h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item h3 {
    color: #e94560;
    margin-bottom: 0.5rem;
}

.compliance-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

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

.cert-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cert-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
}

.insurance-section {
    margin: 3rem 0;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.insurance-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.insurance-card h3 {
    color: #e94560;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #e94560;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1a1a2e;
    text-decoration: none;
}

.contact-item a:hover {
    color: #e94560;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-note {
    margin: 1rem 0;
    color: #666;
}

.quick-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.request-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.method-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
}

.method-card a {
    margin-top: 1rem;
}

.service-info {
    margin-top: 3rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.service-info h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-info ul {
    margin-left: 2rem;
}

.service-info li {
    margin-bottom: 0.5rem;
}

footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #e94560;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-grid, .quick-contact {
        grid-template-columns: 1fr;
    }
}


.intro-section, .service-area {
    padding: 3rem 0;
    background: #fff;
}

.intro-section h2, .service-area h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section p, .service-area p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1rem;
    text-align: center;
    color: #555;
}

.services-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-overview h2 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-card li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card h3:before {
    content: "";
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card:nth-child(1) h3:before { content: ""; }
.feature-card:nth-child(2) h3:before { content: ""; }
.feature-card:nth-child(3) h3:before { content: ""; }

.cert-item:before {
    content: "";
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-item:nth-child(1):before { content: ""; }
.cert-item:nth-child(2):before { content: ""; }
.cert-item:nth-child(3):before { content: ""; }
.cert-item:nth-child(4):before { content: ""; }

.about-section, .compliance-section, .insurance-section {
    position: relative;
}

.section-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    color: #999;
    font-size: 4rem;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.two-column-section .text-content {
    order: 1;
}

.two-column-section .image-content {
    order: 2;
}

.two-column-section.reverse .text-content {
    order: 2;
}

.two-column-section.reverse .image-content {
    order: 1;
}

@media (max-width: 768px) {
    .two-column-section {
        grid-template-columns: 1fr;
    }
    
    .two-column-section .text-content,
    .two-column-section .image-content {
        order: unset !important;
    }
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.cert-item:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cert-item:nth-child(1):before { background-image: url('images/hazmat-cert.png'); }
.cert-item:nth-child(2):before { background-image: url('images/hipaa.png'); }
.cert-item:nth-child(3):before { background-image: url('images/bloodborne.png'); }
.cert-item:nth-child(4):before { background-image: url('images/insurance.png'); }

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

.intro-text h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.service-card.featured {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.service-card.featured .service-note {
    margin-top: auto;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #e94560;
    border-radius: 5px;
    font-style: italic;
    color: #555;
}

.why-choose {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #e94560;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
}

.about-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-hero-content h2 {
    color: #1a1a2e;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #e94560 0%, #d63651 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mission-section, .values-section {
    margin: 4rem 0;
}

.mission-section h2, .values-section h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.compliance-showcase, .insurance-showcase {
    padding: 4rem 0;
    background: #f8f9fa;
}

.compliance-showcase h2, .insurance-showcase h2 {
    text-align: center;
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-showcase-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.cert-showcase-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.cert-showcase-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-showcase-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.cert-showcase-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.cert-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.cert-features li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

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

.insurance-detail-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.insurance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.insurance-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.insurance-detail-card h3 {
    color: #e94560;
    margin-bottom: 1rem;
}

.insurance-detail-card p {
    color: #666;
    line-height: 1.7;
}

.insurance-note {
    text-align: center;
    font-style: italic;
    color: #555;
    max-width: 800px;
    margin: 2rem auto 0;
}

.service-area-detail {
    padding: 4rem 0;
}

.service-area-detail h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.area-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.area-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-feature {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    color: #e94560;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
}

.contact-hero {
    padding: 3rem 0;
    background: #f8f9fa;
}

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

.contact-intro h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-main {
    padding: 4rem 0;
}

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-methods-enhanced h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.contact-methods-enhanced > p {
    color: #555;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.contact-method-card:hover {
    transform: translateY(-3px);
}

.contact-method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    color: #e94560;
    margin-bottom: 0.5rem;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0.5rem 0;
}

.contact-link:hover {
    color: #e94560;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.location-text {
    font-weight: 500;
    color: #555;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.info-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.hours-item span:first-child {
    color: #666;
}

.hours-item span:last-child {
    color: #e94560;
    font-weight: 600;
}

.contact-checklist {
    list-style: none;
    padding: 0;
}

.contact-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.contact-checklist li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #e94560;
    font-weight: bold;
}

.info-card.highlight {
    background: linear-gradient(135deg, #e94560 0%, #d63651 100%);
    color: #fff;
}

.info-card.highlight h3 {
    color: #fff;
}

.info-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.info-card.highlight .btn-primary {
    background: #fff;
    color: #e94560;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.info-card.highlight .btn-primary:hover {
    background: #f0f0f0;
}

.why-contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-contact h2 {
    text-align: center;
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

.logo-text {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.testimonials {
    padding: 4rem 0;
    background: #1a1a2e;
}

.testimonials h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #16213e;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e94560;
}

.testimonial-quote {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #e94560;
    font-weight: 600;
    font-size: 1rem;
}

.cert-svg-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.cert-item:has(.cert-svg-icon):before {
    display: none;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card p {
    flex: 1;
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
}
