@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #327dd3;
  --primary-dark: #1159ac;
  --secondary: #805be7;
  --secondary-dark: #5834bb;
  --secondary-very-dark: #231058;
  --accent: #ee2e2f;
  --accent-dark: #c01e1e;
  --accent-very-dark: #5e0707;
  --bg: #ffffff;
  --bg-semi-dark: #e6e6e6;
  --bg-dark: #d3d3d3;
  --bg-very-dark: #8e9194;
  --text: #20242f;
  --text-light: #2c354e;
  --text-semi-dark: #1a1b21;
  --text-dark: #13161b;
}

*, *::before, *::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body{
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::selection{
    background-color: #3755b6;
}

a:hover{
    text-decoration: none;
}

.alert{
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 10000;
    transition: opacity 1s ease-in-out;
}

.alert.hide {
    opacity: 0;
}

button, button:focus {
    outline: none;
}

/* ------------------- Prompt ------------------- */

.prompt-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    background: #51515140;
    backdrop-filter: blur(5px);
    z-index: 10000;
}

.prompt-form {
    width: 50%;
    height: 30%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: #000613;
    color: white;
    border-radius: 1rem;
    /* border: 5px solid #535353; */
    border: 5px solid #eeeeee;
    overflow: hidden;
}

.prompt-span-container {
    width: 100%;
    height: 70%;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.prompt-form .buttons {
    width: 100%;
    height: 30%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.prompt-buttons-form {
    width: 50%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.prompt-buttons-form a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border: none;
    border-top: 1px solid #1E4A82;
    /* background: #c7c7c7; */
    background: #000613;
    color: white;
    transition: .25s ease;
}

.prompt-buttons-form a:hover {
    background: #6091cf;
}

/* ------------------- End Prompt ------------------- */

/* ------------------- Navbar ------------------- */
.navbar-logo{
    position: fixed;
    z-index: 1001;
    height: 50px;
    margin: .7rem 0;
    left: 7%;
}

.navbar-logoW{
    position: fixed;
    z-index: 1001;
    height: 50px;
    margin: .7rem 0;
    left: 7%;
    opacity: 0;
}

.navbar{
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition: 0.5s ease;
    opacity: 1;
    pointer-events: none;
    /* backdrop-filter: blur(5px); */
}

.nav-item{
    pointer-events: all;
}

.navbar::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.41780462184873945) 50%, rgba(0,10,33,0.5606617647058824) 93%);
    background: -webkit-linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.41780462184873945) 50%, rgba(0,10,33,0.5606617647058824) 93%);
    background: linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.41780462184873945) 50%, rgba(0,10,33,0.5606617647058824) 93%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000a21",GradientType=1);
    z-index: 0;
    pointer-events: none;
    transition: 0.5s ease;
}

.navbar.scrolled::before {
    transition: 0.5s ease;
    background: rgb(0,6,19);
    background: -moz-linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.65) 45%, rgba(0,10,33,1) 93%);
    background: -webkit-linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.65) 45%, rgba(0,10,33,1) 93%);
    background: linear-gradient(0deg, rgba(0,6,19,0) 0%, rgba(0,10,33,0.65) 45%, rgba(0,10,33,1) 93%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000a21",GradientType=1);
}

.navbar nav{
    display: flex !important;
    justify-content: flex-end !important;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: 150px;
}

.navbar ul{
    z-index: 20;
    display: flex;
    list-style: none;
    align-items: center;
    height: 75px;
    margin-right: 0.5rem;
}

.navbar li{
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar ul a{
    text-decoration: none;
    color: white;
    padding: 0px 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-link{
    background: transparent;
    color: white;
    border: none;
    transition: .25s ease-out;
}

.nav-link:hover{
    color: #58a0ff;
}

/* Navbar Toggler */
.hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    cursor: pointer;
    padding: 20px;
    display: flex;
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For Internet Explorer and Edge */
    user-select: none; /* Standard syntax */
}

.hamburger input {
    display: none;
}

.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 2em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* End Navbar Toggler */
/* ------------------- End Navbar ------------------- */

/* ------------------- Sidebar ------------------- */


.sidenav {
    width: 0;
    position: fixed;
    z-index: 1002;
    right: 0;
    bottom: 0;
    padding-top: 4rem;
    transition-property: width;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.5s ease;
}

.sidenav::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 150%;
    background: rgb(0,10,33);
    background: -moz-linear-gradient(270deg, rgba(0,10,33,0.9023984593837535) 0%, rgba(0,10,33,0.6362920168067228) 34%, rgba(0,10,33,0.23853291316526615) 75%, rgba(0,6,19,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(0,10,33,0.9023984593837535) 0%, rgba(0,10,33,0.6362920168067228) 34%, rgba(0,10,33,0.23853291316526615) 75%, rgba(0,6,19,0) 100%);
    background: linear-gradient(270deg, rgba(0,10,33,0.9023984593837535) 0%, rgba(0,10,33,0.6362920168067228) 34%, rgba(0,10,33,0.23853291316526615) 75%, rgba(0,6,19,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000613",endColorstr="#000613",GradientType=1);
}

.sidenav a,
.sidenav button,
.Logout-li,
.profile-link {
    position: relative;
    z-index: 1500;
    width: 300px;
    justify-content: end;
    padding: 1.5rem 1rem;
    overflow-x: hidden;
    text-decoration: none;
    font-size: 1.25rem;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    transition: all 0.3s ease, margin-top 1ms;
    white-space: nowrap;
    border: none;
}

.sidenav a:hover,
.sidenav button:hover,
.sidenav a:hover + .icon-container,
.sidenav button:hover + .icon-container{
    color: #58a0ff;
    /* background-color: var(--text-dark); */
}

.Logout-li:hover {
    color: var(--bg);
    background-color: var(--accent-dark) !important;
}

.profile-link:hover {
    text-decoration: none;
    color: var(--bg);
    background-color: var(--text-dark) !important;
}

.sidenav .closebtn {
    top: 0;
    right: 0;
    background-color: transparent;
}

.sidenav a.active,
.sidenav button.active {
    color: var(--secondary);
}

.sidenav a.active::before,
.sidenav button.active::before {
    content: "";
    position: absolute;
    right: 13px;
    top: 38%;
    width: 3px;
    height: 24%;
    background: var(--secondary);
    border-radius: 50px;
    transition: all 0.5s ease;
}

.icon-container {
    width: 50px;
    display: flex;
    justify-content: center;
    float: left;
}

.logout,
.logout:active,
.logout:focus,
.logout:focus-within,
.logout:focus-visible,
.logout:visited,
.logout:target{
    background:none !important;
    border: none !important;
    outline: none !important;
}

.logout:hover{
    color: var(--accent-dark) !important;
}

/* ------------------- End Sidebar ------------------- */


/* ------------------- Snap Scrolling ------------------- */

/* ------------------- End Snap Scrolling ------------------- */

@media (max-width: 1100px){
    .sidenav::before{
        background: rgba(0, 6, 19, .9);
    }

    .prompt-form {
        width: 70%;
    }
}

@media (max-width: 800px){
    .navbar-logo{
        height: 45px;
    }
    .navbar-logoW{
        height: 45px;
    }

    .navbar ul a{
        padding: 0 0.7rem;
        font-weight: 500;
        font-size: 1rem;
    }
}

@media (max-width: 550px){

    .prompt-form {
        width: 90%;
    }
}
