* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    color: #ffffff;
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);

    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;

}   *::selection {
    background-color: #0088cc;
    color: #ffffff;

}   a {
    text-decoration: none;
    cursor: pointer;

}   img {
    user-select: none;
    
}

:root {
    --accent-color: #0088cc;
    --primary-color: #000000;

}   body {
    width: 100%;
    height: auto;

    min-height: 100svh;
    background-color: #000000;

}

/* Fonts */
.__font_edu {
  font-family: "Edu NSW ACT Hand Pre", cursive;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0e0e0e; 
}
::-webkit-scrollbar-thumb {
    background: #242424; 
}
::-webkit-scrollbar-thumb:hover {
    background: #242424; 
}

/* Splash Screen */
.splash {
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;
    height: 100lvh;

    background-color: var(--primary-color);
    color: #ffffff;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    transition: .3s ease-out;

}   .splash.hide {
    pointer-events: none;
    opacity: 0;

    z-index: -10;

}   .splash svg {
    pointer-events: none;
    width: 50px;
    aspect-ratio: 747/911;

}   .splash svg path {
    transition: .3s ease-out;

    stroke-dasharray: 500;
    stroke-dashoffset: 2928;

    animation: load 2s linear infinite;

}

@keyframes load {
    0% {
        stroke-dashoffset: 2928;
        scale: 1;

    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;

    }   
}

/* Navigation */
nav {
    --y-position: 0;
    --background: transparent;

    --transition-duration: 0s;
    --hover-color: #ffffff;

    user-select: none;
    padding: 0 30px;

    position: fixed;
    z-index: 100;

    top: var(--y-position);
    left: 0;
    
    width: 100%;
    height: 70px;

    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    background: var(--background);
    transition: var(--transition-duration) ease-out;
    
}   nav .logo {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

}   nav .logo img {
    width: 35px;

}   nav .logo span {
    font-size: 18px;
    
}   nav ul.menu {
    position: relative;
    z-index: 1;

    list-style: none;

    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    gap: 20px;

}   nav ul li {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

}   nav ul li a {
    font-size: 15px;
    transition: .3s ease-out;

    transform: scale(1);

}   nav ul li a:hover {
    animation: .5s __ani_nav_action ease-out forwards;

}

nav #_mob-btn {
    position: relative;
    cursor: pointer;

    width: 50px;
    height: 35px;   

    transition: .2s ease-out;
    z-index: 950;

    display: none;
    
}   nav #_mob-btn span {
    position: absolute;

    width: 100%;
    height: 5px;

    background-color: #ffffff;
    border-radius: 50px;

    transition: top .3s ease-out .15s,
                bottom .3s ease-out .15s,
                transform .3s ease-out,
                opacity .3s ease-out;
    transform-origin: center;

}   nav #_mob-btn span:nth-child(1) {
    top: 0px;
    left: 0px;

}   nav #_mob-btn span:nth-child(2) {
    top: 15px;
    left: 0px;

}   nav #_mob-btn span:nth-child(3) {
    bottom: 0px;
    left: 0px;

}   nav #_mob-btn.close span {
    background-color: #ffffff;
    transition: top .3s ease-out,
        bottom .3s ease-out,
        transform .3s ease-out .15s,
        opacity .3s ease-out .2s;

    
}   nav #_mob-btn.close span:nth-child(1) {
    top: 15px;
    transform: rotateZ(225deg);
    
}   nav #_mob-btn.close span:nth-child(2) {
    transform: rotateZ(225deg);
    opacity: 0;
    top: 15px;
    
}   nav #_mob-btn.close span:nth-child(3) {
    transform: rotateZ(135deg);
    bottom: 15px;

}

@keyframes __ani_nav_action {
    0% {
        transform: scale(1);

    }   50% {
        transform: scale(1.1);

    }   100% {
        transform: scale(1);
        color: var(--hover-color);

        font-weight: bold;
    }
}

/* Content */
.__content {
    width: 100%;
    height: auto;

    min-height: 100svh;
}

/* Circles */
.circle {
    --delay: 0s;
    
    position: absolute;
    z-index: -1;

    top: -50lvh;
    right: -50vw;

    width: 30px;

    aspect-ratio: 1/1;
    height: auto;

    border-radius: 50%;
    background: #5bc8ff;

    filter: blur(15px);

    animation: cir__ani 60s var(--delay) ease-in-out infinite;
}

@keyframes cir__ani {
    0% {
        transform: translateX(0) translateY(0) scale(1);

    }   15%  {
        transform: translateX(-100vw) translateY(100dvh) scale(1.5);

    }   30% {
        transform: translateX(-200vw) translateY(0) scale(.4);

    }   45% {
        transform: translateX(-200vw) translateY(200svh);

    }   55% {
        transform: translateX(-50vw) translateY(100svh);

    }   70% {
        transform: translateX(-150vw) translateY(150svh);

    }   80% {
        transform: translateX(-150vw) translateY(50svh);

    }   100% {

    }
}

/* Footer */
footer {
    user-select: none;

    width: 100%;
    height: auto;

    padding: 10px 20px;
    background-color: #111111;

    text-align: center;
    
    font-size: 12px;
}

section {
    width: 100%;
    height: auto;

    background: var(--primary-color);
    padding: 70px;

}   section h2:not(.__exclude) {
    font-size: 30px;
    color: transparent;

    text-transform: uppercase;

    background: linear-gradient(90deg, var(--accent-color), var(--accent-color), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
}  .cards {
    width: 100%;

    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    gap: 5px;

}   .cards .card {
    flex-grow: 1;
    max-width: 140px;
    width: 100%;
    height: auto;

    padding: 10px;
    border-radius: 5px;
    background: #222222;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 10px;

}  .cards .card img {
    pointer-events: none;
    width: 100%;
    transition: .5s;

}   .cards .card span {
    font-size: 15px;
    opacity: 1;
    transition: .5s;

}   .cards:hover .card:not(:hover) img {
    transition: 1s;
    filter: grayscale(1);
    opacity: .4;

}   .cards:hover .card:not(:hover) span {
    transition: 1s;
    opacity: .4;

}

/* CTA */
section.cta {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding-top: 0 !important;

}   section.cta .c {
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    background: #111111;
    border-radius: 5px 30px;

    padding: 15px 50px;
    
}   section.cta a {
    margin-top: 10px;

}   section.cta h2 {
    font-size: 30px;
    color: #ffffff;

    font-weight: bold;
    text-transform: uppercase;
}

section.sm {
    position: relative;
    z-index: 5;

    width: 100%;
    height: 50px;

    padding-bottom: 5px !important;

    background: transparent;

    display: flex;
    flex-direction: row;

    justify-content: flex-start;
    align-items: center;

    user-select: none;
    gap: 10px;

}   section.sm .spacer {
    flex-grow: 1;
    width: auto;
    height: 1px;

    background: #ffffff;
    opacity: .4;

}   section.sm a {
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    font-size: 16px;
    gap: 5px;

    opacity: .4;
    transition: .3s ease-out;

}   section.sm a:hover {
    opacity: 1;

}   section.sm a img {
    aspect-ratio: 1/1;
    width: 25px;
    object-fit: cover;

}

a.button {
    position: relative;
    z-index: 1;
    
    background-color: var(--accent-color);
    color: #ffffff;

    padding: 10px;
    border-radius: 5px;

    overflow: hidden;
    transition: .3s ease-out;
    
}   a.button::after {
    content: '';
    position: absolute;
    z-index: -1;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #5bc8ff;

    clip-path: circle(0%);
    transition: .3s ease-out;

}   a.button:hover::after {
    clip-path: circle(100%);

}



@media (max-width: 700px) {
    section {
        padding: 30px;
    }
}

@media (max-width: 550px) {
    nav #_mob-btn {
        display: flex;

    }   nav ul.menu {
        position: fixed;
        z-index: 90;
        
        top: 0;
        right: -280px;

        background: rgba(9, 9, 9, 0.9);
        backdrop-filter: blur(10px);
        
        width: 280px;
        height: 100dvh;

        flex-direction: column;
        gap: 0;

        transition: .3s ease-out;
        
    }   nav ul.menu.show {
        transform: translateX(-100%);
        
    }   nav ul.menu li {
        width: 100%;
        
    }   nav ul.menu li a {
        width: 100%;
        height: auto;

        padding: 10px;
        background: transparent;

        text-align: center;
        transition: .3s ease-out;

        font-size: 20px;

    }   nav ul.menu li a:hover {
        color: #ffffff;
        animation: none;

        background: #111111;
    }
}

@media (max-width: 400px) {
    section {
        padding: 70px 20px;

    }   section h2 {
        font-size: 25px;

    }
}