* {
    margin: 0;
    padding: 0;
}

:root {
    --main-color: rgb(255, 255, 255);
    --main-color-dark: #26358C;

    --background-color: rgb(27, 27, 27);
    --secondary-background-color: rgb(27, 27, 27);
    --third-background-color: #ffc400;

    --accent-color-main: #ffc400;
    --accent-color-secondary: #ffae00;

    --text-primary-color: rgb(255, 255, 255);
    --text-secondary-color: rgb(255, 255, 255);
    --text-third-color: #ffc400;

    --main-font: Reddit;
}

.accent {
    color: var(--accent-color-main);
}

.fourtyfive {
    mask: url(/resources/images/png/fourtyfive.png) bottom left no-repeat, linear-gradient(#000 0 0);
    mask-size: 45px;
    mask-composite: exclude;
}

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: linear-gradient(to right, rgba(19, 19, 19, 0.940) 0 100%), url(/resources/images/png/crt.png), url(/resources/images/png/camo.png), var(--background-color);
}

@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: "Reddit";
    src:
        local("Reddit"),
        url("../resources/fonts/RedditSans-VariableFont_wght.ttf") format("truetype"),
}

/* 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%;

    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 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 50vw;
        filter: opacity(100%);
    }
}

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

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

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

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

#header-logo-container {
    flex: 1;
}

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

#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: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    /*line-height: 4vh;*/
    padding-top: 1vh;
    box-sizing: border-box;
    align-items: baseline;
}

#header-nav-link-current {
    display: inline;
    /*line-height: 4vh;*/
    color: var(--accent-color-main);
    font-family: var(--main-font);
    font-weight: bold;
    /*margin: 0 15px;*/
    margin: 0;
    transition: 0.3s;
    text-decoration: none;
}

#header-nav-link {
    display: inline;
    /*line-height: 4vh;*/
    color: white;
    font-family: var(--main-font);
    font-weight: bold;
    /*margin: 0 15px;*/
    margin: 0;
    transition: 0.3s;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

/* BANNER */

#banner-container {
    width: 100%;
    /*position: absolute;
    top: 0;
    z-index: -1;*/
}

#banner {
    height: calc(100vh - 3px);
    overflow: hidden;
    position: relative;
}

#banner-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1% 0;
    box-sizing: border-box;
    /*left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translateY(-50%);*/
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 22vh;
}

#banner-text img {
    max-width: 50%;
}

#banner-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    /*filter: opacity(70%);*/
    background-image: url(/resources/images/png/crt.png);
    z-index: 2;
}

#banner-video {
    /*width: 100vw;*/
    /*min-width: 100%;*/
    /*height: 150vh;*/
    /*margin-top: -15%;*/
    height: 140%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    overflow: hidden;
}

#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: var(--main-font);
    font-size: 6vh;
    filter: drop-shadow(0 0 1rem black);
}

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

#caroussel-container h1 {
    color: var(--text-secondary-color);
    font-family: var(--main-font);
    width: 80%;
    text-align: center;
    justify-self: center;
    padding-top: 20px;
}

#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;
    background: linear-gradient(18deg, var(--accent-color-main) 0%, var(--accent-color-secondary) 100%);
    background-image: url("../resources/images/png/socom-illustration.png");
    background-size: cover;
    background-repeat: no-repeat;
}

#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: var(--main-font);
    font-size: 60px;
    font-weight: bold;
}

#facts div p {
    color: #1c1c1c;
    text-align: center;
    font-family: var(--main-font);
    font-size: x-large;
}

#facts-container h1 {
    color: var(--text-primary-color);
    font-family: var(--main-font);
    width: 80%;
    text-align: center;
    justify-self: center;
    padding-top: 20px;
    margin-bottom: 40px;
}

#facts-container p {
    color: var(--text-primary-color);
    font-family: var(--main-font);
    width: 80%;
    text-align: center;
    justify-self: center;
    padding-bottom: 20px;
    margin-top: 40px;
    font-size: larger;
}

#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(--main-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: var(--main-font);

    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: var(--main-font);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5%;
}

#allies-card p {
    color: #1c1c1c;
    text-align: center;
    font-family: var(--main-font);
}

#allies-bottom-text>p {
    color: white;
    text-align: center;
    font-family: var(--main-font);
    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(--accent-color-main) 0%, var(--accent-color-secondary) 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) 50%);
    padding-bottom: 5vh;
    align-items: center;
    text-align: center;
    width: 100%;
}

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

.shadow-up {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}




#division-container {
    overflow-x: hidden;
    background-color: var(--main-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: 80%;
    margin: 0 10%;
    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: var(--text-third-color);
    padding: 2%;
    padding-bottom: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: var(--main-font);
    text-transform: uppercase;
}

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

    position: relative;

    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    box-sizing: border-box;
    overflow: hidden;
}

#division:hover {
    cursor: pointer;
}

#division-background {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
}

#division-overlay {
    bottom: 0;
    box-sizing: border-box;
    padding: 15px;
    z-index: 1;
    padding-top: 25%;
}



.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: "";
    border-radius: 10px;
}




#lore-container {
    background-color: var(--background-color);
    opacity: 1;
    background-color: var(--main-background-color);
}

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

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

#lore>img {
    width: 60%;
    height: 25%;
    /*border-radius: 10px;*/
    min-width: 40vw;
    margin-right: 0;
}

#lore>iframe {
    width: 60%;
}

#lore-text h1 {
    padding: 0 2%;
    box-sizing: border-box;
    color: var(--text-secondary-color);
    /*text-align: center;*/
    font-family: var(--main-font);
    font-size: 3em;
}

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

#lore-text p {
    padding: 0 2%;
    box-sizing: border-box;
    color: var(--text-secondary-color);
    /*text-align: center;*/
    font-family: var(--main-font);
    font-size: 1.25em;
}

/* FOOTER */

#footer {
    width: 100%;
    padding: 1%;
    box-sizing: border-box;
    /*background-color: var(--secondary-background-color);*/
    background: url("/resources/images/png/crt.png"), url("../resources/images/png/adf-footer-2.png");
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
}

#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: var(--main-font);
    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: var(--main-font);
    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: var(--main-font);
    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: 3%;
    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(--accent-color-main) 0%, var(--accent-color-secondary) 100%);*/
    background: linear-gradient(45deg, transparent 5%, rgb(65, 65, 65)5%);
    /*box-shadow: 6px 0px 0px var(--accent-color-main);*/
    transition: 0.3s;
}

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

.socials-icon img {
    width: 90%;
    margin: auto;
    /* 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: linear-gradient(18deg, var(--accent-color-main) 0%, var(--accent-color-secondary) 100%);*/

    background: linear-gradient(45deg, transparent 5%, rgb(65, 65, 65)5%);
    box-shadow: 6px 0px 0px var(--accent-color-main);

    color: white;
    cursor: pointer;
    padding: 15px;
    /*border-radius: 50%;*/
    font-size: 20px;
    height: 50px;
    width: 50px;
    transition: 0.3s;
    box-sizing: border-box;
}

#myBtn:hover {
    background: linear-gradient(45deg, transparent 5%, rgb(88, 88, 88)5%);
    scale: 1.1;
}

#myBtn>img {
    width: 100%;
}

.inButton {
    display: block;
    padding: 5%;
    margin: 0 auto;
    margin-top: 2vh;
    color: var(--accent-color-main);
    border: 3px solid var(--accent-color-main);
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.inButton:hover {
    color: white;
    border: 3px solid var(--accent-color-main);
    background-color: var(--accent-color-main);
    transform: scale(1.02);
}

.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: 3px;
    width: 100%;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--accent-color-main) 0%, var(--accent-color-secondary) 100%);
}

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

#creator img {
    height: 2em;
    width: auto;
    vertical-align: middle;
    transition: 0.3s;
}

#creator img:hover {
    scale: 1.05;
}

.button {
    padding: 1.5vh;
    background: var(--main-color);
    background: linear-gradient(18deg, var(--accent-color-main) 0%, var(--accent-color-secondary) 100%);
    /*border-radius: 5px;*/
    color: white;
    font-family: var(--main-font);
    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: var(--main-font);
    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;
}

.body-separator {
    margin: 20px auto;
    width: 45%;
    justify-items: center;
    border-top: 0.5px solid rgb(223, 223, 223);
}

.full-image-bg {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.full-image-bg img {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*min-height: 600px;*/
}

#hero-container {
    background-color: black;
}

#hero-content {
    width: 90%;
    margin: 20px auto 40px auto;
    display: flex;
    flex-direction: column;
    font-family: Reddit;
    /*margin: 1% auto;*/
}

#hero-header {
    text-align: center;
    color: white;
    margin: 1% 0;
    /*text-decoration: underline 2px;
    text-decoration-color: var(--accent-color-main);
    text-underline-offset: 10px;*/
}

#hero-cards {
    display: flex;
    flex-direction: row;
    /*text-align: center;*/
    gap: 20px;
    /*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 {}

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

    #banner-container {
        max-height: 40vh;
        width: auto;
        overflow: hidden;
    }

    #banner {
        justify-content: center;
    }

    #banner video {
        height: auto;
        /*width: auto;*/
        min-width: 100vw;
        margin-left: 50vw;
        transform: translate(-50%);
    }

    #header {
        width: 100vw;
    }

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

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

    #hero-cards {
        flex-direction: column;
    }

    #hero-card {
        padding: 30px;
    }

    #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: var(--main-font);
        font-size: 4vw;
        filter: drop-shadow(0 0 1rem black);
    }

    #caroussel {
        width: 80%;
        margin: 0 10%;
        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: var(--main-font);
    }

    #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: var(--main-font);
        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: var(--main-font);
        font-size: 3vh;
        font-weight: bold;
        margin-bottom: 5%;
    }

    #allies-card p {
        color: #1c1c1c;
        text-align: center;
        font-family: var(--main-font);
        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 {}

    .full-image-bg img {
        min-width: 100%;
        min-height: 600px;
    }
}

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

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


}



@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;
}



/* NEW */

.black-div {
    height: 30vh;
    background-color: black;
}

/* INTRODUCTION */

#content-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
    font-family: var(--main-font);
}

#content-intro-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    min-height: 400px;
    /*background-color: red;*/
    background-image:
        /*linear-gradient(45deg, var(--background-color) 3%, transparent 3%), */
        linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 15%, rgba(255, 255, 255, 0) 60%), url(/resources/images/png/about-background.png);
    background-size: cover;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    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;*/
    background-image:
        /*linear-gradient(45deg, var(--background-color) 3%, transparent 3%), */
        linear-gradient(0deg, rgba(0, 0, 0, 0.75) 2%, rgba(255, 255, 255, 0) 60%), url(/resources/images/png/missions-background.png);
    background-size: cover;
    background-position: right;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    gap: 20px;
    font-family: var(--main-font);
    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%);
}

/* CONTENT JOINUS */

#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;*/
    background-image:
        /*linear-gradient(45deg, var(--background-color) 3%, transparent 3%), */
        linear-gradient(0deg, rgba(0, 0, 0, 0.7819502801120448) 15%, rgba(255, 255, 255, 0) 60%), url(/resources/images/png/joinus-background.png);
    background-size: cover;

    padding: 40px;
    box-sizing: border-box;
    color: white;
    font-family: var(--main-font);
    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%);
}



/* BUTTON 49 */

.button-49 {
    width: auto;
    height: auto;
    padding: 2%;
    /*line-height: 78px;*/
    font-size: 20px;
    font-family: Reddit;
    background: linear-gradient(45deg, transparent 5%, rgb(65, 65, 65)5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 0.2px 0px var(--accent-color-main);
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: 0.3s;
    backface-visibility: hidden;
}

.button-49:hover {
    cursor: pointer;
    transform: scale(95%);
    background: linear-gradient(45deg, transparent 5%, rgb(85, 85, 85)5%);
    backface-visibility: hidden;
}