

.container{
    max-width: 1300px !important;
    width: 95% !important;
    margin: auto;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
}

.left-section{
    display: flex;
    align-items: center;
    gap: 20px;
}
.Brand-Logo{
    height: 80px;
    object-fit: contain;
}

.right-section{
    display: flex;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
}

.Nav-Bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 100;
    transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.Nav-Bar.active {
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.134), 0 6px 20px 0 rgba(0, 0, 0, 0.112);
    animation: fromTop 0.5s ease-in-out; /* Apply animation */
}

.Nav-Bar .Brand-Logo-White{
    display: block;
}

.Nav-Bar .Brand-Logo-Blue{
    display: none;
}

.Nav-Bar.active .Brand-Logo-White{
    display: none;
}

.Nav-Bar.active .Brand-Logo-Blue{
    display: block;
}

@keyframes fromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.Pages{
    list-style: none;
}

.Nav-Bar li {
    display: inline;
    padding: 0px 18px;
    color: rgb(0, 83, 169);
    
}

ul{
    margin: 0 !important;
}

.burger-menu{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 35px;
}

.burger-menu .burger-bun {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
}

.Nav-Bar.active .burger-menu .burger-bun {
    background-color: #262F5A;
}


@media(max-width:950px){
    .burger-menu{
        display: flex;
    }

    .Nav-Bar li{
        display: none;
    }
     
    .Nav-Bar li:last-child{
        display: block;
    }
}

@media(max-width:650px){
    .Nav-Bar li:last-child{
        display: none;
    }
    .burger-menu{
        margin-top: 0px;
    }
}



.right-section ul li a{
    /* color: #262F5A; */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

.Nav-Bar.active .right-section ul li a{
    color: #262F5A;
}

.btn-blue{
    color: #fff !important;
    background: linear-gradient(90deg, #0053a9 0%, #1d1f40 100%) !important;
}

.Nav-Bar .right-section ul li:not(:last-child) a::after{
    content: '';
    position: absolute;
    width:100%;
    transform: scaleX(0);
    height:3px;
    border-radius: 22px;
    background-color: #fff;
    bottom: -8px;
    left: 0;
    right: 0;
    transition: all 0.2s linear;;
 }
 
 .Nav-Bar .right-section ul li a:hover::after{
     transform: scaleX(1);
     transition: all 0.2s linear;
 }

.Nav-Bar.active .right-section ul li a::after{
    background-color: #262F5A;
 }
 
 .Nav-Bar.active .right-section ul li a:hover::after{
     transform: scaleX(1);
     transition: all 0.2s linear;
 }