.page-template-about {
    .subnav {
        + .entry-content {
            .bg-texture {
                margin-top: 30px;
            }
        }
    }
}
.about-hero {
    min-height: 650px;
    color: var(--color-white);
    position: relative;
    
    @media screen and (max-width: 768px) {
        min-height: 500px;
    }
    @media screen and (max-width: 576px) {
        text-align: center;
    }
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;

        &:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(var(--color-scda-black-rgb), .85);
            mix-blend-mode: multiply;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .hero-content {
        position: relative;
        z-index: 2;
        min-height: 650px;

        @media screen and (max-width: 768px) {
            min-height: 500px;
        }
        .container {
            padding-top: 122px;
            min-height: 650px;
            display: flex;
            flex-direction: column;
            justify-content: center;

            @media screen and (max-width: 991px) {
                padding-top: 111px;
            }
            @media screen and (max-width: 768px) {
                min-height: 500px;
            }
        }
        .row {
            margin-top: 0;
            padding: 130px 0;

            @media screen and (max-width: 768px) {
                padding: 100px 0;
            }
            @media screen and (max-width: 576px) {
                padding: 80px 0;
            }
            .col-12 {
                margin-top: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;

                h1 {
                    margin-bottom: 0;
                }
                .hero-text {
                    margin-top: var(--spacing-xs);

                    @media screen and (max-width: 768px) {
                        margin-top: 8px;
                    }
                    p {
                        max-width: 840px;
                        margin: 0;

                        @media screen and (max-width: 768px) {
                            max-width: none;
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
    + .entry-content {
        .bg-texture {
            margin-top: 30px;
        }
    }
}