﻿body {
}

header {
    height: fit-content;
    display: flex;
    flex-direction: column;
    background-color: var(--mainColor);
    box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.182);
}

.head{
    display:flex;
    justify-content:space-between;
    width:100%;
}

.a {
    padding: 10px;
    color: #fff;
}

.a {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

    .a a {
        text-decoration: none;
        font-size: 1.5rem;
        padding: 0px;
        color:#fff;
    }
    
    .a a:hover {
        color:#fff;
    }

.aspan {
    color: var(--secColor);
}

.b {
    flex: 70%;
    padding: 0%;
}


.navbar {
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    /*background: linear-gradient(to top, #f4ae1b, #f3b821, #f2bb27, #f8c434, #f7c62f);*/
    /*background: linear-gradient(to top, #011f6d, #0075b1);*/
    background-color: var(--secColor);
}

    .navbar a {
        display: flex;
        align-items: center;
        margin: 0px;
        float: left;
        font-size: 16px;
        color: #ffffff;
        text-align: center;
        padding: 8px 20px;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease-out;
    }

        .navbar a::after {
            content: "";
            position: absolute;
            top: 25%;
            right: 0;
            height: 50%;
            width: 0px;
            border-right: 2px solid #ffffff90;
        }


.dropdown {
    float: left;
    overflow: hidden;
    height: 100%;
}

    .dropdown .dropbtn, a {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 0;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .navbar a:hover, .profilelink a:hover, .dropdown:hover .dropbtn {
        /*background: linear-gradient(to bottom, #f4ae1b, #f3b821, #f2bb27, #f8c434, #f7c62f);*/
        background-color: var(--mainlColor);
        color: #fff;
        transition: background-color 0.3s linear;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 35px;
}

    .dropdown-content a {
        float: none;
        color: #11111190;
        padding: 8px 12px;
        text-decoration: none;
        display: block;
        text-align: left;
        border-bottom: 1px solid #11111120;
    }

        .dropdown-content a::after {
            content: "";
            position: absolute;
            top: 10%;
            left: 0;
            height: 80%;
            width: 0px;
            border-right: 2px solid var(--mainColor);
        }

        .dropdown-content a:hover {
            /*background: linear-gradient(to bottom, #f4ae1b, #f3b821, #f2bb27, #f8c434, #f7c62f);*/
            background-color: var(--mainlColor);
            color: #fff;
        }

        .dropdown-content a.Disabled-a {
            background-color: #9c9c9c60 !important;
                color: #11111140 !important;
        }
            .dropdown-content a.Disabled-a:hover {
                color: #11111140 !important;
            }

.dropdown:hover .dropdown-content {
    display: block;
}



.profilelink {
   
    display:flex;
    justify-content: center;
    align-items: center;
}

.profilelink a{
    text-decoration:none;
    padding:14.5px;
    color: #fff;
}

    .profilelink > a:nth-child(2) {
        text-decoration: underline;
        text-decoration-color: var(--mainColor);
    }

        .profilelink > a:nth-child(2):hover {
            text-decoration: underline;
            text-decoration-color: #ffffff;
        }

a.heading {
    /*border-bottom: 1px solid #f4ae1b;
    border-top: 1px solid #f4ae1b;
    color: #f4ae1b !important;*/
    border-bottom: 1px solid #111;
    color: #fcfcfc !important;
    /*background: linear-gradient(to bottom, #f4ae1b, #f3b821, #f2bb27, #f8c434, #f7c62f);*/
    background-color: var(--secColor);
    padding: 4px 12px !important;
}

a.heading:hover {
    border-bottom: 1px solid #111;
    color: #fcfcfc !important;
    background-color: var(--secColor);
    padding: 4px 12px !important;
}
