<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Front Page Header Styles
 *
 * @package Matchbox_Custom_Blocks
 */

.front-page-header {
    position: relative;
    overflow: hidden;
}

.front-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.front-page-header-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.front-page-header .container {
    position: relative;
    z-index: 1;
}

.front-page-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.front-page-header .layered {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-accent-1);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.front-page-header .layered:hover {
    background-color: var(--color-accent-2);
    transform: translateY(-2px);
}

.highlighted-services-wrap {
    position: relative;
    padding: 2rem;
    background-color: var(--color-accent-2);
    color: #fff;
}

.highlighted-services {
    position: relative;
    z-index: 1;
}

.left-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.highlighted-services h2 {
    position: relative;
    z-index: 2;
}

.highlighted-services .services {
    position: relative;
    z-index: 2;
}

.highlighted-services .services li a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlighted-services .services li a:hover {
    transform: translateX(-5px);
}

.highlighted-services .services li a .icon {
    transition: transform 0.3s ease;
}

.highlighted-services .services li a:hover .icon {
    transform: rotate(45deg);
}

.backdrop {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1rem;
}

.backdrop a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.backdrop a:hover {
    background-color: var(--color-accent-1);
}

@media (max-width: 767px) {
    .front-page-header h1 {
        font-size: 2rem;
    }

    .highlighted-services-wrap {
        margin-top: 2rem;
    }
} </pre></body></html>