/* ==========================================
   CLEANNORA HEADER V2
========================================== */

.cn-header-v2{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    z-index:1000;
}

.cn-header-v2 .container{

    max-width:1320px;

}

.cn-navbar{

    pointer-events:auto;

}

.cn-navbar{

    height:86px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 34px;

    border-radius:24px;

    background:rgba(18,55,42,.82);

    backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.14);

    box-shadow:

    0 15px 50px rgba(0,0,0,.22);

    position:relative;

    overflow: visible;
    padding-bottom:8px;

}

.cn-navbar::after{

    content:"";

    position:absolute;

    left:20px;

    right:20px;

    bottom:2px;

    height:3px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #F4BF19 0%,
        #FFD95A 25%,
        #FFF1A8 50%,
        #FFD95A 75%,
        #F4BF19 100%
    );

    box-shadow:
        0 0 12px rgba(244,191,25,.45),
        0 0 24px rgba(244,191,25,.25);

}

.cn-logo img{

    height:62px;

    display:block;

}

.cn-menu{

    display:flex;

    align-items:center;

    gap:48px;

    list-style:none;

    margin:0;

    padding:0;

}

.cn-menu a{

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.30s;

}

.cn-menu a:hover{

    color:#F4BF19;

}

.cn-menu a.active{

    color:#F4BF19;

}

.cn-book-btn{

    width:176px;

    height:52px;

    border-radius:16px;

    background:#F4BF19;

    color:#083D2B;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    font-weight:700;

    transition:.30s;

}

.cn-book-btn:hover{

    transform:translateY(-3px);

    background:#ffd34d;

    color:#083D2B;

}

.cn-book-btn i{

    font-size:18px;

}