/* ===========================================
   HEADER MODULE v1.0
===========================================*/

.top-bar{
    width:100%;
    height:38px;
    background:#7b1113;
    color:#fff;
}

.top-bar-inner{
    height:38px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
}

.top-bar a:hover{
    opacity:.8;
}

/* ========================= */

.header{

    width:100%;
    background:#ffffff;

    position:sticky;
    top:0;

    z-index:9999;

    border-bottom:1px solid #ececec;

}

.header-inner{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}

.logo img{

    width:68px;

    height:68px;

    object-fit:contain;

}

.logo-text h2{

    color:#222;

    font-size:26px;

    font-weight:700;

    line-height:1.2;

}

.logo-text p{

    color:#666;

    font-size:13px;

}

/* ========================= */

.nav{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav a{

    color:#222;

    text-decoration:none;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#7b1113;

    transition:.3s;

}

.nav a:hover{

    color:#7b1113;

}

.nav a:hover::after{

    width:100%;

}

/* ========================= */

.apply-btn{

    background:#7b1113;

    color:#fff !important;

    padding:12px 24px;

    border-radius:50px;

}

.apply-btn::after{

    display:none;

}

.apply-btn:hover{

    background:#5b0d0f;

}

/* ========================= */

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:6px auto;

    background:#222;

    transition:.3s;

}
/*=========================================
HEADER RESPONSIVE
=========================================*/

@media (max-width:992px){

.top-bar{
    display:none;
}

.header-inner{

    height:75px;

    position:relative;

}

.logo img{

    width:52px;
    height:52px;

}

.logo-text h2{

    font-size:22px;

}

.logo-text p{

    font-size:11px;

}

.menu-toggle{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.nav{

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:#fff;

    display:none;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    padding:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.nav.active{

    display:flex;

}

.nav a{

    width:100%;

    padding:15px 0;

    border-bottom:1px solid #eee;

}

.apply-btn{

    margin-top:15px;

    width:100%;

    text-align:center;

}

}

@media(max-width:576px){

.logo-text h2{

    font-size:18px;

}

.logo-text p{

    font-size:10px;

}

.logo img{

    width:46px;

    height:46px;

}

}
/*=========================================
DESKTOP
=========================================*/

.menu-toggle{

    display:none;

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:992px){

.menu-toggle{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

}