/*====================================
    GOOGLE FONT
=====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Roboto',sans-serif;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

/*====================================
    STICKY HEADER
=====================================*/

#header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:1030;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

}

/*====================================
    TOP BAR
=====================================*/

.top-header{
    background:#0c56a7;
    color:#fff;
    font-size:14px;
    height:40px;
    display:flex;
    align-items:center;
}

.top-header .container{
    height:100%;
}

.top-header .row{
    height:100%;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    height:100%;
}

.top-right{
    justify-content:flex-end;
}

.top-left a,
.top-right a{
    color:#fff;
    display:flex;
    align-items:center;
    height:100%;
    padding:0 18px;
    border-left:1px solid rgba(255,255,255,.15);
}

.top-left a:first-child{
    padding-left:0;
    border-left:none;
}

.top-right a:last-child{
    padding-right:0;
}

.top-left i,
.top-right i{
    color:#67d3ff;
    margin-right:8px;
}

.top-left strong{
    font-weight:700;
}

/*====================================
    NAVBAR
=====================================*/

.navbar{

    background:#fff;

    min-height:95px;

    padding:0;

    position:relative;

    z-index:1031;

}

.navbar .container{
    min-height:95px;
}

.navbar-brand{
    margin-right:45px;
}

.navbar-brand img{
    max-height:62px;
}

.navbar-nav{
    align-items:center;
}

.nav-item{
    margin:0 8px;
}

.nav-link{
    color:#111;
    font-size:16px;
    font-weight:700;
    padding:28px 10px;
    position:relative;
}

.nav-link span{
    color:#7f8c8d;
    margin-left:5px;
    font-size:18px;
}

.nav-link:hover{
    color:#0c56a7;
}

/*====================================
    RIGHT ICONS
=====================================*/

.header-icons{
    display:flex;
    align-items:center;
    gap:15px;
    margin-left:auto;
}

.search-btn,
.cart-btn,
.social{
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.search-btn{
    background:#0c56a7;
    color:#fff;
}

.cart-btn{
    border:2px solid #0c56a7;
    color:#0c56a7;
    position:relative;
}

.social{
    border:1px solid #dfe6eb;
    color:#7b8794;
}

.social:hover{
    background:#0c56a7;
    color:#fff;
    border-color:#0c56a7;
}

.search-btn:hover{
    background:#083f82;
    color:#fff;
}

.cart-btn:hover{
    background:#0c56a7;
    color:#fff;
}

.cart-count{
    position:absolute;
    top:-3px;
    right:-2px;
    width:22px;
    height:22px;
    background:#0c56a7;
    color:#fff;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/*====================================
    HERO
=====================================*/

.hero{
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f4f7fb;
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
}

/*====================================
    MOBILE OFFCANVAS
=====================================*/

.offcanvas{

    width:300px;
    max-width:85%;
    background:#fff;
    border:none;
    z-index:1055;
    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.offcanvas-header{

    background:#0c56a7;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:none;

}

.offcanvas-header img{

    height:48px;
    width:auto;

}

.offcanvas-header .btn-close{
    filter:unset;
    opacity:1;
}

.offcanvas-body{

    padding:15px 0;
    overflow-y:auto;

}

.mobile-nav{

    list-style:none;
    margin:0;
    padding:0;

}

.mobile-nav li{

    margin:0;
    padding:0;

}

.mobile-nav li a{

    display:flex;
    align-items:center;
    gap:15px;
    margin:6px 12px;
    padding:15px 18px;
    border-radius:10px;
    color:#222;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;

}

.mobile-nav li a i{

    width:22px;
    text-align:center;
    color:#0c56a7;
    font-size:18px;

}

.mobile-nav li a:hover,
.mobile-nav li a.active{

    background:#0c56a7;
    color:#fff;

}

.mobile-nav li a:hover i,
.mobile-nav li a.active i{

    color:#fff;

}

.offcanvas-backdrop{

    background:#000;
    opacity:.5 !important;

}

/* Social Icons */

.mobile-social{

    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:25px;

}

.mobile-social a{

    width:42px;
    height:42px;
    border-radius:50%;
    background:#0c56a7;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;

}

.mobile-social a:hover{

    background:#083f82;
    transform:translateY(-3px);

}

/* Mobile */

@media(max-width:991px){

    .navbar{

        min-height:75px;
        padding:8px 0;

    }

    .navbar-brand img{

        max-height:48px;

    }

    .navbar-toggler{

        border:none;
        box-shadow:none;
        font-size:28px;
        color:#0c56a7;

    }

}

/*====================================
    TOGGLER
=====================================*/

.navbar-toggler{
    font-size:28px;
    color:#0c56a7;
    box-shadow:none!important;
}

/*====================================
    RESPONSIVE
=====================================*/

@media (max-width:991px){

    .top-header{
        display:none;
    }

    .navbar{

    min-height:80px;

    padding:10px 0;

    }

    .navbar .container{
        min-height:80px;
    }

    .navbar-brand img{
        max-height:50px;
    }

    .header-icons{
        display:none!important;
    }

    .navbar-collapse{
        display:none!important;
    }
}

@media (max-width:767px){

    .navbar-brand img{
        max-height:45px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:18px;
    }
}

/*==========================
MOBILE OFFCANVAS
==========================*/

.offcanvas{

    width:320px;

    border:none;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.offcanvas-header{

    padding:20px;

}

.offcanvas-body{

    padding:0 20px 20px;

}

.mobile-nav{

    margin:0;

    padding:0;

    list-style:none;

}

.mobile-nav li{

    border-bottom:1px solid #ececec;

}

.mobile-nav li:last-child{

    border-bottom:none;

}

.mobile-nav li a{

    display:flex;

    align-items:center;

    padding:18px 8px;

    text-decoration:none;

    color:#222;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.mobile-nav li a i{

    width:25px;

    color:#0b3798;

}

.mobile-nav li a:hover{

    background:#0b3798;

    color:#fff;

    padding-left:20px;

}

.mobile-nav li a:hover i{

    color:#fff;

}

.offcanvas-backdrop{

    opacity:.45;

}

@media (max-width:991px){

    .offcanvas{

        margin-top:0;

    }

    .offcanvas-header{

        position:sticky;

        top:0;

        background:#fff;

        z-index:2;

    }

}

.header-fixed{

    animation:headerFixed .3s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

@keyframes headerFixed{

    from{

        transform:translateY(-20px);

        opacity:.8;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

/*====================================
FIX OFFCANVAS RIGHT GAP
====================================*/

html,
body{
    width:100%;
    overflow-x:hidden !important;
}

body.offcanvas-open,
body.modal-open{
    padding-right:0 !important;
}

.offcanvas-backdrop{
    width:100vw;
}

.offcanvas{
    max-width:100%;
}