:root {
    --lasalleGreen: #087830;
}

/* #region  DEFAULTS */
/* DEFAULTS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #F0ECD7;
}

@media only screen and (max-width: 768px) {
    body::before {
        content: "page not available for this dimension";
        width: 100%;
        height: 100vh;
        background-color: white;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 500;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.disable-transitions * {
    transition: none !important;
}

a {
    all: unset;
    cursor: pointer;
}

/* fonts */
@font-face {
    font-family: "MonumentExtended";
    src: url('assets/fonts/MonumentExtended-Regular.otf') format("opentype");
}

/* #endregion */

/* #region  FONTS */
/* FONTS */

.font-extra-light {
    font-weight: 200;
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-extra-bold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

.italic {
    font-style: italic;
    margin-left: -5px;
    margin-right: 5px;
}

/* #endregion */

/* #region  NAVIGATION */
/* NAV */
nav {
    position: fixed;
    width: 100%;
    height: fit-content;
    z-index: 99;
    background-color: none;
    top: 2%;
}

.brand-container {
    display: inline-block;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 5px;
    top: 5%;
    left: 2%;
    position: absolute;
}

.brand .logo {
    position: relative;
}

.brand .logo .circle {
    height: 4.3em;
    width: 4.3em;
    background-color: black;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
}

.brand .logo .rectangle {
    position: absolute;
    width: 125%;
    height: 8px;
    background-color: #828282;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.brand .brand-name {
    font-size: 1.5em;
    position: relative;
}

.brand-name::after {
    content: "";
    width: 100%;
    height: 6px;
    background-color: #828282;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(-6deg);
}


/* nav btns */
.nav-btns {
    position: absolute;
    top: 5%;
    right: 2%;
    text-align: right;
}

.nav-btns ul li {
    font-weight: bold;
    padding: 5px;
    font-size: 1.2em;
    font-style: italic;
    color: #696969;
    position: relative;
}

.nav-btns a {
    width: fit-content;
    position: relative;
}

.nav-btns ul li a::after {
    content: "";
    position: absolute;
    background-color: black;
    height: 3px;
    width: 0;
    right: 0;
    bottom: 0;
    transform: translateY(200%);
    transition: 0.5s ease-in-out;
}

.nav-btns ul li:first-child {
    font-style: normal;
    color: #252525;
}

.nav-btns ul li:hover {
    color: #a2daaa;
    transition: 0.2s ease-in-out;
}

.nav-btns ul li:hover a::after {
    width: 100%;
}


/* #endregion */

/* #region  MAIN */
/* MAIN */
main {
    width: 100%;
    height: 100vh;
}

/* #region  heading */

/* heading */
.heading {
    position: relative;
    text-align: center;
    width: 100%;
    height: 50vh;
}

.title-container {
    position: absolute;
    padding: 1em 2em;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: linear-gradient(145deg, #ffffff59, #ffffff21);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid #ffffff42;
    border-top-color: #fffffffb;
    border-right-color: #ffffff31;
    border-bottom-color: #ffffff44;
    border-left-color: #ffffffc7;
    box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.2);
}

.title {
    font-size: 6rem;
    font-weight: 900;
    color: #252525;
    font-family: 'MonumentExtended', sans-serif;
}

.title-container p {
    font-weight: bold;
    padding: 0 1em;
    color: #525252;
}


/* #endregion */


/* #region  login choices */
/* login choices */
.login-choices-container {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 50%;
}

.login-choice {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.2vw;
}

.login-choice>div {
    width: 355px;
    height: 250px;
    background: linear-gradient(to right,
            #011603 50%,
            #E2E2E2 50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    background-size: 200% 100%;
    background-position: right bottom;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    color: #252525;
}

.login-choice>div:hover {
    background-position: left;
    color: white;
    transform: translateY(-7px);
}

.login-choice>div::before {
    content: "LOGIN";
    background-color: rgba(0, 0, 0, 0);
    width: 355px;
    height: 250px;
    position: absolute;
    z-index: 3;
    opacity: 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    transition: 0.4s ease-in-out 0.2s;
}

.login-choice>div:hover::before {
    opacity: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.login-choice>div>div {
    font-size: 3.5em;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

/* #endregion */


/* #region  rectangles */
/* rectangles */
.word-rectangle {
    width: 100%;
    height: 100%;
    background-color: red;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.4s ease-in-out 0.3s;
}

.college .word-rectangle {
    background: linear-gradient(#53F88B,
            #18AE00);
}

.college .word-01 {
    transform: rotate(4.56deg);
}

.college .word-02 {
    transform: rotate(-2.14deg);
}

.college .word-03 {
    transform: rotate(3.57deg);
}

.login-choice>div:nth-of-type(1):hover>div>.word-01 {
    transform: rotate(-4.56deg);
}

.login-choice>div:nth-of-type(1):hover>div>.word-02 {
    transform: rotate(2.14deg);
}

.login-choice>div:nth-of-type(1):hover>div>.word-03 {
    transform: rotate(-3.57deg);
}


.senior-high .word-rectangle {
    background: linear-gradient(#8FFF00,
            #29B926);
}

.senior-high .word-01 {
    transform: rotate(-5.75deg);
}

.senior-high .word-02 {
    transform: rotate(7.44deg);
}

.senior-high .word-03 {
    transform: rotate(-4.5deg);
}

.login-choice>div:nth-of-type(2):hover>div>.word-01 {
    transform: rotate(5.75deg);
}

.login-choice>div:nth-of-type(2):hover>div>.word-02 {
    transform: rotate(-7.44deg);
}

.login-choice>div:nth-of-type(2):hover>div>.word-03 {
    transform: rotate(4.5deg);
}


.ace-flexi .word-rectangle {
    background: linear-gradient(#FF001F,
            #B9267E);
    width: 120%;
    left: 50%;
    transform: translate(-50%, 0);
}

.ace-flexi .word-01 {
    transform: rotate(6.92deg) translate(-50%, 10%);
}

.ace-flexi .word-02 {
    transform: rotate(-0.46deg) translate(-50%, 0);
}

.ace-flexi .word-03 {
    transform: rotate(-5.36deg) translate(-50%, -5%);
}

.login-choice>div:nth-of-type(3):hover>div>.word-01 {
    transform: rotate(-6.92deg) translate(-50%, -10%);
}

.login-choice>div:nth-of-type(3):hover>div>.word-02 {
    transform: rotate(0.46deg) translate(-50%, 0);
}

.login-choice>div:nth-of-type(3):hover>div>.word-03 {
    transform: rotate(5.36deg) translate(-50%, 5%);
}

/* #endregion */

/* #endregion */

/* #region  BACKGROUND */
/* BACKGROUND */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 15%);
}

.svg-wave {
    width: 2573px;
    height: 381px;
    display: block;
    shape-rendering: auto;
    transform: rotate(180deg);
    border: none !important;
}

.svg-wave g path:nth-of-type(1) {
    transform: translateY(20%);
    fill: url(#path01-gradient);
}

.svg-wave g path:nth-of-type(2) {
    fill: url(#path02-gradient);
}

.svg-wave g path:nth-of-type(3) {
    transform: translateY(-20%);
    fill: #007C0C;
}

.waves-container .wave-bottom-filler {
    width: 100%;
    height: 31vh;
    background-color: #007C0C;
    border: none !important;
    display: block;
}


/* grid lines */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 100%;
    height: 100%;
}

.grid-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-image:
        linear-gradient(to right, transparent, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 3px, transparent 3px),
        linear-gradient(to bottom, transparent, transparent 2px, rgba(0, 0, 0, 0.25) 2px, rgba(0, 0, 0, 0.25) 3px, transparent 3px);
    background-size: 50px 50px;
}


/* spheres */
.sphere-container {
    width: 100%;
    height: 50vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9;
}

.sphere-container div {
    position: absolute;
    border-radius: 50%;
    left: 50%;
    background: rgb(14, 255, 139);
    background: radial-gradient(ellipse at right top,
            rgba(14, 255, 139, 1) 0%,
            rgba(22, 226, 171, 1) 22%,
            rgba(2, 204, 180, 1) 100%);
    box-shadow: 0px 0px 20px 5px rgba(2, 204, 180, 0.2);
    backdrop-filter: blur(10px);
}

.sphere-container div:nth-of-type(1) {
    width: 200px;
    height: 200px;
    bottom: 0;
    transform: translate(150%, 0);
    animation: sphere-color 10s ease-in-out infinite, sphere-move-01 2s ease-in-out infinite;
}

.sphere-container div:nth-of-type(2) {
    width: 150px;
    height: 150px;
    top: 10%;
    transform: translate(-350%, 0);
    animation: sphere-color 5s ease-in-out infinite, sphere-move-02 2s ease-in-out 1s infinite;
}

.sphere-container div:nth-of-type(3) {
    width: 100px;
    height: 100px;
    bottom: 0;
    transform: translate(-250%, 20%);
    animation: sphere-color 2.5s ease-in-out infinite, sphere-move-03 2s ease-in-out 2s infinite;
}

@keyframes sphere-color {
    0%, 100% {
        filter: saturate(1);

    }

    50% {
        filter: saturate(1000%);
    }
}

@keyframes sphere-move-01 {
    0%, 100% {
        transform: translate(150%, 0);
    }

    50% {
        transform: translate(150%, -20%);
    }
}

@keyframes sphere-move-02 {
    0%, 100% {
        transform: translate(-350%, 0);
    }

    50% {
        transform: translate(-350%, -20%);
    }
}

@keyframes sphere-move-03 {
    0%, 100% {
        transform: translate(-250%, 20%);
    }

    50% {
        transform: translate(-250%, 0%);
    }
}


/* #endregion */