/* Constants */
/*
:root {
--Color0: #4a0c73;
--Color1: #00365b;
--ColorC1: #eea57e;
--Color2: #253b37;
--Color3: #cfe8e2;
--Color4: #28887b;
--Color5: #00b299;
--Color6: #2a2b2a;
--Color7: #013050;
--Color81: #0076c5;
--Color8: #014e81;
--Color9: #b5c2ca;
--Color10: rgba(0, 0, 0, 0.2);
--Color11: rgba(0, 0, 0, 0.1);
--Color12: #970026;
--Color120: #ff0202;
--Color121: #300000;
--Color13: #5f031a;
--Color14: #fff;
--Color15: #000;
--Color16: rgb(37, 37, 37);
--Color17: rgb(15, 15, 15);
--Color18: #cbe7ff;
--RadiusBtn: 15px;
--RadiusInput: 20px;
--Color141: #dbdbdb;
}

*/
/* #0f0c29, #302b63, #24243e*/


/* BASIC */


/* --------------------------------- */


/* --------------------------------- */

.navbar {
    z-index: 9999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-inline: var(--margin-20);
    padding: 0;
}


/* --------------------------------- */

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    display: none;
}

.overlay.open {
    display: block;
}


/* --------------------------------- */

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0;
    /* margin-left: 20px; */
    list-style: none;
}

.nav-link {
    padding-inline: var(--padding-14);
    font-size: calc(15px + 6 * ((100vw - 320px) / 680));
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.nav-link:hover {
    color: #f7902f;
}


/* .nav-logo {
font-size: 2.1rem;
font-weight: 500;
} */

.nav-logo img {
    float: left;
    width: auto;
    height: 7rem;
    margin: 0;
    padding: 0;
}


/* --------------------------------- */


/*
.nav-links li a:hover::before {
width: 80%;
} */

.loginBtn {
    padding: 0.6rem 0.8rem;
    margin-inline: 2vw;
    color: white;
    cursor: pointer;
    background-color: var(--Color1);
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    font-size: var(--font-size-30);
    text-decoration: none;
}

.loginBtn:hover {
    color: #fff;
    background-color: #dd5f24;
    border: 1.5px solid #dd5f24;
    transition: all ease-in-out 350ms;
}


/* --------------------------------- */

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: var(--width-50);
    height: var(--height-6);
    margin: 10px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--Color8);
}

.toast-container {
    position: fixed;
}

.toast {
    display: flex;
    width: fit-content;
    max-width: 100%;
    background: var(--Color8);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.toast.toast-info {
    background: var(--Color8);
}

.toast.toast-error {
    background: var(--Color12);
}

/* --------------------------------- */

@media only screen and (max-width: 767px) {
    .nav-menu {
        margin-inline: 0;
        
        position: fixed;
        right: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #013050b2;
        width: min-content;
        min-width: var(--width-300);
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        padding: var(--padding-10);
        /* box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); */
    }

    .navbar {
        /*margin-inline: 0;*/
    }
    .nav-menu.active {
        right: 0;
    }

    .nav-logo img {
        height: 5rem;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        /* position : fixed; */
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar {
        margin: 3px auto;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(50deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-50deg);
    }
}