/*====================================
    THEME COLORS
====================================*/

:root{
    --primary-color:#0D1B2E;
    --accent-color:#F5A623;
    --white-color:#ffffff;
}


/*====================================
    HEADER
====================================*/

.navbar{
    background:var(--primary-color) !important;
    padding:18px 0;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}


.navbar-brand{
    padding:0;
    margin:0;
}


.header_logo{
    width:210px;
    height:auto;
}



/*====================================
    NAVIGATION MENU
====================================*/

.navbar-nav{
    gap:5px;
}


.navbar-nav .nav-link{
    color:var(--white-color);
    font-size:16px;
    font-weight:500;
    padding:10px 18px;
    transition:.3s ease;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--accent-color);
}



/*====================================
    DROPDOWN MENU
====================================*/

.header-dropdown .dropdown-menu{
    background:var(--primary-color);
    border:0;
    border-radius:10px;
    padding:10px 0;
    min-width:220px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}


/* Dropdown Link */

.header-dropdown .dropdown-menu .dropdown-item-li a,
.header-dropdown .dropdown-menu .nav-link{
    color:var(--white-color);
    font-size:15px;
    font-weight:500;
    padding:11px 22px;
    display:block;
    transition:.3s ease;
}


/* Dropdown Hover */

.header-dropdown .dropdown-menu .dropdown-item-li a:hover,
.header-dropdown .dropdown-menu .nav-link:hover{
    background:var(--accent-color);
    color:var(--primary-color);
}


/* Dropdown Arrow */

.header-dropdown .dropdown-toggle::after{
    border-top-color:var(--white-color);
}



/*====================================
    DESKTOP HOVER DROPDOWN
====================================*/

@media(min-width:992px){

    .header-dropdown:hover > .dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }


    .header-dropdown .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(10px);
        transition:.3s ease;
    }

}



/*====================================
    HEADER CTA BUTTON
====================================*/

.header-btn{
    background:var(--accent-color);
    color:var(--primary-color);
    font-size:15px;
    font-weight:600;
    padding:12px 28px;
    border-radius:30px;
    display:inline-block;
    transition:.3s ease;
    text-decoration: none;
}


.header-btn:hover{
    background:var(--white-color);
    color:var(--primary-color);
}



/*====================================
    MOBILE TOGGLE
====================================*/

.navbar-toggler{
    border:0;
}


.navbar-toggler:focus{
    box-shadow:none;
}


.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
}



/*====================================
    MOBILE HEADER
====================================*/

@media(max-width:991px){

    .navbar{
        padding:15px 0;
    }


    .header_logo{
        width:170px;
    }


    .navbar-collapse{
        background:var(--primary-color);
        padding:15px;
        margin-top:15px;
        border-radius:8px;
    }


    .navbar-nav .nav-link{
        padding:12px 10px;
    }


    .header-dropdown .dropdown-menu{
        background:transparent;
        box-shadow:none;
        padding-left:15px;
    }


    .header-dropdown .dropdown-menu .nav-link{
        padding:10px;
    }


    .nav-cta{
        margin-top:15px;
    }

}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
     color:var(--white-color);
}

/*====================================
    FOOTER
====================================*/

.site-footer{
    background:var(--primary-color);
    color:var(--white-color);
    padding:70px 0 0;
}



/* Footer Logo */

.footer_logo{
    width:220px;
    height:auto;
}


.footer-logo p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.8;
}



/* Footer Heading */

.site-footer h5{
    color:var(--white-color);
    font-size:18px;
    font-weight:600;
    margin-bottom:25px;
    position:relative;
}


.site-footer h5::after{
    content:"";
    width:40px;
    height:3px;
    background:var(--accent-color);
    display:block;
    margin-top:10px;
    border-radius:5px;
}



/* Footer List */

.site-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}


.site-footer ul li{
    margin-bottom:12px;
    color:rgba(255,255,255,.75);
    font-size:15px;
}


.site-footer ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s ease;
}


.site-footer ul li a:hover{
    color:var(--accent-color);
    padding-left:5px;
}



/* Contact */

.site-footer ul li{
    line-height:1.6;
}



/* Footer Bottom */

.footer-bottom{
    margin-top:50px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.15);
}


.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:14px;
}



/*====================================
    FOOTER MOBILE
====================================*/

@media(max-width:767px){

    .site-footer{
        padding-top:45px;
    }


    .footer_logo{
        width:180px;
    }


    .site-footer h5{
        margin-bottom:18px;
    }


    .footer-bottom{
        margin-top:30px;
    }

}