@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');

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

section {
    color: white;
    align-items: center;
    margin: 10%;
    background-repeat: no-repeat;
    background-position: top right;
}

body {
    font-family: "Exo 2", sans-serif;
    background-color: #000000;
    color: #8F8F8F;
    font-size: 20px;
    text-align: justify;
}

img {
    height: 100%;
    width: 100%;
}

a {
    color: #8F8F8F;
    text-decoration: none;
}

a.head {
    font-weight: 500;
    font-size: 25px;
    color: white;
}

a:hover {
    color: #ccc;
}

h1 {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 72px;
    letter-spacing: 10px;
    color: white;
}

h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 48px;
    letter-spacing: 10px;
    width: 100%;
    padding-bottom: 50px;
}

h2.noSpace {
    padding-bottom: 0px;
}


h3 {
    font-family: "Exo 2", sans-serif;
    font-weight: bold;
    font-size: 32px;
}

h4 {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
}

p {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
}

b {
    font-family: "Exo 2", sans-serif;
    font-size: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.planetbutton {
    display: flex;
    justify-content: center;
    padding: 5px;
    padding-bottom: 25px;
}


.hide-item {
    display: flex;
}

.show-item {
    display: none;
}

.curved {
    border-radius: 30px;
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(1.5);
}

/*Mission / Myths / Galaxy*/
.topBanner {
    display: flex;
    position: relative;
    max-width: 100%;
    height: 400px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: white;
    padding-bottom: 0px;
    padding-top: 0px;
}

.banner {
    opacity: 65%;
}

.column {
    display: flex;
    position: relative;
    flex-direction: row;
    width: 100%;
    gap: 40px;
    margin-top: 0%;
    margin-left: auto;
    margin-right: auto;
}

.centerText {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-top: 15%;
    margin-bottom: 15%;
}

.midColumn {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20%;
    margin-bottom: 20%;
}

.leftDiv {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 25px;
    text-align: left;
}

.rightDiv {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    width: 50%;
    gap: 25px;
    text-align: left;
}

.hr {
    border-width: 5%;
}

.sticky {
    display: flex;
    flex-direction: column;
    position: sticky;
    z-index: 1;
    top: 0;
}


/* Navigation */
.navbar {
    display: flex;
    position: sticky;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-left: 60px;
    padding-right: 60px;
    background-color: #101010;
    border-bottom: 1px solid #333;
    height: 75px;
    z-index: 1;
    top: 0;
}

.logo {
    height: 35px;
    width: 50px;
}

.subNav{
    display: flex;
    position: relative;
    float: left;
}


.accordion {
    display: flex;
    cursor: pointer;
    justify-content: center;
    color: #fff;
    padding: 10px;
    width: 120px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.subNav:hover .panel{
    display: flex;
}

.mobileMenu {
    display: none;
}

.panel {
    margin-top: 25px;
    background-color: #363636;
    display: none;
    flex-direction: column;
    position: absolute;
    min-width: 70px;
    z-index: 1;
    padding: 15px;
    top: 55px;
}

.panel a:hover {
    background-color: #525252;
}

.panel a{
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 1px;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.menu a {
    text-decoration: none;
    color: #8F8F8F;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ccc;
}

.menu a:active {
    color: white;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.mobileMenu {
    display: inline-block;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 3.5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}

/* Hamburger Menu */
.change .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.mobileMenu {
    display: none;
}


/* Breadcumb navigation*/
ul.breadcrumb {
    position: sticky;
    background-color: #000000;
    padding-left: 10%;
    padding-top: 20px;
    padding-bottom: 20px;
    list-style: none;
    top: 75px;
    font-size: 16px;
}

ul.breadcrumb li {
    display: inline;
    color: #ffffff;

}

ul.breadcrumb li a {
    color: rgb(140, 140, 140);
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: rgb(140, 140, 140);
    content: "/\00a0";
}

ul.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.backButton {
    display: none;
    position: sticky;
    justify-content: left;
    background-color: #000000;
}

.backBox {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 90px;
    margin-right: 10%;
    margin-left: 10%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
}

.backImg {
    width: auto;
    height: 15px;
    rotate: 270deg;
}

.next {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 5%;
}

.left {
    display: flex;
    width: 100%;
    left: 0;
    text-transform: uppercase;
}

.right {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    right: auto;
    text-transform: uppercase;
}


/* Footer css */
footer {
    border-top: 1px solid #333;
    background-color: #101010;
    color: #8F8F8F;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 45px;
}

.foot {
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 50px;
}

.footerMid {
    display: flex;
    flex-direction: column;
    width: 180px;
    padding: 10px;
}

.footerText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px 30px;
    width: auto;
    color: #8F8F8F;
}

.footerBottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.footerRight {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    gap: 20px;
}

.footerSocial {
    height: 30px;
    width: 30px;
}

.footerLeft {
    height: 40px;
    width: 50px;
}

.backtotop {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 99;
    width: 65px;
    color: white;
    cursor: pointer;
    padding: 15px;
}

.backtotop a {
    color: white;
}

@media screen and (max-width: 1390px) {
    .topBanner {
        height: 300px;
    }
}


/* Responsive Design for Mobile */
@media screen and (max-width: 800px) {

    body {
        font-size: 13px;
        text-align: justify;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-family: "Exo 2", sans-serif;
        font-weight: bold;
        text-transform: none;
        font-size: 19px;
        letter-spacing: normal;
        text-transform: capitalize;
        padding-bottom: 6px;
    }

    .specialH2 {
        padding-bottom: 5px;
    }

    h3 {
        font-weight: bold;
        font-size: 16px;
    }

    h4 {
        color: #fff;
        font-weight: bold;
        font-size: 16px;
    }

    p {
        font-size: 13px;
    }

    b {
        font-size: 13px;
    }

    .breadcrumb {
        display: none;
    }

    .planetbutton {
        width: 300%;
        height: 100%;
    }

    .topBanner {
        height: 200px;
        display: flex;
        position: relative;
        max-width: 100%;
        margin-top: auto;
    }

    .menu a {
        padding: 25px;
        text-decoration: none;
        color: #8F8F8F;
        transition: color 0.3s;
    }

    .panel a {
        border-bottom: 1px solid #333;
    }

    .breadcrumb {
        display: none;
    }

    .logo {
        height: 32px;
        width: 40px;
    }

    a.head {
        font-size: 16px;
    }

    
    .menu-toggle:checked+.mobileMenu+.menu {
        display: flex;
    }

    .accordion a{
        padding-left: 60px;
        padding-right: 60px;
    }

    .accordion {
        background-color: #181818;
        flex-direction: row;
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 0px;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    .accordion.accTrue:hover .panel {
        display: none;
    }

    .accordion.accTrue:after {
        content: '\02795';
        /* + sign */
        font-size: 13px;
        color: transparent;
        text-shadow: 0 0 0 rgb(179, 179, 179);
        position: absolute;
        padding-right: 65px;
        right: 0px;
        top: 35%;
    }

    .accordion.accTrue:after :hover {
        color: transparent;
        text-shadow: 0 0 0 rgb(255, 255, 255);
    }

    .active.accTrue:after {
        content: "\2796";
        color: transparent;
        text-shadow: 0 0 0 rgb(179, 179, 179);
        /* - Sign */
    }

    .accordion.accTrue.active .panel {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        height: 100%;
        z-index: 100;
        top: 75px;
        left: 0;
        transition: 0.4s;
        transform: ease;
    }

    .panel {
        background-color: #282828;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 0px;
        padding: 0px;
        max-height: 0;
        top: 65px;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        text-align: center;
    }

    .choose {
        padding: 3%;
        text-align: center;
    }

    .mobileMenu {
        display: block;
        cursor: pointer;
    }

    .mid {
        padding-right: 30px;
    }

    .foot {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
        margin-left: 10%;
        margin-right: 10%;
    }

    .footerMid {
        display: flex;
        flex-direction: column;
        width: 140px;
        padding: 10px;
    }

    .footerSocial {
        height: 25px;
        width: 25px;
    }

    .footerLeft {
        height: 32px;
        width: 40px;
    }

    .url {
        font-size: 16px;
    }

    .footerRight {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-left: auto;
        gap: 15px;
    }

    .hide-item {
        display: none;
    }

    .show-item {
        display: flex;
    }
}