﻿:root {
    --primary-color: #2c97b3;
    --active-color: #00c5b2;
    --white-color: #ffffff;
    --black-color: #000000;
    --disable-color: #e2e2e2;
}

.dashboard-header {
    background: var(--white-color);
}
.head-left{
    img{
           width: 150px;
       }
}

.head-nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    color: var(--black-color);
    font-size: 14px;
    flex-wrap: wrap;
}

.head-nav li a {
    text-decoration: none;
    color: var(--black-color);
}

.dropdown-toggle, .dropdown-toggle:focus {
    box-shadow: none;
}

#mobile-dropdown {
    list-style: none;
    display: none;
    z-index: 999;
    position: absolute;
    width: 100%;
    background: var(--primary-color);
    color: var(--white-color);
    a {
    color: var(--white-color);
    text-decoration: none;
      }
}
#mobile-career-menu {
    list-style: none;
    display: none;
}
@media (min-width: 1025px) {
    .sign-container {
        justify-content: center;
    }

    .head-right {
        display: block;
    }

    .mobile-view {
        display: none;
    }
}

@media (min-width: 0px) and (max-width: 1024px) {
    .sign-container {
        justify-content: space-between;
    }

    .head-right {
        display: none;
    }

    .mobile-view {
        display: block;
    }

     #mobile-career-menu.active {
         display: block;
     }


#mobile-dropdown.active {
    display: block;
}
}

#btn-mobile {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: var(--white-color);
}