/*=======  Page Title  =======*/
.page-title-area {
    background: #a9c7ec;
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 280px;
    padding-bottom: 120px;

    @include respond-below(sm) {
        padding-top: 180px;
    }

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/banner/banner-gradient-bg-2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    .title {
        font-size: 80px;
        margin-bottom: 10px;

        @include respond-below(lg) {
            font-size: 62px;
        }

        @include respond-below(sm) {
            font-size: 38px;
        }
    }

    .breadcrumb-nav {
        display: flex;
        justify-content: center;

        li {
            font-size: 24px;
            font-weight: 700;
            position: relative;
            line-height: 1;

            @include respond-below(sm) {
                font-size: 18px;
            }

            &:not(:last-child) {
                &::after {
                    content: "|";
                    margin: 0 8px;
                }
            }

            &,
            a {
                color: #69a1bb;
            }
        }
    }
}
