.navbar {
    padding-left: 5%;
    padding-right: 5%;
    background: rgba(240, 240, 243, 1);
    display: flex;
    padding-top: 1%;
    padding-bottom: 1%;
    position: sticky;
    top: 0;
    z-index: 2;
    height: 80px;
}

body {
    margin: 0px;
}

.logo {
    width: 40%;
    display: flex;
    align-items: center;
}

.full-buttons {
    width: 60%;
    display: flex;
}

.button-groups {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 10px 10px 30px 0px rgba(174, 174, 192, 0.4);

    border-radius: 98px;
    padding-left: 2%;
    padding-right: 2%;

}

.button-group-borders {
    width: 100%;
}



.home-wrapper {
    text-decoration: none;
    text-align: center;
}

.text-wrapper {
    font-family: Quicksand;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
}


.text-wrapper:hover {
    background: rgba(29, 36, 43, 1);
    font-family: Quicksand;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    padding: 10%;
    padding-left: 15%;
    padding-right: 15%;
    border-radius: 98px;
    width: 100%;
}


.active div {
    background: rgba(29, 36, 43, 1);
    font-family: Quicksand;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    padding: 10%;
    padding-left: 15%;
    padding-right: 15%;
    border-radius: 98px;
    width: 90%;
}

img.img-logo {
    border-radius: 16px;
    /* box-shadow: 10px 10px 30px 0px rgba(174, 174, 192, 0.4); */
    width: 35%;

}

.img-drop {
    display: none;
}

.drop-menus {
    display: none;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(108, 183, 230, 1);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #555;
     */
    background: rgb(94, 181, 235);
}

a#home {
    display: flex;
    justify-content: center;
}



@media(max-width:1024px) {
    .logo {
        width: 30%;
    }

    .full-buttons {
        width: 70%;
    }

    .img-logo {
        width: 90%;
    }

}


@media(max-width:768px) {
    .logo {
        width: 15%;
    }

    .full-buttons {
        width: 85%;
    }

    .img-logo {
        width: 90%;
    }

    .text-wrapper {
        font-size: 12px;
    }

    .active div {
        font-size: 12px;
    }


}


@media(max-width:500px) {
    .img-drop {
        display: block;
    }

    .full-buttons {
        display: none;
    }

    .logo {
        width: 50%;
    }

    .dropdown-img {
        width: 50%;
    }

    .img-drop {
        float: right;
        width: 25%;
    }

    .drop-menus {
        display: none;
        text-align: center;
        /* padding-left: 5%;
        padding-right: 5%;
        z-index: 100; */

    }

    .drop-menu-ul {
        list-style: none;
        padding: 0;
        margin: 0;
        box-shadow: 10px 10px 30px 0px rgba(174, 174, 192, 0.4);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-bottom: 3%;
        padding-top: 3%;
    }



    a.drop-meu-li {
        text-decoration: none;
        font-family: Quicksand;
        font-size: 12px;
        font-weight: 400;
        color: rgba(0, 0, 0, 1);

    }



    .drop-menu-ul li {
        padding: 0;
        margin: 0;
        padding-top: 1%;
        padding-bottom: 1%;
    }


    .drop-menu-ul li:hover {
        background-color: black;

    }

    .drop-menu-ul li:hover a {
        color: white;
    }

    img.img-logo {
        width: 75%;
    }






}