.document-breadcrumb-container {
    background-color: #2A7BB81A;
}

.document-banner {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-banner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #1F4781 0%, rgba(255, 255, 255, 0) 100%);
}

.document-banner h2 {
    position: relative;
    z-index: 10;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.document-content p {
    margin-top: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
}

@media (max-width:606px) {
    .document-banner {
        min-height: 570px;
    }
}