/* ====================================
   NEWS HIGHWAY HEADER CSS
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
}

.container{
    width:95%;
    max-width:1300px;
    margin:auto;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#111;
    color:#fff;
    font-size:14px;
}

.topbar-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:40px;
}

.top-left{
    font-weight:500;
}

.top-left i{
    color:#FFC107;
    margin-right:8px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    transition:.3s;
    font-size:15px;
}

.top-right a:hover{
    color:#FFC107;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo img{
    height:200px;
}

.header-ad img{
    max-width:728px;
    width:100%;
    height:auto;
}

.mobile-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#111;
}

/* ==========================
   NAVIGATION
========================== */

.navbar{
    background:#111;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar ul{
    list-style:none;
    display:flex;
}

.navbar ul li{
    position:relative;
}

.navbar ul li a{
    display:block;
    padding:16px 18px;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    background:#FFC107;
    color:#111;
}

/* ==========================
   SEARCH
========================== */

.search-box{
    display:flex;
    align-items:center;
}

.search-box form{
    display:flex;
}

.search-box input{
    width:220px;
    height:40px;
    border:none;
    padding:0 15px;
    outline:none;
}

.search-box button{
    width:45px;
    border:none;
    background:#FFC107;
    color:#111;
    cursor:pointer;
    font-size:16px;
}

/* ==========================
   BREAKING NEWS
========================== */

.breaking{
    background:#FFC107;
    padding:10px 0;
}

.breaking-flex{
    display:flex;
    align-items:center;
}

.breaking-title{
    background:#111;
    color:#fff;
    padding:8px 18px;
    font-weight:bold;
    border-radius:4px;
    margin-right:15px;
}

.breaking-scroll{
    flex:1;
    color:#111;
    font-weight:600;
}

/* ==========================
   DROPDOWN
========================== */

.navbar ul li ul{
    position:absolute;
    top:100%;
    left:0;
    background:#111;
    width:220px;
    display:none;
}

.navbar ul li:hover ul{
    display:block;
}

.navbar ul li ul li{
    width:100%;
}

.navbar ul li ul li a{
    padding:12px 15px;
}

/* ==========================
   STICKY EFFECT
========================== */

.sticky{
    position:fixed;
    top:0;
    width:100%;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1100px){

.header-ad{
    display:none;
}

}

@media(max-width:991px){

.mobile-btn{
    display:block;
}

.navbar .container{
    flex-direction:column;
    align-items:flex-start;
}

.navbar ul{
    width:100%;
    display:none;
    flex-direction:column;
}

.navbar ul.active{
    display:flex;
}

.navbar ul li{
    width:100%;
}

.navbar ul li a{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.search-box{
    width:100%;
    padding:15px;
}

.search-box form{
    width:100%;
}

.search-box input{
    width:100%;
}

}

@media(max-width:768px){

.logo img{
    height:55px;
}

.topbar{
    display:none;
}

.header-flex{
    height:75px;
}

.breaking-title{
    font-size:13px;
    padding:7px 12px;
}

}

@media(max-width:480px){

.logo img{
    height:45px;
}

.search-box{
    display:none;
}

.breaking{
    padding:8px 0;
}

.breaking-title{
    font-size:12px;
}

}