.page-intro {
    height: 673px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 97px;
    margin-bottom: var(--spacing-xl);
}

.page-intro-background {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-intro-background img, .page-intro-background video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.page-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.32);
}

.page-intro-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-intro-content .titles-wrapper {
    margin-top: calc(var(--spacing-large) - 4px);
}

.page-intro-pretitle {
    color: var(--White);
}

.page-intro-title {
    color: var(--White);
}

.page-intro-text {
    color: var(--White);
    margin: 0;
    max-width: var(--container-columns-6, 816px);
}

@media (max-width: 1200px) {

    .page-intro {
        height: 750px;
    }

}

@media (max-width: 992px) {

    .page-intro-content .titles-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

}