/* ==========================
   TRENZYCH VPN v3
   Global Style
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    background:#08111F;

    color:#fff;

    overflow-x:hidden;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    max-width:100%;

    display:block;

}

button{

    font-family:inherit;

    cursor:pointer;

}

.container{

    width:min(1150px,92%);

    margin:auto;

}

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

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:72px;

    padding:0 22px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(8,17,31,.85);

    backdrop-filter:blur(14px);

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

    z-index:1000;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

}

.logo img{

    width:42px;

    height:42px;

    border-radius:50%;

}

.logo span{

    font-size:20px;

    font-weight:700;

    letter-spacing:.5px;

}

.menu-btn{

    font-size:28px;

    cursor:pointer;

}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{

    position:fixed;

    top:72px;

    right:-260px;

    width:240px;

    height:100vh;

    background:#101B2D;

    transition:.35s;

    padding:30px 20px;

    z-index:999;

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

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    display:block;

    padding:15px 0;

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

    font-size:17px;

}

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

footer{

    text-align:center;

    padding:35px 20px;

    color:#94A3B8;

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

    margin-top:70px;

}
