/* High specificity to override Tailwind CDN */

html body section.page-breadcrumb {
    background: linear-gradient(135deg, #1a6faf 0%, #2196c4 40%, #4ab8d8 100%);
    padding: 48px 0 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: block;
}

html body section.page-breadcrumb .breadcrumb-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

html body section.page-breadcrumb a.back-btn {
    position: absolute;
    top: 0;
    left: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

html body section.page-breadcrumb a.back-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

html body section.page-breadcrumb .page-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

html body section.page-breadcrumb .breadcrumb-bx {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    margin-top: 4px;
}

html body section.page-breadcrumb .breadcrumb-white a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

html body section.page-breadcrumb .breadcrumb-white a.active {
    color: #fff;
    font-weight: 500;
}

html body section.page-breadcrumb .breadcrumb-white a i {
    margin: 0 6px;
    font-size: 11px;
    opacity: 0.7;
}

html body section.page-breadcrumb svg.waves {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s;  animation-duration: 7s;  }
.parallax > use:nth-child(2) { animation-delay: -3s;  animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s;  animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s;  animation-duration: 20s; }

@keyframes move-forever {
    0%   { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* Legal Content */

html body .legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Work Sans', 'Inter', sans-serif;
}

html body .legal-content p {
    margin-bottom: 16px;
    color: #444;
    text-align: justify;
}

html body .legal-content a {
    color: #1a6faf;
    text-decoration: underline;
}

html body .legal-content .main-sub-lable {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    display: block;
}

html body .legal-content ul.ul-dick {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 16px;
}

html body .legal-content ul.ul-dick li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.7;
    display: list-item;
}

html body .legal-content ul.ul-dick li strong {
    color: #222;
}

/* Container */
html body .container-lg {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Responsive */
@media (max-width: 768px) {
    html body section.page-breadcrumb {
        padding: 40px 0 72px;
    }
    html body section.page-breadcrumb .page-heading {
        font-size: 1.5rem;
    }
}