.header-style-03+.banner {
    margin-top: -250px !important;
}

    .page-title-strip {
        background: linear-gradient(135deg, #046DFF, #0047ab);
        padding: 14px 0;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    /* BREADCRUMB */
    .page-title-strip .breadcrumb {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .page-title-strip .breadcrumb li {
        display: inline-block;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

    .page-title-strip .breadcrumb li a {
        color: #fff;
        text-decoration: none;
        opacity: 0.9;
        transition: 0.3s;
    }

    .page-title-strip .breadcrumb li a:hover {
        opacity: 1;
        text-decoration: underline;
    }

    .page-title-strip .breadcrumb li+li:before {
        content: "›";
        padding: 0 8px;
        color: #ddd;
    }

    /* MARQUEE */
    .marquee-box {
        overflow: hidden;
        position: relative;
    }

    .marquee-track {
        display: inline-flex;
        white-space: nowrap;
        animation: marquee 22s linear infinite;
    }

    .marquee-track span {
        color: #ffffff;
        font-weight: 500;
        margin-right: 40px;
        font-size: 14px;
        opacity: 0.95;
    }

    /* Hover pause */
    .marquee-box:hover .marquee-track {
        animation-play-state: paused;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .page-title-strip {
            text-align: center;
        }

        .marquee-track span {
            font-size: 13px;
            margin-right: 25px;
        }
    }

    .text-justify p {
        text-align: justify;
    }

    .section-title p {
        font-size: 15px;
    }