/*==================================================
            PRIVACY PAGE - MAZEBIE
==================================================*/

/*==============================
        GLOBAL
==============================*/

body{
    font-family:'Poppins',sans-serif;
    background:#07131f;
    color:#e8eef7;
    line-height:1.8;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    padding-left:20px;
}

section{
    position:relative;
}

/*==============================
        HERO
==============================*/

.privacy-hero{

    padding:170px 0 120px;

    text-align:center;

    overflow:hidden;

    position:relative;

    background:
    linear-gradient(
        135deg,
        #06101a 0%,
        #10253d 50%,
        #06101a 100%
    );

}

.privacy-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    left:-220px;

    top:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(255,183,3,.18),
        transparent 70%
    );

}

.privacy-hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(0,191,255,.15),
        transparent 70%
    );

}

.privacy-hero h1{

    font-size:3.6rem;

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

    font-family:'Cinzel',serif;

    position:relative;

    z-index:2;

}

.privacy-hero p{

    max-width:760px;

    margin:auto;

    color:#cfdcec;

    font-size:1.08rem;

    position:relative;

    z-index:2;

}

.privacy-hero strong{

    color:#ffb703;

}

/*==============================
        CONTENT
==============================*/

.privacy-content{

    padding:90px 0;

    background:
    linear-gradient(
        180deg,
        #07131f,
        #091827,
        #07131f
    );

}

/*==============================
        DECORATION
==============================*/

.privacy-content::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    left:-180px;

    top:150px;

    background:
    radial-gradient(
        rgba(255,183,3,.08),
        transparent 70%
    );

}

.privacy-content::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    right:-120px;

    bottom:120px;

    background:
    radial-gradient(
        rgba(0,170,255,.08),
        transparent 70%
    );

}

/*==============================
        NAVBAR FIX
==============================*/

.navbar{

    backdrop-filter:blur(15px);

    background:rgba(5,14,24,.75)!important;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-brand{

    font-size:1.6rem;

    font-weight:700;

    color:#ffb703!important;

}

.navbar-brand i{

    margin-right:8px;

}

.nav-link{

    color:#d8e6f4!important;

    font-weight:500;

    margin-left:18px;

}

.nav-link:hover{

    color:#ffb703!important;

}
/*=====================================
        SIDEBAR MENU
=====================================*/

.privacy-menu{

    position:sticky;

    top:100px;

    background:rgba(18,32,51,.85);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.privacy-menu h4{

    color:#ffb703;

    margin-bottom:20px;

    font-weight:700;

    font-size:1.25rem;

}

.privacy-menu a{

    display:block;

    color:#dbe6f2;

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:all .3s ease;

    font-size:.96rem;

}

.privacy-menu a:last-child{

    border-bottom:none;

}

.privacy-menu a:hover{

    color:#ffb703;

    padding-left:12px;

}

/*=====================================
        PRIVACY CARD
=====================================*/

.privacy-card{

    background:rgba(20,34,54,.88);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    margin-bottom:35px;

    transition:all .35s ease;

    box-shadow:0 12px 35px rgba(0,0,0,.25);

}

.privacy-card:hover{

    transform:translateY(-6px);

    border-color:#ffb703;

    box-shadow:0 20px 45px rgba(255,183,3,.18);

}

/*=====================================
        TITLES
=====================================*/

.privacy-card h3{

    color:#ffb703;

    font-size:1.8rem;

    margin-bottom:20px;

    font-weight:700;

}

.privacy-card h3 i{

    margin-right:8px;

}

.privacy-card h5{

    color:#ffffff;

    margin-top:25px;

    margin-bottom:15px;

    font-size:1.1rem;

    font-weight:600;

}

/*=====================================
        TEXT
=====================================*/

.privacy-card p{

    color:#dbe6f2;

    line-height:1.9;

    margin-bottom:18px;

    font-size:1rem;

}

.privacy-card strong{

    color:#ffb703;

}

/*=====================================
        LIST
=====================================*/

.privacy-card ul{

    margin:15px 0;

    padding-left:22px;

}

.privacy-card li{

    margin-bottom:10px;

    color:#dbe6f2;

    line-height:1.8;

}

.privacy-card li::marker{

    color:#ffb703;

}

/*=====================================
        DIVIDER
=====================================*/

.privacy-card hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:28px 0;

}
/*=====================================
        PRIVACY TABLE
=====================================*/

.privacy-table{

    width:100%;

    border-collapse:collapse;

    margin-top:25px;

    border-radius:15px;

    overflow:hidden;

}

.privacy-table thead{

    background:#ffb703;

}

.privacy-table th{

    color:#111;

    font-weight:700;

    padding:16px;

    text-align:left;

    font-size:.95rem;

}

.privacy-table td{

    padding:16px;

    color:#e8eef7;

    background:rgba(255,255,255,.03);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.privacy-table tbody tr:hover td{

    background:rgba(255,183,3,.08);

}

.privacy-table tbody tr:last-child td{

    border-bottom:none;

}

/*=====================================
        NOTE BOX
=====================================*/

.privacy-note{

    margin-top:25px;

    padding:22px;

    border-left:5px solid #ffb703;

    background:rgba(255,183,3,.08);

    border-radius:12px;

}

.privacy-note strong{

    color:#ffb703;

}

.privacy-note p{

    margin:0;

}

/*=====================================
        ALERT BOX
=====================================*/

.privacy-alert{

    padding:25px;

    margin-top:30px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        rgba(255,183,3,.15),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,183,3,.25);

}

.privacy-alert h5{

    color:#ffb703;

    margin-bottom:15px;

}

.privacy-alert p{

    margin-bottom:0;

}

/*=====================================
        ICON CIRCLE
=====================================*/

.privacy-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#ffb703;

    margin-bottom:20px;

    background:rgba(255,183,3,.12);

    border:1px solid rgba(255,183,3,.25);

}

/*=====================================
        LINKS
=====================================*/

.privacy-card a{

    color:#4db8ff;

    transition:.3s;

}

.privacy-card a:hover{

    color:#ffb703;

}

/*=====================================
        SCROLL ANIMATION
=====================================*/

.privacy-card{

    animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=====================================
        CUSTOM SCROLLBAR
=====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111c;

}

::-webkit-scrollbar-thumb{

    background:#ffb703;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ffc933;

}
/*=====================================
        FOOTER
=====================================*/

.footer{

    background:#050c14;

    padding:70px 0 25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer h4,
.footer h5{

    color:#ffb703;

    margin-bottom:20px;

}

.footer p{

    color:#b8c7d9;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#dbe6f2;

    transition:.3s;

}

.footer ul li a:hover{

    color:#ffb703;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    color:#ffffff;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.social-icons a:hover{

    background:#ffb703;

    color:#111;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0 20px;

}

.copyright{

    color:#9fb2c8;

    font-size:.95rem;

}

/*=====================================
        BACK TO TOP
=====================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#ffb703;

    color:#111;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(255,183,3,.35);

    transition:.3s;

    z-index:999;

}

.back-to-top:hover{

    transform:translateY(-6px);

    background:#ffd54a;

}

/*=====================================
        RESPONSIVE
=====================================*/

@media (max-width:991px){

    .privacy-hero{

        padding:140px 0 90px;

    }

    .privacy-hero h1{

        font-size:2.7rem;

    }

    .privacy-menu{

        position:relative;

        top:0;

        margin-bottom:35px;

    }

    .privacy-card{

        padding:28px;

    }

}

@media (max-width:768px){

    .privacy-hero h1{

        font-size:2.2rem;

    }

    .privacy-hero p{

        font-size:1rem;

    }

    .privacy-card{

        padding:24px;

    }

    .privacy-card h3{

        font-size:1.5rem;

    }

    .privacy-table{

        display:block;

        overflow-x:auto;

        white-space:nowrap;

    }

    .privacy-table th,
    .privacy-table td{

        min-width:180px;

    }

    .social-icons{

        justify-content:center;

    }

}

@media (max-width:576px){

    .privacy-hero{

        padding:120px 0 70px;

    }

    .privacy-hero h1{

        font-size:1.9rem;

    }

    .privacy-menu{

        padding:22px;

    }

    .privacy-card{

        padding:20px;

    }

    .privacy-card h3{

        font-size:1.35rem;

    }

    .privacy-note{

        padding:18px;

    }

    .back-to-top{

        width:45px;

        height:45px;

        right:18px;

        bottom:18px;

    }

}