/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/

.navbar{
    background:#198754 !important;
    min-height:75px;
    padding:10px 0;
    box-shadow:0 2px 15px rgba(0,0,0,.10);
}

/*
|--------------------------------------------------------------------------
| Navbar Brand
|--------------------------------------------------------------------------
*/

.navbar-brand{
    margin:0;
    padding:0;
}

.navbar-brand img{
    max-height:55px;
    width:auto;
    display:block;
}

/*
|--------------------------------------------------------------------------
| Desktop Menu
|--------------------------------------------------------------------------
*/

.navbar-nav{
    gap:15px;
}

.nav-link{
    color:#ffffff !important;
    font-size:16px;
    font-weight:500;
    padding:10px 15px !important;
    border-radius:6px;
    transition:.3s;
}

.nav-link:hover{
    background:rgba(255,255,255,.15);
    color:#ffffff !important;
}

/*
|--------------------------------------------------------------------------
| Phone Button
|--------------------------------------------------------------------------
*/

.navbar .btn{
    border-radius:8px;
    font-weight:600;
}

/*
|--------------------------------------------------------------------------
| Mobile Button
|--------------------------------------------------------------------------
*/

.navbar-toggler{
    border:none;
    padding:0;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler i{
    color:#ffffff;
    font-size:26px;
}

/*
|--------------------------------------------------------------------------
| Mobile Menu
|--------------------------------------------------------------------------
*/

.offcanvas{
    width:300px;
}

.offcanvas-header{
    border-bottom:1px solid #e5e5e5;
}

.offcanvas-title{
    font-weight:700;
    color:#198754;
}

.offcanvas .list-group-item{
    border-left:none;
    border-right:none;
    padding:14px 20px;
}

.offcanvas .list-group-item a{
    color:#333;
    font-weight:500;
    display:block;
}

.offcanvas .list-group-item a:hover{
    color:#198754;
}

.mobile-contact{
    padding:20px;
    border-top:1px solid #eee;
}

.mobile-social{
    padding:20px;
    display:flex;
    gap:12px;
    justify-content:center;
}

.mobile-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f5f5f5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#198754;
    transition:.3s;
}

.mobile-social a:hover{
    background:#198754;
    color:#ffffff;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:991px){

    .navbar{
        min-height:65px;
        padding:8px 0;
    }

    .navbar-brand img{
        max-height:45px;
    }

}