.fp-parent-hero {
    min-height: 600px;
    color: var(--color-white);
    position: relative;
    
    @media screen and (max-width: 768px) {
        min-height: 450px;
    }
    @media screen and (max-width: 576px) {
        text-align: center;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        min-height: 600px;

        @media screen and (max-width: 768px) {
            min-height: 450px;
        }
        .container {
            padding-top: 172px;
            min-height: 600px;
            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: 450px;
            }
        }
        .row {
            margin-top: 0;
            padding: 50px 0;

            .col-12 {
                margin-top: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;

                h1 {
                    margin-bottom: 0;
                    max-width: 750px;
                    margin-bottom: var(--spacing-xs);
                }
                .hero-text {
                    p {
                        margin: 0;

                        @media screen and (max-width: 768px) {
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
}