.navbar-logo .logo-wrap {
    max-height: 64px;
    height: 64px;
}

.navbar-logo .logo-wrap img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .navbar-logo .logo-wrap {
        max-height: 48px;
        height: 48px;
    }
}

.navbar-bg-solid {
    background-color: #00005c;
}

.nav-fixed-transparent {
    position: fixed !important;
    top: 0;
    z-index: 999999;
    width: 100%;
    background-color: transparent;
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

.nav-fixed-solid {
    position: fixed !important;
    top: 0;
    z-index: 999999;
    width: 100%;
    background-color: #00005c;
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

.navbar-bg-transparent {
    background-color: transparent;
}

.navbar-auth {
    position: fixed;
    top: 0;
    z-index: 999999;
    width: 100%;
    background-color: transparent;
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

@media screen and (max-width: 768px) {
    .navbar-auth {
        background-color: #00005c;
    }
}

nav .nav-item a {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: white;
    margin-left: 48px
}

@media screen and (max-width: 768px) {
    nav .nav-item a {
        margin: 5px 0;
    }
}

nav .nav-item.nav-divider {
    height: 2px;
    width: 100%;
    background-color: white;
}

nav .nav-item .nav-button {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: white;
    margin: 5px 0;
    padding: 8px 0;
    background-color: transparent;
}

nav .signin {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: white;

    background: #CF0A0A;
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
}

nav .dropdown .bt {
    background-color: #CF0A0A;
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    padding: 14px 22px 14px 28px;
    margin: 10px 0px 10px 48px;
    border-radius: 10px;
}

nav .dropdown .btn i {
    margin-left: 12px;
}

nav .dropdown .dropdown-toggle::after {
    display: none;
}

nav .dropdown .dropdown-menu {
    width: 250px;
    background-color: #7E0000;
    color: white;
    border-radius: 10px;
}

nav .dropdown .dropdown-menu .acct-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #CCC;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

nav .dropdown .dropdown-menu .email {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    margin: 5px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
}

nav .dropdown .dropdown-menu .dropdown-divider {
    border-top: 1px solid #FFF;
}

nav .dropdown .dropdown-menu .dropdown-item {
    padding: 5px 23px;
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

nav .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* Nav Links */


.nav-links-container {
    display: block;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-links-wrap .nav-links-item {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
}

.nav-links-wrap .nav-links-item a {
    color: #FFFFFF;
    text-decoration: none;
}

.nav-links-wrap .btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    background: #CF0A0A;
    border-radius: 10px;
    padding: 16px 32px;
    margin: 8px 0;
}

.nav-links-wrap .btn.nav-btn:hover {
    background-color: #7B0303;
}

.navbar-menu-toggler {
    display: none;
    cursor: pointer;
    margin-left: 16px;
    z-index: 1003;
}

.navbar-menu-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #CF0A0A;
}

.navbar-menu-toggler.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-menu-toggler.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-menu-toggler.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
}

.navbar-menu-body {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.navbar-menu-body.show-menu,
.navbar-menu-body.hide-menu,
.navbar-menu .image-wrap,
.navbar-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .nav-links-container {
        display: none;
    }

    .navbar-menu-toggler {
        display: block;
    }

    .navbar-menu-body.show-menu {
        display: block;
        -webkit-animation-name: fadeNavMenuIn;
        -webkit-animation-duration: 0.4s;
        animation-name: fadeNavMenuIn;
        animation-duration: 0.4s
    }

    .navbar-menu-body.hide-menu {
        display: block;
        -webkit-animation-name: fadeNavMenuOut;
        -webkit-animation-duration: 0.4s;
        animation-name: fadeNavMenuOut;
        animation-duration: 0.4s
    }

    .navbar-menu {
        display: none;
        position: fixed;
        z-index: 1001;
        right: 0;
        top: 60px;
        width: 200px;
        height: calc(100% - 100px);
        overflow: hidden;
        background-color: #00005C;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        border-radius: 20px 0 0 20px;
    }

    .navbar-menu.show-menu {
        display: block;
        animation: slideNavMenuIn 0.4s forwards;
        -webkit-animation: slideNavMenuIn 0.4s forwards;
    }

    .navbar-menu.hide-menu {
        display: block;
        animation: slideNavMenuOut 0.4s forwards;
        -webkit-animation: slideNavMenuOut 0.4s forwards;
    }

    .navbar-menu-links-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        margin-bottom: 0;
        list-style: none;
    }

    .navbar-menu-links-wrap li {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.06em;
    }

    .navbar-menu-button {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #FFF;
        border: none;
        background-color: transparent;
    }
    .navbar-menu-button:focus-visible {
        outline: none;
     }
    
    .navbar-menu-links-wrap li:not(:last-child) {
        margin-bottom: 20px;
    }

    .navbar-menu-links-wrap li a {
        color: #FFFFFF;
        text-decoration: none;
    }

    .navbar-menu-divider {
        height: 2px;
        width: 100%;
        margin-bottom: 20px;
        background-color: white;
    }

    .navbar-menu .image-wrap {
        display: block;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #CCC;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    }
}

@-webkit-keyframes fadeNavMenuIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeNavMenuIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeNavMenuOut {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeNavMenuOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideNavMenuIn {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

@-webkit-keyframes slideNavMenuIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideNavMenuOut {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

@-webkit-keyframes slideNavMenuOut {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
    }
}