/* ===========================
   AnimationDev Header
=========================== */

.ad-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(20,20,20,.70);
    backdrop-filter:blur(12px);
    transition:.3s;
}

.ad-container{
    max-width:1400px;
    margin:auto;
    padding:16px 25px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Left */

.ad-left{

    display:flex;
    align-items:center;
    gap:20px;

}

.ad-menu-toggle{

    background:none;
    border:0;
    color:#fff;
    font-size:30px;
    cursor:pointer;

}

.ad-logo{

    color:#fff;
    text-decoration:none;
    font-size:28px;
    font-weight:700;

}

.ad-logo img{

    max-height:42px;
    width:auto;

}

/* Search */

.ad-center{

    flex:1;
    margin:0 40px;

}

.ad-center form{

    display:flex;

}

.ad-center input[type=search]{

    width:100%;
    height:52px;

    border:0;

    border-radius:50px;

    padding:0 25px;

    font-size:16px;

    outline:none;

}

/* Right */

.ad-right{

    display:flex;
    align-items:center;
    gap:30px;

}

.ad-right a{

    color:#fff;

    text-decoration:none;

    font-size:22px;

    position:relative;

}

.ad-right span{

    position:absolute;

    top:-8px;

    right:-12px;

    width:20px;

    height:20px;

    background:#ff6b00;

    color:#fff;

    border-radius:50%;

    font-size:11px;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Sidebar */

.ad-sidebar{

    position:fixed;

    top:0;

    left:-340px;

    width:320px;

    height:100vh;

    background:#111827;

    z-index:10000;

    transition:.35s;

    padding:40px;

    overflow:auto;

}

.ad-sidebar.active{

    left:0;

}

.ad-close{

    background:none;

    border:0;

    color:#fff;

    font-size:32px;

    cursor:pointer;

    margin-bottom:40px;

}

.ad-sidebar-menu{

    list-style:none;

    margin:0;

    padding:0;

}

.ad-sidebar-menu li{

    margin-bottom:18px;

}

.ad-sidebar-menu a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

.ad-sidebar-menu a:hover{

    color:#ff6b00;

}

/* Overlay */

.ad-sidebar-overlay{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.ad-sidebar-overlay.active{

    opacity:1;

    visibility:visible;

}