.legal-hero {
    background-size: cover !important;
}
.legal-hero .col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 322px;
    padding-bottom: 80px;
}
.legal-hero__breadcrumb {
    font-family: 'Graphie Book', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #FFF;
    text-align: right;
    width: 100%;
    margin: 0;
}
.legal-hero__heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}
.legal-hero__title {
    font-family: 'Graphie Bold', sans-serif;
    font-size: 60px;
    line-height: 64px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin: 0;
}
.legal-hero__subtitle {
    font-family: 'Graphie Light', sans-serif;
    font-size: 36px;
    line-height: 46px;
    color: #FFF;
    text-transform: capitalize;
    margin: 0;
}
.legal-hero__date {
    font-family: 'Graphie Book', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #00E96C;
    margin: 0;
    margin-top: -8px;
}

/* Tablet */
@media all and (min-width: 769px) and (max-width: 1199px) {
    .legal-hero__title {
        font-size: 42px;
        line-height: 48px;
    }
    .legal-hero__subtitle {
        font-size: 30px;
        line-height: 36px;
    }
}

/* Mobile */
@media all and (min-width: 1px) and (max-width: 768px) {
    .legal-hero {
        margin-top: -115px;
    }
    .legal-hero .col {
        padding-top: 220px;
        padding-bottom: 40px;
        gap: 30px;
    }
    .legal-hero__breadcrumb {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
    .legal-hero__title {
        font-size: 26px;
        line-height: 32px;
    }
    .legal-hero__subtitle {
        font-size: 22px;
        line-height: 28px;
    }
    .legal-hero__date {
        font-size: 14px;
        line-height: 20px;
    }
}