.hero-homepage {
    padding-top: 0;
    margin-top: -140px;

    .hero-container {
        position: relative;
    }
    .hero-video {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 675px;
        overflow: hidden;

        @media screen and (max-width: 576px) {
            display: none;
        }
        &:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0), rgba(var(--color-black-rgb), 1) 80%);
        }
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .hero-image {
        .desktop-image {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 675px;
            overflow: hidden;

            @media screen and (max-width: 576px) {
                display: none;
            }
            &:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0), rgba(var(--color-black-rgb), 1) 80%);
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .mobile-image {
            display: none;
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 675px;
            overflow: hidden;

            @media screen and (max-width: 576px) {
                display: block;
            }
            &:after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0), rgba(var(--color-black-rgb), 1) 80%);
            }
            img {
                width: 100%;
                height: auto;
            }
        }
    }
    .hero-text {
        width: 100%;
        position: absolute;
        bottom: 8%;
        left: 50%;
        transform: translateX(-50%);

        @media screen and (max-width: 576px) {
            bottom: 60px;
        }
        h1 {
            margin-bottom: 0;

            .hero-line {
                display: inline-block;
            }
        }
    }
    .hero-subheading {
        margin-left: 100px;

        @media screen and (max-width: 1200px) {
            margin-left: 80px;
        }
        @media screen and (max-width: 991px) {
            margin-left: 60px;
        }
        @media screen and (max-width: 768px) {
            margin-left: 40px;
        }
        @media screen and (max-width: 576px) {
            margin-left: 0px;
            text-align: center;
        }
        
        .subheading {
            line-height: 1.25;
            margin-bottom: 0;
        }
        .subheading-link {
            a {
                position: relative;
                display: inline-block;
                font-size: 1.6rem;
                font-weight: 500;
                text-transform: uppercase;
                color: #B4B4B4;
                margin: 12px 0 0;
                text-decoration: none;

                &:hover, &:focus-visible {
                    color: var(--color-white);

                    &:before {
                        opacity: 1;
                        visibility: visible;
                        bottom: 0px;
                    }
                    &:after {
                        top: calc(50% - 3px);
                        right: -25px;
                    }
                }
                &:before {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 2px;
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    background-color: var(--color-white);
                    opacity: 0;
                    visibility: hidden;
                    transition: .3s ease-in-out;
                }
                &:after {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 12px;
                    position: absolute;
                    top: 50%;
                    right: -22px;
                    transform: translateY(-50%);
                    background-image: url('../../../assets/svg/arrow-up-right-white.svg');
                    background-repeat: no-repeat;
                    background-size: cover;
                    transition: .3s ease-in-out;
                }
            }
        }
    }
}