.hero-full-size {
    position: relative;
    padding: 0 !important;

    .background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;

        &:before {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: linear-gradient(to bottom, rgba(var(--color-blue-rgb), 0), var(--color-blue));
        }
        .background-video {
            width: 100%;
            height: 100%;

            @media screen and (max-width: 768px) {
                display: none;
            }
            video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            + .background-image {
                display: none;

                @media screen and (max-width: 768px) {
                    display: block;
                }
            }
        }
        .background-image {
            width: 100%;
            height: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        min-height: 100vh;
        padding: calc(7.75rem + var(--spacing-lg)) 0 var(--spacing-lg);
        
        @media screen and (max-width: 1200px) {
            min-height: 800px;
        }
        @media screen and (max-width: 992px) {
            min-height: 700px;
            padding: calc(5rem + var(--spacing-md)) 0 var(--spacing-md);
        }
        @media screen and (max-width: 576px) {
            min-height: 500px;
        }
        .preheading {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: .011rem;
            margin-bottom: var(--spacing-xs);

            @media screen and (max-width: 992px) {
                font-size: 1.2rem;
            }
            @media screen and (max-width: 768px) {
                font-size: 1.1rem;
            }
            @media screen and (max-width: 576px) {
                font-size: 1rem;
                letter-spacing: .007rem;
                margin-bottom: var(--spacing-xxs);
            }
        }
        h1 {
            margin-bottom: var(--spacing-sm);
            font-size: 4.25rem !important;

            @media screen and (max-width: 576px) {
                margin-bottom: var(--spacing-4);
            }
        }
    }
}