* {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
}

:root {
    --main-color: rgb(0, 128, 255);
    --main-color-dark: rgb(0, 39, 122);
    --background-color: rgb(32, 32, 32);
    --secondary-background-color: rgb(19, 19, 19);
    --third-background-color: rgb(30, 30, 30);

    --text-primary-color: rgb(255, 255, 255);

    --main-font: Anta;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(32, 32, 32, 0.582);
}

body {
    width: 100vw;
    overflow-x: hidden;
    background-color: rgb(15, 15, 15);

}

@font-face {
    font-family: "Orbitron";
    src:
        local("Orbitron"),
        url("../resources/fonts/Orbitron-Bold.ttf") format("truetype"),
        /*url("../resources/fonts/Orbitron-Bold.ttf") format("truetype"),*/
}

@font-face {
    font-family: "PermanentMarker";
    src:
        local("PermanentMarker"),
        url("../resources/fonts/PermanentMarker-Regular.ttf") format("truetype"),
}

@font-face {
    font-family: "Nebularise";
    src:
        local("Nebularise"),
        url("../resources/fonts/NEBULA-RISE-corrected.otf") format("opentype"),
}

@font-face {
    font-family: "LakesNeue";
    src:
        local("LakesNeue"),
        url("../resources/fonts/LakesNeue.ttf") format("opentype"),
}

@font-face {
    font-family: "LakesNeue-Italic";
    src:
        local("LakesNeue-Italic"),
        url("../resources/fonts/LakesNeue-Italic.ttf") format("opentype"),
}

@font-face {
    font-family: "NovaSquare";
    src:
        local("NovaSquare"),
        url("../resources/fonts/NovaSquare-Regular.ttf") format("opentype"),
}

@font-face {
    font-family: "Anta";
    src:
        local("Anta"),
        url("../resources/fonts/Anta-Regular.ttf") format("opentype"),
}

/* HEADER */

#header {
    padding: 15px;
    box-sizing: border-box;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 23, 35, 0) 100%);
    transition: 0.3s;
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
}

#top {
    /*position: relative;
    height: 80vh;*/
}

.gradient {
    background: linear-gradient(270deg, #585858, #1c1c1c);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 0s ease infinite;
    -moz-animation: AnimationName 0s ease infinite;
    animation: AnimationName 0s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}



@-webkit-keyframes slide {
    0% {
        margin: 10vh auto 10vh -50vw;
        filter: opacity(0%);
    }

    50% {
        filter: opacity(0%);
    }

    100% {
        margin: 10vh auto 10vh 47vw;
        filter: opacity(100%);
    }
}

@keyframes slide {
    0% {
        margin: 10vh auto 10vh -50vw;
        filter: opacity(0%);
    }

    50% {
        filter: opacity(0%);
    }

    100% {
        margin: 10vh auto 10vh 47vw;
        filter: opacity(100%);
    }
}

#header-content {
    width: 80%;
    margin: 0% 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#header-logo-container {
    display: flex;
    flex: 1;
    align-items: center;
}

#header-logo {
    transition: 0.3s;
    height: 2.5vh;
}

#header-logo:hover {
    cursor: pointer;
    filter: grayscale(0.3);
    transform: scale(1.015);
}

#header-nav-container {
    flex: 2;
    transition: 0.3s;
}

#header-nav {
    list-style: none;
    text-align: right;
}

#header-nav a:not([id="joinus"]) {
    display: inline;
    line-height: 4vh;
    color: white;
    font-family: Anta;
    font-weight: bold;
    margin: 0 15px;
    transition: 0.3s;
    text-decoration: none;
}

#header-nav li:hover {
    cursor: pointer;
}

#mobile-header-nav-container {
    /*display: none;*/
}

#mobile-menu {
    color: white;
    text-decoration: none;
    display: none;
}

#mobile-menu:hover {
    cursor: pointer;
}

/* HOVER UNDERLINE ANIMATION */

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: var(--main-color);
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 80%;
    margin: -3px 10%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    transform-origin: bottom center;
    transition: transform 0.1s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
}


.hover-underline-animation-white {
    display: inline-block;
    position: relative;
    color: white;
}

.hover-underline-animation-white::after {
    content: '';
    position: absolute;
    width: 80%;
    margin: -3px 10%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: white;
    background: linear-gradient(18deg, white 0%, white 100%);
    transform-origin: bottom center;
    transition: transform 0.1s ease-out;
}

.hover-underline-animation-white:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

/* HOVER UNDERLINE ANIMATION */

#joinus {
    display: inline-block;
    color: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    font-family: Anta;
    padding: 11px;
    box-sizing: border-box;
    /*background: var(--main-color);*/
    background: white;
    border-radius: 100px;
    transition: 0.3s;
    text-decoration: none;
}

#joinus:hover {
    background-position: 100%;
    transform: scale(1.06);
    filter: grayscale(40%);
}

/* BANNER */

#banner-container {
    width: 100%;
    /*position: absolute;
    top: 0;
    z-index: -1;*/
    /*filter: opacity(70%);
    background-color: var(--main-color);*/
}

#banner {
    height: 60vh;
    overflow: hidden;
}

#banner-text {
    height: 35vh;
    position: absolute;
    top: 0;
    margin: 10vh auto 10vh -50vw;
    z-index: 1;
    -webkit-animation: slide 1s forwards;
    animation: slide 1s forwards;
}

#banner-overlay {
    height: 60vh;
    position: absolute;
    top: 0;
}

#banner-video {
    width: 100vw;
    min-width: 100%;
    /*margin-top: -12%;*/
    background-color: black;
}

/* TAGLINE */

#tagline-container {
    position: relative;
    background: rgb(26, 26, 26);
    background: linear-gradient(0deg, rgb(16, 16, 16) 84%, rgba(255, 255, 255, 0) 100%);
    padding: 4vh 0 2vh 0;
    margin-top: -4vh;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#tagline-container h1 {
    color: white;
    text-align: center;
    font-family: Orbitron;
    font-size: 6vh;
    filter: drop-shadow(0 0 1rem black);
}

#caroussel-container {
    background-color: var(--secondary-background-color);
}

#caroussel {
    width: 90%;
    margin: 0 5%;
    display: flex;
    flex-direction: row;
    padding: 2%;
    box-sizing: border-box;
    overflow: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

#caroussel img {
    height: 40vh;
    padding: 1%;
    box-sizing: border-box;
    flex: 1;
    border-radius: 20px;
}

#caroussel :first-child {
    margin-left: 0;
}

#facts-container {
    position: relative;
}

#facts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 20vh;
    width: 80%;
    margin: 0 10%;
    justify-content: space-between;
}

#facts div {
    width: auto;
    background-color: white;
    padding: 2%;
    box-sizing: border-box;
    margin: 0 3%;
    margin-top: -10vh;
    border-radius: 10px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

#facts div h1 {
    color: #252525;
    text-align: center;
    font-family: Orbitron;
    font-size: 60px;
    font-weight: bold;
}

#facts div p {
    color: #1c1c1c;
    text-align: center;
    font-family: Orbitron;
}

#idris-decoration {
    width: 100%;
    overflow: hidden;
}

.image-container {
    /*height: 90vh;*/
    max-height: 90vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#allies-container {
    overflow-x: hidden;
    background-color: var(--secondary-background-color);
    /*background-image: url(/resources/images/png/idris.jpg);*/
    background-size: cover;
    /*background: rgb(46, 46, 46);
    background: linear-gradient(0deg, rgba(46, 46, 46, 1) 85%, rgba(255, 255, 255, 0) 100%);*/
    align-items: center;
    justify-content: center;
    justify-items: center;
}

#allies-container>h1 {
    width: 100%;
    color: white;
    padding: 2%;
    box-sizing: border-box;
    text-align: center;
    font-family: Orbitron;

    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7819502801120448) 30%, rgba(255, 255, 255, 0) 100%);
    text-transform: uppercase;
}

#allies {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /*height: 40vh;*/
    /*height: calc(100% + 50%);*/
    justify-content: space-between;
    scrollbar-width: none;
    /*overflow-x: scroll;
    overflow-y: visible;*/
    width: 80%;
    padding-bottom: 3%;
}

/*#allies :first-child {
    margin-left: 10%;
}*/

#allies>img {
    height: 12vh;
    transition: 0.3s;
    overflow: visible;
    pointer-events: hover;
}

#allies>img:hover {
    scale: 110%;
    cursor: pointer;
}

#allies-card {
    position: relative;
    width: auto;
    background-color: rgba(255, 255, 255, 0.76);
    padding: 2%;
    box-sizing: border-box;
    margin: 0 3%;
    border-radius: 10px;
    filter: drop-shadow(0 0 0.25rem black);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex: 1 1 0;
    width: 0;
    margin-top: 10vh;
    margin-bottom: 20px;
    align-self: stretch;
}

#allies-card>img {
    width: 90%;
    padding: 2%;
    box-sizing: border-box;
    margin: 0 3%;
    margin-top: -10vh;
    border-radius: 10px;
    filter: drop-shadow(0 0 0.25rem black);
}

#allies-card h1 {
    color: #252525;
    text-align: center;
    font-family: Orbitron;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5%;
}

#allies-card p {
    color: #1c1c1c;
    text-align: center;
    font-family: Orbitron;
}

#allies-bottom-text>p {
    color: white;
    text-align: center;
    font-family: Orbitron;
    padding: 0% 10% 2% 10%;
}

#allies-socials-logos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: -1vw;
    left: 0;
}

.allies-socials-icon {
    display: flex;
    margin-top: 5%;
    margin-right: 2%;
    padding: 1%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    transition: 0.3s;
}

.allies-socials-icon:hover {
    scale: 1.1;
}

.allies-socials-icon img {
    width: 80%;
    margin: auto;
    /* Magic! */
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(149deg) brightness(108%) contrast(101%);
}

#allies-bottom-text {
    padding-top: 5vh;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 80%, rgba(255, 255, 255, 0) 100%);
    padding-bottom: 5vh;
    align-items: center;
    text-align: center;
    width: 100%;
}

#allies-bottom-text button {
    display: block;
    margin: 0 auto;
    margin-top: 2vh;
}






#division-container {
    overflow-x: hidden;
    background-color: var(--secondary-background-color);
    /*background-image: url(/resources/images/png/idris.jpg);*/
    background-size: cover;
    /*background: rgb(46, 46, 46);
    background: linear-gradient(0deg, rgba(46, 46, 46, 1) 85%, rgba(255, 255, 255, 0) 100%);*/
}

#division-caroussel {
    width: 90%;
    margin: 0 5%;
    display: flex;
    flex-direction: row;
    padding: 2%;
    box-sizing: border-box;
    overflow: auto;
    white-space: nowrap;
    scrollbar-width: none;
    align-items: center;
    justify-content: space-around;
}

#division-container>h1 {
    width: 100%;
    color: white;
    padding: 2%;
    padding-bottom: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: Orbitron;

    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7819502801120448) 30%, rgba(255, 255, 255, 0) 100%);
    text-transform: uppercase;
}

#division {
    padding: 20px;
    border-radius: 5px;
    background-color: #1c1c1c;
    margin: 0 10px;
    color: var(--text-primary-color);
    text-align: center;
    font-family: Orbitron;
    min-height: 40vh;
    width: 18%;
    display: flex;
    justify-content: end;
    flex-direction: column;

    background-size: cover;
    background-position: center;
}

#division:hover {
    cursor: pointer;
}



.vignette:after {
    box-shadow: inset 0px 0px 85px rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}




#lore-container {
    background-color: var(--background-color);
    opacity: 1;
    background: repeating-linear-gradient(-45deg, var(--third-background-color), var(--third-background-color) 15.5px, var(--background-color) 15.5px, var(--background-color) 77.5px);
}

#lore {
    padding: 2%;
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 10%;
}

#lore>:first-child {
    margin-right: 1vw;
}

#lore>img {
    width: 25%;
    height: 25%;
    border-radius: 10px;
    min-width: 20vw;
}

#lore-text h1 {
    padding: 0 2%;
    box-sizing: border-box;
    color: var(--text-primary-color);
    /*text-align: center;*/
    font-family: Orbitron;
}

#lore-text h2 {
    padding: 0 2%;
    box-sizing: border-box;
    color: var(--text-primary-color);
    /*text-align: center;*/
    font-family: Orbitron;
    margin-bottom: 30px;
}

#lore-text p {
    padding: 0 2%;
    box-sizing: border-box;
    color: var(--text-primary-color);
    /*text-align: center;*/
    font-family: Orbitron;
}

/* FOOTER */

#footer {
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
    background-color: var(--secondary-background-color);
}

#footer-content {
    width: 80%;
    margin: 0 10%;
    display: flex;
    flex-direction: row;
}

#footer-logos {
    flex: 1 1 0;
    width: 0;
    align-items: center;
    justify-content: center;
    padding: 2%;
    box-sizing: border-box;

}

#footer-logo-corp {
    display: block;
    width: 50%;
}

#footer-logo-certs {
    display: inline;
    vertical-align: middle;
    width: 20%;
    margin-top: 10%;
    margin: 10% 3% 0 0%;
    transition: 0.3s;
}

#footer-logo-certs:hover {
    cursor: pointer;
    transform: scale(1.05);
}

#footer-divider {
    margin-top: 5%;
}

#footer-socials-text {
    font-family: Anta;
    color: white;
    font-size: small;
    font-weight: lighter;
}

#footer-socials-logos {
    display: flex;
    flex-direction: row;
}

#footer-links {
    flex: 1 1 0;
    width: 0;
    align-items: center;
    justify-content: center;
    padding: 2%;
    box-sizing: border-box;
}

#footer-links ul a {
    display: block;
    text-decoration: none;
    color: white;
    font-family: Anta;
    margin-bottom: 3%;
    transition: 0.3s;
    width: fit-content;
}

#footer-links ul a:hover {
    scale: 1.1;
}

#footer-socials {
    flex: 1 1 0;
    width: 0;
    align-items: center;
    justify-content: center;
    padding: 2%;
    box-sizing: border-box;
}

#footer-discord {
    display: block;
}

#footer-copyright {
    /*padding: 1.5%;*/
    width: 80%;
    margin: 0 10%;
    justify-content: center;
}

#footer-copyright p {
    margin-top: 1%;
    color: white;
    font-family: Anta;
    font-size: small;
    text-align: center;
}

#footer-accent {
    height: 8px;
    width: 100%;
    overflow: hidden;
}

/* TESTS */

.cssanimation,
.cssanimation span {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.cssanimation span {
    display: inline-block
}

.fadeInBottom {
    animation-name: fadeInBottom
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1
    }
}

.nebula-gradient {
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

.socials-icon {
    display: flex;
    margin-top: 5%;
    margin-right: 2%;
    padding: 1%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    background-color: white;
    transition: 0.3s;
}

.socials-icon:hover {
    scale: 1.1;
}

.socials-icon img {
    width: 90%;
    margin: auto;
    filter: invert(10%);
    /* Magic! */
    /*filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(149deg) brightness(108%) contrast(101%);*/
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: var(--main-color);
    background-color: white;
    color: rgb(68, 68, 68);
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    height: 50px;
    width: 50px;
    transition: 0.3s
}

#myBtn:hover {
    background-color: #b3b3b3;
    scale: 1.1;
}

#myBtn>img {
    width: 100%;
    filter: invert(70%);
    scale: 1.75;
}

.grad-text {
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separator {
    height: 5px;
    width: 100%;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

.separator-white {
    height: 5px;
    width: 100%;
    background: white;
}

#creator {
    text-decoration: none;
    color: white;
}

.button {
    padding: 1.5vh;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    border-radius: 5px;
    color: white;
    font-family: Orbitron;
    border: none;
    margin: 2%;
    box-sizing: border-box;
    transition: 0.3s;
    font-size: large;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.button>img {
    height: 100%;
    vertical-align: middle;
}

.centered-button {
    padding: 1.5vh;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    border-radius: 5px;
    color: white;
    font-family: Orbitron;
    border: none;
    /*margin: 2%;*/
    box-sizing: border-box;
    transition: 0.3s;
    font-size: large;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    justify-content: center;
}

.centered-button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.centered-button>img {
    height: 100%;
    vertical-align: middle;
}

@media only screen and (max-width: 1060px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }

    #banner-container {
        width: auto;
        overflow: hidden;
    }

    #banner {
        justify-content: center;
        height: 30vh;
        overflow: hidden;
    }

    #banner-overlay {
        height: 30vh;
    }

    #banner video {
        width: auto;
        min-height: 100%;
        /*width: 100%;*/
    }

    #header {
        width: 100vw;
    }

    #header-nav {
        /*display: none;*/
    }

    #header-content {
        width: 98%;
        margin: 0% 1%;
    }

    #tagline-container {
        position: relative;
        background: rgb(26, 26, 26);
        background: linear-gradient(0deg, rgb(16, 16, 16) 84%, rgba(255, 255, 255, 0) 100%);
        padding: 2% 0 2% 0;
        margin-top: -4vh;
        display: flex;
        flex-direction: row;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #tagline-container h1 {
        color: white;
        text-align: center;
        font-family: Orbitron;
        font-size: 4vw;
        filter: drop-shadow(0 0 1rem black);
    }

    #caroussel {
        width: 96%;
        margin: 0 2%;
        display: flex;
        flex-direction: row;
        padding: 2%;
        box-sizing: border-box;
        overflow: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    /*#caroussel img {
        height: 30vw;
        padding: 1%;
        box-sizing: border-box;
        flex:1;
        border-radius: 10px;
    }*/

    #caroussel img:first-child {
        height: 30vw;
        padding: 1% 1% 1% 0%;
        box-sizing: border-box;
        flex: 1;
        border-radius: 10px;
    }

    #caroussel img:not(:first-child):not(:last-child) {
        height: 30vw;
        padding: 1%;
        box-sizing: border-box;
        flex: 1;
        border-radius: 10px;
    }

    #caroussel img:last-child {
        height: 30vw;
        padding: 1% 0% 1% 1%;
        box-sizing: border-box;
        flex: 1;
        border-radius: 10px;
    }

    #lore-container {
        background-color: #ffffff;
        opacity: 1;
        background: repeating-linear-gradient(-45deg, #fafafa, #fafafa 15.5px, #ffffff 15.5px, #ffffff 77.5px);
    }

    #lore {
        padding: 2%;
        display: flex;
        flex-direction: row;
        width: 98%;
        margin: 0 1%;
    }

    #lore>img {
        width: 25%;
        height: 25%;
        border-radius: 10px;
    }

    #lore p {
        padding: 0 2%;
        box-sizing: border-box;
        color: #3d3d3d;
        text-align: center;
        font-family: Orbitron;
    }

    #mobile-header-nav-container {
        display: block;
        flex: 2;
    }

    #mobile-header-nav {
        list-style: none;
        text-align: right;
    }

    #mobile-header-nav li {
        display: inline;
        line-height: 4vh;
        color: white;
        font-family: Orbitron;
        font-weight: bold;
        margin: 0 15px;
        transition: 0.3s;
    }

    #mobile-header-nav li:hover {
        cursor: pointer;
    }

    #mobile-menu {
        display: inline;
    }

    #lore {
        padding: 10% 2%;
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: 0 10%;
    }

    #lore>:first-child {
        margin-right: 0;
        margin-bottom: 3vh;
    }

    #lore>img {
        width: 100%;
    }

    #footer-content {
        width: 80%;
        margin: 0 10%;
        display: flex;
        flex-direction: column;
    }

    #footer-logos {
        margin-top: 5%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 2%;
        box-sizing: border-box;
    }

    #footer-socials {
        margin-top: 5%;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 2%;
        box-sizing: border-box;
    }

    #footer-links {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 2%;
        box-sizing: border-box;
    }

    #footer-links ul {
        padding: 0;
        margin: 0;
    }

    #footer-discord {
        display: none;
    }

    #allies-card {
        min-width: 200px;
        margin-bottom: 30px;
    }

    #allies-card h1 {
        color: #252525;
        text-align: center;
        font-family: Orbitron;
        font-size: 3vh;
        font-weight: bold;
        margin-bottom: 5%;
    }

    #allies-card p {
        color: #1c1c1c;
        text-align: center;
        font-family: Orbitron;
        font-size: 1.5vh;
    }

    #allies-socials-logos {
        bottom: -3vh;
    }

    #header-nav-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #1c1c1cf3;
        display: none;
    }

    #header-nav {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #header-nav :last-child {
        margin: 3% 0;
    }

    #lore-text>h1 {
        text-align: center;
    }

    #lore-text>h2 {
        text-align: center;
    }

    .button {
        display: block;
        margin: 0 auto;
        margin-top: 2vh;
    }

    .button>img {
        height: 80%;
        vertical-align: middle;
    }

    #header-nav li {}
}

@media only screen and (orientation: portrait) {
    body {
        width: 100vw;
    }

    #header-nav {
        /*display: none;*/
        padding: 0;
        margin: 0;
    }


}





/* TESTS */

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -900%;
    }
}

.animate {
    width: 1800%;
    animation: marquee 20s linear infinite;
    top: 50%;
    transform: translate(0, -50%);
}

.logo a {
    width: 80px;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@screen lg {
    @keyframes marquee {
        0% {
            left: 0;
        }

        100% {
            left: -375%;
        }
    }

    .animate {
        width: 750%;
        animation: marquee 20s linear infinite;
        top: 50%;
        transform: translate(0, -50%);
    }

    .logo a {
        width: 100px;
        -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }
}

.animate:hover {
    animation-play-state: paused;
}

.logo a:hover {
    transform: scale(1.3);
}


/* NEW */

#hero-container {
    background-color: black;
    padding: 10px 0;
    box-sizing: border-box;
}

#hero-content {
    width: 90%;
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    font-family: Anta;
    margin: 1% auto;
    box-sizing: border-box;
}

#hero-header {
    text-align: center;
    color: white;
}

#hero-cards {
    display: flex;
    flex-direction: row;
    /*text-align: center;*/
    gap: 3%;
    margin: 1% 0;
}

#hero-card {
    flex: 1 1 0px;
    display: flex;
    box-sizing: border-box;
    padding: 2%;
    text-decoration: none;
    color: white;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    transition: 0.3s;
    border-radius: 10px;
    border: solid rgb(39, 39, 39) 1px;
}

#hero-card:hover {
    transform: scale(1.015);
}

#hero-text {
    align-self: flex-end;
}

#hero-title {
    margin-bottom: 10px;
}

#hero-desc {}


/* INTRODUCTION */

#content-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
}

#content-intro-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 400px;
    /*background-color: red;*/
    border: solid rgb(39, 39, 39) 1px;
    border-radius: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 5%, rgba(255, 255, 255, 0) 30%), url(/resources/images/png/about-background.png);
    background-size: cover;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    font-family: Anta;
    gap: 20px;
}

#content-intro-container p {
    width: 40%;
}

.button-intro {
    color: rgb(41, 41, 41);
    background-color: white;
    border-radius: 100px;
    padding: 11px;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s;
}

.button-intro:hover {
    transform: scale(1.06);
    filter: grayscale(40%);
}

/* MISSIONS */

#content-missions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
}

#content-missions-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 400px;
    /*background-color: red;*/
    border: solid rgb(39, 39, 39) 1px;
    border-radius: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 5%, rgba(255, 255, 255, 0) 30%), url(/resources/images/png/missions-background.png);
    background-size: cover;
    background-position: right;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    font-family: Anta;
    gap: 20px;

    align-items: flex-end;
}

#content-missions-container h1 {
    width: 40%;
    text-align: right;
}

#content-missions-container p {
    width: 40%;
    text-align: right;
}

.button-missions {
    color: rgb(41, 41, 41);
    background-color: white;
    border-radius: 100px;
    padding: 11px;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s;
}

.button-missions:hover {
    transform: scale(1.06);
    filter: grayscale(40%);
}

/* JOIN US */

#content-joinus {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
}

#content-joinus-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 400px;
    /*background-color: red;*/
    border: solid rgb(39, 39, 39) 1px;
    border-radius: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 5%, rgba(255, 255, 255, 0) 30%), url(/resources/images/png/joinus-background.png);
    background-size: cover;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    font-family: Anta;
    gap: 20px;
}

#content-joinus-container p {
    width: 40%;
}

.button-joinus {
    color: rgb(41, 41, 41);
    background-color: white;
    border-radius: 100px;
    padding: 11px;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s;
}

.button-joinus:hover {
    transform: scale(1.06);
    filter: grayscale(40%);
}




/* NEW */

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: black;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), black);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), black);
}

/*.logos:hover .logos-slide {
    animation-play-state: paused;
  }*/

.logos-slide {
    display: inline-block;
    animation: 80s slide infinite linear;
}

.logos-slide img {
    height: 150px;
    margin: 0 60px;
}

.disabled {
    filter: opacity(75%);
    pointer-events: none;
}










@media only screen and (max-width: 1400px) {

    html,
    body {
        position: relative;
        overflow-x: hidden
    }

    #banner {
        width: 100%;
        overflow: hidden;
    }

    #hero-cards {
        flex-direction: column;
        gap: 20px;
    }

    #hero-card {
        padding: 30px;
    }

    #content-intro-container {
        background-position: right;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 60%, rgba(255, 255, 255, 0) 100%), url(/resources/images/png/about-background.png);
    }

    #content-missions-container {
        background-position: left;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 60%, rgba(255, 255, 255, 0) 100%), url(/resources/images/png/missions-background.png);
    }

    #content-joinus-container {
        background-position: right;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 60%, rgba(255, 255, 255, 0) 100%), url(/resources/images/png/joinus-background.png);
    }

    #content-intro-container p {
        width: auto;
    }

    #content-missions-container h1 {
        width: auto;
    }

    #content-missions-container p {
        width: auto;
    }

    #content-joinus-container p {
        width: auto;
    }

    .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.479));
    }

    .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.479));
    }

    .logos {
        overflow: hidden;
        padding: 40px 0;
        background: black;
        white-space: nowrap;
        position: relative;
    }

    .logos-slide img {
        height: 75px;
        margin: 0 25px;
    }
}


#policy-container {
    padding: 30px 30px;
    color: white;
    width: 90%;
    margin: 40px auto;
    word-wrap: break-word;
    white-space: pre-line;

    border: solid rgb(39, 39, 39) 1px;
    border-radius: 10px;
    background-color: #1b1b1b;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
}

/*#policy-container div {
    width: fit-content;
    margin: 0 auto;
}*/