* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    height: 67px;
    flex-grow: 0;
    padding: 7px 120px 4px 120px;
    background-color: #f5f5f5;
}

img.logo-nav {
    width: 80%;
}

ul.navbar-nav.menu {
    margin-left: 40px;
}

a.nav-link.active {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #016fc0;
    border: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #016fc0 !important;
}

.nav-link:focus,
.nav-link:hover {
    border: none !important;
}

a.nav-link {
    width: max-content;
    
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.menu a {
    position: relative;
    display: block;
    padding: 5px;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #010b67 6%, #015ab3 45%, #00b9ec 100%);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.menu a:hover::before {
    transform: scaleX(1);
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu[data-animation="center"] a::before {
    transform-origin: center;
}

.menu[data-animation="bonus"] a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.82, 0.94);
}

li.nav-item.dropdown {
    width: 140px;
    height: 35px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: 9px 0 12px 0;
    padding: 16px;
    border-radius: 4px;
    /* border: solid 1px #b3b3b3; */
    outline: none;
}

dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -10px !important;
    margin-top: var(--bs-dropdown-spacer);
}

span {
    width: 16px;
    height: 16px;
    flex-grow: 0;
    font-family: 'Font Awesome 5 Brands';
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #2e2e33;
}

img.globe-regular {
    position: relative;
    width: 16px;
    height: 16px;
    left: 1213px;
    left: -5px;
    top: -2px;
}



/************* Responsive ****************/

@media screen and (min-width: 320px) and (max-width: 480px) {
    .navbar {
        display: contents;
        width: 100%;
        height: 127px;
    }

    .navbar>.container-fluid {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }

    a.navbar-brand {
        display: flex;
        justify-content: center;
    }

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: relative;
        bottom: 10px;
    }

    ul.navbar-nav.menu {
        margin-left: 10px;
    }

    img.logo-nav {
        width: 70%;
    }

    button.navbar-toggler {
        border: none;
    }

    li.nav-item.dropdown {
        width: 58px;
        height: 31px;
        flex-grow: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        /* margin: -42px 0 12px 266px; */
        padding: 16px;
        border-radius: 4px;
        /* border: solid 1px #b3b3b3; */
        outline: none;
    }
    span.navbar-toggler-icon {
        outline: none;
    }
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }
    
}