.introduction-header{
    position: relative;
    z-index: 1;
    min-height: 400px;
    padding: 40px 24px;
    display: grid;
    place-content: center;
    >.bg{
        position: absolute;
        inset: 0;
        z-index: -1;
        >img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4);
        }
    }
    >h4{
        text-align: center;
        color: white;
        margin-bottom: 24px;
    }
    >h2{
        text-align: center;
        color: white;
    }
}