/*=========================================
BAREILLY TAXI HEADER
Version 1.0
==========================================*/

.bt-header{

position:sticky;

top:0;

left:0;

width:100%;

background:#ffffff;

z-index:9999;

box-shadow:0 10px 40px rgba(0,0,0,.06);

}

.bt-header .bt-container{

display:flex;

justify-content:space-between;

align-items:center;

min-height:90px;

}

.bt-logo{

display:flex;

align-items:center;

}

.bt-logo img{

height:65px;

width:auto;

}

.bt-logo-text{

font-size:30px;

font-weight:700;

color:#0B5ED7;

}

.bt-navigation{

display:flex;

align-items:center;

}

.bt-menu{

display:flex;

gap:35px;

list-style:none;

margin:0;

padding:0;

}

.bt-menu li{

list-style:none;

}

.bt-menu a{

font-size:16px;

font-weight:600;

color:#1F2937;

transition:.3s;

}

.bt-menu a:hover{

color:#0B5ED7;

}

.bt-header-right{

display:flex;

align-items:center;

gap:15px;

}

.bt-call{

padding:14px 24px;

background:#0B5ED7;

color:#fff;

border-radius:10px;

font-weight:600;

transition:.3s;

}

.bt-call:hover{

background:#0848A5;

}

.bt-book{

padding:14px 24px;

background:#FFC107;

color:#111;

border-radius:10px;

font-weight:700;

transition:.3s;

}

.bt-book:hover{

background:#E6AC00;

}

.bt-mobile-toggle{

display:none;

background:none;

border:none;

font-size:34px;

cursor:pointer;

}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

.bt-navigation{

display:none;

}

.bt-header-right{

display:none;

}

.bt-mobile-toggle{

display:block;

}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

.bt-header .bt-container{

min-height:75px;

}

.bt-logo img{

height:50px;

}

.bt-logo-text{

font-size:22px;

}

}