.topnav {
    border-bottom: 1px solid #dedede;
}

.topnav-content {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow: hidden;
    font-weight: 400;
}

.topnav a {
    float: left;
    display: block;
    color: rgb(100, 100, 100);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    
}

.active-nav {
	background-color: #F2FFFF;
    border-bottom: 2px solid #CAEDED;
}

.ahover:hover {
    color: #03a4ed;
    border-bottom: 2px solid #03a3ed5f;
}

.navbadge {
    background-color: #03a4ed;
    color: white;
    padding: 0px 7px 3px 7px;
    border-radius: 15px;
    font-size: 14px;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-weight: 400;
    font-size: 17px;
    border: none;
    outline: none;
    color: rgb(100, 100, 100);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.dropdown-content a {
    float: none;
    color: rgb(100, 100, 100);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content-item {
    border-bottom: 1px dashed #03a3ed5f;
}

.dropdown-content-item:hover {
    color: #03a4ed;
    border-bottom: 1px dashed #03a3ed5f;
}

.dropdown-content-item-first {
    border-bottom: 1px dashed #03a3ed5f;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.dropdown-content-item-first:hover {
    color: #03a4ed;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.dropdown-content-item-last:hover {
    color: #03a4ed;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(240, 248, 255, 0.615);
    color: #03a4ed;
}


.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 620px) {

    .topnav {
        background-image: linear-gradient(0deg, rgba(0, 120, 175, 0.034),white);
    }

    .topnav a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav .dropdown {
        float: none;
    }

    .topnav .dropdown-content {
        position: relative;
    }

    .topnav .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }

    .dropdown-content {
        border-radius: 7px;
        margin: 5px;
        border: 1px solid #03a3ed5f;
    }

    .border-bottom {
        border-bottom: 2px solid white;
    }

}