.navbar {
    /* display: flex;
    flex-wrap: wrap; */
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 125px;
    padding: 1% 2% 1% 8%;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}

#logo {
    /* display: flex;
    justify-content: flex-start; */
    float: left;
    padding: 10px;
    height: 100px;
}

.navbar ul {
    list-style: none;
    float: right;
    margin-top: 1.5%;
    padding: 0;
    display: flex;
}

.items {
    margin-top: 4%;
}

.navbar ul li a {
    color: #fff;
    padding: 0 1.5em;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    /* text-transform: uppercase; */
}

.navbar ul li a:hover {
    text-decoration: underline #0087ca 2px;
    text-underline-offset: 0.6em;
}

.barsNav {
    width: 38px;
    height: 5px;
    background: white;
    margin-top: 4px;
    border-radius: 8px;
}

.barsNavLi {
    margin-top: 30%;
    padding-right: 1.5em;
    display: none;
}

.navbarHamDiv {
    /* border: 2px solid red; */
    top: 0;
    position: fixed;
    right: 0;
    min-width: 150px;
    padding: 1em 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px 0px 0px 12px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10;
}

.navbarHamDiv.active {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.navbarHamDiv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px 0px 0px 16px;
    background: linear-gradient(126.6deg, #205689 28.69%, #0A3B67 100%);
    backdrop-filter: blur(30px);
    z-index: -10;
    opacity: 0.95;
}

.navbarHamDiv .home-nav-items {
    list-style: none;
    padding: 1em 1em;
    margin: 1.25rem 0;
    /* border: 2px solid green; */
}

.home-nav-items:hover {
    background-color: rgba(21, 121, 214, 1);
    /* background-color: rgba(32, 86, 137); */
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* background-color: #2266A5; */
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.navbarHamDiv .home-nav-items a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.navbarHam p {
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5em;
}

.navHomeList {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.nav-cross {
    position: absolute;
    top: 16px;
    right: 16px;
    display: block;
}

.nav-cross img {
    width: 24px;
}

.nav-cross svg {
    margin-top: 1em;
    z-index: 10;
}


/* Responive Styles */

@media only screen and (max-width:1190px) {
    .navbar ul li a {
        font-size: 18px;
    }
}

@media only screen and (max-width:1020px) {
    .navbar ul li a {
        font-size: 16px;
    }
    #logo img {
        width: 90%;
    }
}

@media only screen and (max-width:845px) {
    .navbar ul li a {
        font-size: 14px;
    }
    #logo img {
        width: 80%;
    }
}

@media only screen and (min-width:760px) {
    .navbarHamDiv {
        display: none;
    }
}

@media only screen and (max-width:760px) {
    .items {
        display: none
    }
    .barsNavLi {
        display: block;
    }
    #logo img {
        width: 80%;
    }
}

@media only screen and (max-width:455px) {
    #logo img {
        width: 70%;
    }
}

.none {
    display: none;
}


/* @media only screen and (max-width:340px) {
    #logo img {
        width: 65%;
    }
    .barsNav {
        width: 38px;s
        height: 4px;
    }
} */