@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flyup {
    0% {
      bottom: 0px;
    }
    100% {
      bottom: 40px;
    }
  }

.navbar {
    font-family: var(--global-primary-font-family), sans-serif;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    background-image: linear-gradient(to bottom, rgba(1,1,1,0.47), rgba(1,1,1,0.17), rgba(1,1,1,0));
    height: 90px;
    display: flex;
    justify-content: space-between;
    transition: all .2s linear;
    padding-top: 4.5rem;
    /*backdrop-filter: blur(10px);*/
}

@media (max-width: 1024px) {
    .navbar {
        flex-direction: column;
        padding-top: 2rem;
    }

    .navbar a:is(.navbar-item) {
        display: none;
    }
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 30%;
    /*padding-left:21.5%;*/
}

@media (max-width: 1024px) {
    .logo-container {
        padding-left: 2%;
        min-height: 90px;
        width: 98%;
    }
}

.logo-container a {
    height: 100%;
}

.logo-spacer {
    flex-grow: 0;
    flex-shrink: 0;
}


.logo-image {
    top: 1%;
    height: 80%;
    left: 2%;
    max-width: 100%;
    z-index: 21;
    padding-left: 3%;
    pointer-events: none;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0s;
    align-self: center;
    position: relative;
}
@media (max-width: 769px) {
    .logo-image {
        padding-left: 0%;
    }
}

.total-container {
    max-width: 1500px;
    width: 90%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .total-container {
        min-width: 0px;
        margin-left: 5%;
        flex-direction: column;
        height: fit-content;
    }
}

.item-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /*padding-right: 20.5%;*/
    background-image: linear-gradient(to right, rgba(34,35,33,0.47), rgba(34,35,33,0.25));
    position: relative;
    margin: 18px;
    border-radius: 30px;
    height: 55px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
    .item-container {
        flex-direction: column;
        align-items: start;
    }
}

.navbar-item {
    float: right;
    display: flex;
    color: #fff;
    text-align: center;
    padding: 8px 32px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    z-index: 19;
}
@media (max-width: 769px) {
    .navbar-item {
        display: none;
        width: 80%;
        text-align: left;
        pointer-events: auto;
    }
}

.navbar-item:hover {
    color: var(--global-colour-text-link);
}

.navbar-item-menu {
    display: none;
    width:38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255,0.2);
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .navbar-item, .navbar-item-menu {
        display: flex;        
    }
}

.navbar-item-menu img {
    width: 50%;
    height: 50%;
    font-family: "eicons";
    opacity: 0.6;
    filter: invert(1)
}

.navbar-link {
    position: relative;
    z-index: 20;
}
/*.navbar-link:after {
    content: "";
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 1px;
    width: 100%;
    animation-name: fade-out;
    animation-duration: 0.3s;
    transform: scaleX(0);
    transition: 0.3s;
}
.navbar-link:hover::after {
    animation-name: fade-in;
    animation-duration: 0.3s;
    transform: translateY(0%);
}*/