.custom-navbar {
    background: #B43336;
    border-radius: 20px;
    padding: 20px 85px;
    margin: 20px 0;
    box-shadow: 0 30px 20px -20px rgba(0, 0, 0, 0.25);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.nav-link{
    color: #fff;
    font-size: 16px;
}
.nav-link.active{
    color: #F48633 !important;
}
.nav-link:hover{
    color: #F48633 !important;
}


.footer-section{
    background: #B43336;
    position: relative;
    z-index: 9;
}
.footer-top{
    padding: 60px 0 30px;
    border-bottom: solid 1px #fff;
}
.footer-top ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}
.footer-top  ul li {
    list-style: none;
    color: #fff;
    font-size: 16px;
}
.footer-top  ul li a{
    text-decoration: none;
    color: #fff;
}
.footer-bottom{
    padding: 20px 0;
}
.footer-bottom span{
    color: #fff;
    font-family: 16px;
}
.footer-bottom ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}
.footer-bottom ul li {
    list-style: none;
}
.footer-bottom ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background-color: #F48633;
    box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}
.footer-bottom ul li a i{
    color: #fff;
    font-family: 20px;
}


/* responsive */
@media (max-width: 992px){
    .custom-navbar {
        padding: 10px 15px;
        position: relative;
    }
    .custom-navbar .navbar-nav .navbar-brand{
        display: none;
    }
    .custom-navbar  .navbar-brand.mobile-logo{
        display: block !important;
    } 
    .custom-navbar  .navbar-brand.mobile-logo img{
        display: block !important;
    } 
    .custom-navbar  .navbar-brand img{
        width: 100px;
        height: auto;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .navbar-toggler{
        border: none;
    }
    .navbar-toggler-icon {
        filter: invert(1);
    }
   .navbar-collapse {
        align-items: center;
        position: absolute;
        background: #B43336;
        top: 60px;
        width: 100%;
        left: 0;
        z-index: 99999;
        padding: 30px 15px;
        border-radius: 0 0 20px 20px;
    }
    .footer-top ul{
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .footer-top ul {
        align-items: flex-start;
        gap: 10px;
        margin-top: 30px;
        flex-direction: column;
    }
    .footer-bottom ul {
        margin-top: 20px;
        justify-content: flex-start;
    }
}