
* {
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 55;
    background-color:#1e1a22b5;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar .brand {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar .brand img {
    height: 80%;
    margin-left: 50px;
    cursor: pointer;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.navbar .brand img:hover {
    transform: scale(1.05);
}

.navbar .links {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 30px;
    gap: 20px;
}

.navbar .links .main-link {
    outline: solid 1px transparent;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    align-items: center;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    position: relative;
}

.navbar .links .burger-menu {
    color: white;
    height: 100%;
    display: none;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar .links .main-link .fa-chevron-up {
    margin-left: 10px;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.3s;
}

.navbar .links .main-link:hover {
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d908;
}

.navbar .links .main-link:hover .fa-chevron-up {
    transform: rotate(180deg);
}

@keyframes blob {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.navbar .links .main-link .main-dropdown {
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color:#1e1a22b5;
    backdrop-filter: blur(20px);
    display: none;
    position: absolute;
    left: 0;
    top: 45px;
    width: -webkit-fill-available;
    animation: blob .5s cubic-bezier(.46, .43, .1, .99);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 20px;
    gap: 5px;
}

.navbar .links .main-link .main-dropdown .dropdown-link {
    width: 100%;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    outline: solid 1px transparent;
    outline-offset: -1px;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
}

.navbar .links .main-link .main-dropdown .dropdown-link i {
    color: white;
}

.navbar .links .main-link .main-dropdown .dropdown-link:hover {
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d908;
}

.navbar .links .main-link .main-dropdown .dropdown-link:active {
    outline: solid 1px #ffffff1a;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d91a;
}

.navbar .links .main-primary {
    outline: solid 1px #ffffffb2;
    outline-offset: -1px;
    border-radius: 8px;
    background-color: #9264c7;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    align-items: center;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    position: relative;
}

.navbar .links .main-primary:hover {
    background-color: #9f75cd;
}


.menu-burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.menu-burger {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background-color:#1e1a22b5;
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.menu-burger .burger-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    width: 100%;
    display: flex;
}

.menu-burger .burger-header img {
    height: 80%;
    margin-left: 10px;
}

.menu-burger .burger-header i {
    height: 80%;
    margin-right: 10px;
    cursor: pointer;
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d908;
    padding: 15px;
    color: white;
}

.menu-burger .links {
    width: 94%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
}

.menu-burger.open {
    left: 0;
}

.menu-burger .burger-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.menu-burger .close {
    cursor: pointer;
}


.menu-burger .main-link {
    margin-bottom: 10px;
    cursor: pointer;
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d908;
    width: 95%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    flex-direction: column;
}

.menu-burger .main-link .link-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-burger .main-link i {
    margin-right: 10px;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
}

.menu-burger .main-dropdown {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.menu-burger .main-dropdown .dropdown-link {
    outline: solid 1px #ffffff08;
    outline-offset: -1px;
    border-radius: 6px;
    background-color: #d9d9d908;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-burger .main-link.active .main-dropdown {
    display: flex;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
    animation: fade 0.5s cubic-bezier(.46, .43, .1, .99) forwards;
}

.menu-burger .main-link.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.menu-burger .main-primary {
    outline: solid 1px #ffffffb2;
    outline-offset: -1px;
    border-radius: 8px;
    background-color: #9264c7;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    align-items: center;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    width: 95%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.menu-burger .main-primary a {
    color: #ecf0f1;
    text-decoration: none;
}

@media (max-width: 956px) {
    .navbar .links {
        margin-right: 5px;
    }

    .navbar .brand img {
        margin-left: 10px;
    }
}

@media (max-width: 640px) {
    .menu-burger {
        width: 66%;
        right: -66%;
    }
}



@media (max-width: 470px) {
    .menu-burger {
        width: 100%;
        right: -100%;
    }
}