header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: #fff;
}

header .top-mini-header {
    padding: 10px 0;
    background-color: #004096;
}
header.sticky-top {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
header.sticky-top .top-mini-header{
    display: none;
}

header .top-mini-header .call-box a {
    color: #fff;
    font-weight: 700;
    margin-right: 8px;
    font-size: 14px;
}

header .top-mini-header .call-box a.career-btn {
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 0;
    border-radius: 6px;
    overflow: hidden;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 12px;
    margin-right: 0;


}

header .top-mini-header .call-box a.career-btn::before {
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #399953;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#00aa9e, #00aa9e), linear-gradient(#fe543d, #fe543d), linear-gradient(#f7ab14, #f7ab14), linear-gradient(#a62f6d, #a62f6d);
    animation: rotate 2s linear infinite;
    content: "";
    position: absolute;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

header .top-mini-header .call-box a.career-btn::after {
    position: absolute;
    content: "";
    z-index: -1;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #005ed8;
    border-color: none;
    border-radius: 8px;
}




header .top-mini-header .ad-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .top-mini-header p.text {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    animation: zoomInOutText 1s infinite alternate;
    overflow: hidden;
}

header .top-mini-header p.text svg {
    animation: rotate 4s infinite alternate;
    color: #FFC107;
}

@keyframes zoomInOutText {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.07);
    }
}

header .top-mini-header .social {
    display: flex;
    align-items: center;
    justify-content: end;
}

header .top-mini-header .social a svg {
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 6px;
    border-radius: 4px;
    margin-right: 4px;
    background-color: #fff;
    color: #030C31;
    transition: all 0.4s;

}

header .top-mini-header .social a svg:hover {
    transform: scale(1.15);
}

header .main-navigation-bar .navbar {
    width: 100%;
    height: 70px;
    padding: 0;
}

header .main-navigation-bar .navbar .navbar-nav {
    height: 70px;
    padding: 0;

}



header .main-navigation-bar .navbar-brand img {
    width: 240px;
}


header .main-navigation-bar .navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    height: 100%;

}

header .main-navigation-bar .navbar .navbar-nav .nav-item .nav-link {
    padding: 2px 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #004096;
    position: relative;
    font-size: 17px;
    transition: all 0.4s;
}

header .main-navigation-bar .navbar .navbar-nav .nav-item.active .nav-link{
    color: #002147;
}

header .main-navigation-bar .navbar .navbar-nav .nav-item:hover .nav-link {
    transform: translateY(-5px);
    color: #002147;
}


header .main-navigation-bar .nav-item.dropdown {
    position: relative;
}

header .main-navigation-bar .dropdown-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: max-content;
    transform: translateX(-50%);
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    background-color: #fff;

}

header .main-navigation-bar .nav-item.dropdown:hover .dropdown-mega-menu {
    opacity: 1;
    visibility: visible;
}

header .main-navigation-bar .dropdown-mega-menu .link-box {
    position: relative;
    width: 380px;
}

header .main-navigation-bar .dropdown-mega-menu .link-box a {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.4s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header .main-navigation-bar .dropdown-mega-menu .link-box a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

header .main-navigation-bar .dropdown-mega-menu .link-box a h6 {
    color: #004096;
    margin-bottom: 0;
}

header .main-navigation-bar .dropdown-mega-menu .link-box a p {
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-bottom: 0;
}

header .main-navigation-bar .dropdown-mega-menu .link-box:hover a {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

header .main-navigation-bar .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-radius: 0 0 4px 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

header .main-navigation-bar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

header .main-navigation-bar .dropdown-menu .dropdown-item {
    color: #004096;
    font-weight: 500;
    font-size: 16px;
    background: transparent;
    padding: 6px 16px;
    font-family: 'Roboto Slab', Arial, Helvetica, sans-serif;
    position: relative;

}

header .main-navigation-bar .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-left: 2px solid #004096;
    transition: all 0.4s;
}

header .main-navigation-bar .dropdown-menu .dropdown-item:hover::before {
    height: 100%;
}

header .main-navigation-bar .navbar-toggler {
    box-shadow: none;
    border: none;
    border-radius: 0;
}

header .main-navigation-bar .navbar-toggler svg {
    width: 22px;
    height: 22px;
    background-color: #004096;
    padding: 10px;
    border-radius: 6px;
    color: #fff;
}


header .main-navigation-bar .header-btn {
    margin-left: 10px;
}


@media (min-width:992px) and (max-width:1200px) {

    header .main-navigation-bar .navbar-brand img {
        width: 180px;
    }


    header .main-navigation-bar .navbar .navbar-nav .nav-item {
        display: flex;
        align-items: center;
        height: 100%;

    }

    header .main-navigation-bar .navbar .navbar-nav .nav-item .nav-link {
        padding: 2px 6px;
    }

    header .main-navigation-bar .dropdown-mega-menu {
        transform: translateX(-40%);

    }
}

@media (max-width:768px) {
    header .top-mini-header .call-box {
        text-align: center;
        margin-bottom: 10px;
    }
    header .main-navigation-bar .navbar-brand img {
        width: 180px;
    }
}



.mobile-navigation .btn-close {
    background: transparent;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 30px;
    z-index: 2;
}

.mobile-navigation .btn-close svg {

    width: 22px;
    height: 22px;
    padding: 6px;
    background-color: #fff;
    color: #004096;
    border-radius: 50%;
}

.mobile-navigation .offcanvas-body {
    padding-top: 50px;
    position: relative;
    background: url(../img/backgrounds/brain-ai-vbg.jpg) center;
    background-size: cover;
    padding-left: 0;
    padding-right: 0;
}

.mobile-navigation .offcanvas-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000 20%, rgba(0, 0, 0, 0.7));
}

.mobile-navigation .navbar-nav {
    width: 100%;
}

.mobile-navigation .navbar-nav li {
    position: relative;
}

.mobile-navigation .navbar-nav li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #FFC107;
    transition: all 0.4s;
    opacity: 0;
}

.mobile-navigation .navbar-nav .nav-item:hover::before {
    height: 100%;
    opacity: 1;
}

.mobile-navigation .navbar-nav li.dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-navigation .navbar-nav li.dropdown a svg {
    width: 10px;
    font-weight: 700;
    height: 10px;
    padding: 6px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.4s;
    transform: scale(.95) rotate(0);
}

.mobile-navigation .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-navigation .navbar-nav .nav-item:hover .nav-link svg {
    transform: scale(1.1) rotate(180deg);
    background-color: #FFC107;
    color: #030C31;
}

.mobile-navigation .navbar-nav .nav-item:hover .nav-link {
    color: #fff;
}


.mobile-navigation .navbar .cta-box {
    padding: 30px 20px;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    width: 100%;
}

.mobile-navigation .navbar .cta-box h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-shadow: 0 0 6px #000;
    gap: 10px;
}

.mobile-navigation .navbar .cta-box h4 svg {
    width: 20px;
    height: 20px;
    color: #FFC107;
    animation: rotate 4s infinite alternate;
}

.mobile-navigation .navbar .cta-box p.text {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    margin-bottom: 20px;
}

.mobile-navigation .navbar .cta-box p.text img {
    width: 50px;
    animation: imgVibrate 0.6s infinite alternate;
}

.mobile-navigation .navbar .cta-box a {
    display: block;
    width: fit-content;
    padding: 6px 16px;
    background-color: #FFC107;
    color: #004096;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    margin: 0 auto;
    transition: all 0.4s;
}

.mobile-navigation .navbar .cta-box a:hover {
    background-color: #fff;
    color: #004096;
}

.mobile-navigation .navbar .cta-box p.info {
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 4px;
}

.mobile-navigation .dropdown-menu {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.mobile-navigation .dropdown-menu li a {
    background: transparent;
    padding-left: 40px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s;
}

.mobile-navigation .dropdown-menu li a:hover {
    color: #FFC107;
    transform: translateX(5px);
}