header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    /* background: linear-gradient(to right, #100a80, #2e77f1, #100a80); */
    background-color: #121212;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(255, 249, 34), rgb(0, 129, 69), rgba(56, 2, 155, 0));
    border-image-slice: 1;
    width: 100% !important;
    overflow: hidden;
  }  

header nav{
    border-radius: 50px;
}

@media screen and (max-width: 576px){
    header{
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* background: linear-gradient(to right, #100a80, #2e77f1, #100a80); */
        background-color: #121212;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(0.25turn, rgba(255,249,34), rgb(0, 129, 69), rgba(56,2,155,0));
        border-image-slice: 1;
        width: 100% !important;
        gap: 20px;
        overflow: hidden;
    }

    .navbar{
        background-color: transparent !important;
    }

    .navbar button{
        background-color: #CBFF4D !important;
        position: relative;
        z-index: 999;
        border: 0;
    }

    #mainMenu{
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        padding: 20px;
    }

    /* #content{
        margin-top: 60px
    } */
}

header h1{
    font-family: Montserrat-Black;
    color: #fff;
    
}

#left div:nth-child(1) a{
    text-decoration: none;
    font-family: Montserrat-Black;
    color: #fff;
    font-size: 30px;
}

#left h6{
    color: #fff;
}

@media screen and (max-width:992px){
    
    #left h6{
        display: none;
    }
}

#mainMenu li{
    font-size: 13px;
    padding: 0px 20px;
}


.nav-item.dropdown:hover .dropdown-menu{
    display: block !important;
}

.nav-item.dropdown ul li:hover .dropdown-menu-2{
    display: block !important;
}

.dropdown-menu-2{
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.375rem;
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(0.375rem - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), 0.15);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: static;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.nav-link:hover, .dropdown-item:hover{
    background-image: linear-gradient(to right, #000000, #84DD63);
    background: ( ) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    position: relative;
    text-decoration: none;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Adjust the value to control the distance between the text and the underline */
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #CBFF4D; /* Change the color as per your preference */
    opacity: 0; /* Hide the underline by default */
    transition: opacity 0.3s ease; /* Add a transition effect for smooth hover animation */
  }
  
  .nav-link:hover::after {
    opacity: 1; /* Show the underline on hover */
  }
  