@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500&family=Sarabun:wght@100;400&display=swap');

html,
body {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: clip;
    background-color: #030303;
    color: white;
    font-family: 'Sarabun', 'sans-serif';
}

:root {
    --background: rgb(3, 3, 3);
    --darkglass: rgba(0, 0, 0, 0.3);
    --lightglass: rgba(255, 255, 255, 0.3);
    --corner-rad: 20px;
    --head-font-size: clamp(30px, 30px + 0.5vw, 40px);
    --body-font-size: clamp(20px, 20px + 0.5vw, 40px);
    --head-font: "Orbitron", "sans-serif";
    --body-font: 'Sarabun', 'sans-serif';
}

.mobile {
    display: none;
}

.newcirc {
    display: none;
}

.videobox {
    height: 100vh;
    width: 100vw;
    overflow-y: hidden;
}

@media screen and (max-aspect-ratio: 16/9) {
    #myVideo{
        height: 100vh;
        z-index: -1;
    }  
}

@media screen and (min-aspect-ratio: 16/9) {
    #myVideo{
        width: 100vw;
        z-index: -1;
    }  
}

.showh1 {
    animation: show .5s forwards;
}

.showp {
    animation: show .5s .3s forwards;
}

.compactheader {
    --hfont-size: clamp(12px, 0.8vw, 20px);
    --hlogo-size: 7vw;
    --hbkg: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 37%, rgba(0, 0, 0, 1) 100%);
}

.fullheader {
    --hfont-size: clamp(15px, 1vw, 23px);
    --hlogo-size: 10vw;
    --hbkg: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.header {
    position: fixed;
    display: grid;
    width: 100vw;
    grid-template-columns: 20vw 10vw 70vw;
    align-items: center;
    transition: all ease-in-out 0.2s;
    background: var(--hbkg);
    z-index: 1000;
    top:0;
}

.headerlogo {
    grid-column: 1;
    place-self: center;
    transition: all ease-in-out 0.2s;
    /* mix-blend-mode: difference; */
    width: var(--hlogo-size);
}

.header ul {
    grid-column: 3;
    place-self: center end;
    font-family: var(--head-font);
    list-style: none;
    z-index: 2;
}

.header ul li {
    transition: all ease-in-out 0.2s;
    margin-top: calc(1vh + 10px);
    font-size: var(--hfont-size);
    float: left;
    margin-right: 4vw;
}

.header ul li a {
    text-decoration: none;
    color: #dddddd;
    font-weight: 100;
}

.header ul li a:hover {
    color: white;
    transition: ease-in-out .2s .1s;
}

.mnuact {
    color: #e9e9e9;
}

.mnuact::after,
.header ul li a::after {
    content: '';
    display: block;
    width: 0;
    margin-top: -calc(1.4rem - 2rem);
    height: 2px;
    background: white;
    transition: cubic-bezier(.65, .05, .36, 1) .3s;
}

.mnuact::after {
    height: 1px !important;
}

.mnuact::after,
.header ul li a:hover::after {
    width: 100% !important;
    transition: ease-in-out .3s;
}

.contentbox {
    padding-top: 0vh;
    padding-bottom: 0vh;
    margin-top: 0vh;
    margin-bottom: 0vh;
    width: 100vw;
    overflow-x: clip;
}

.full {
    height: 100vh;
}

.horiz {
    height: 100vh;
    position: relative;
    left: 50%;
    overflow-y: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    width: 50vw !important;
}

.helement {
    position: absolute;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: grid;
    align-content: center;
    justify-content: center;
}

.properties {
    /* position: absolute; */
    /* margin-top: 10vh; */
    margin-left: 0vw;
    font-size: 20px;
    /* background-color: green; */
}

.attributes {
    /* position: relative; */
    list-style-type: none;
    margin-top: 3%;
    /* margin-left: 8vw; */
    /* background-color: yellow; */
    padding: 0 0 0 0;
}

.attributes li {
    opacity: 0;
    padding-top: 6%;
    font-size: 17px;
    padding-bottom: 6%;
    border-bottom: 1px solid white;
    width: 30vw;
}

.attributes li:nth-child(1) {
    animation: left 1s forwards;
    animation-delay: 1.5s;
}

.attributes li:nth-child(2) {
    animation: left 1s forwards;
    animation-delay: 1.8s;
}

.attributes li:nth-child(3) {
    animation: left 1s forwards;
    animation-delay: 2.1s;
}

.attributes li:nth-child(4) {
    animation: left 1s forwards;
    animation-delay: 2.4s;
}

.attributes li:nth-child(5) {
    animation: left 1s forwards;
    animation-delay: 2.7s;
}

@keyframes left {
    0% {
        opacity: 0;
        padding-left: 2vw;
    }
    100% {
        padding-left: 0;
        opacity: 1;
    }
}

.attributes li span {
    float: right;
}

.attributes li a {
    float: right;
    opacity: .4;
    margin-left: .5vw;
}



.helement:nth-child(1) {
    margin-left: 0;
}

.helement:nth-child(2) {
    margin-left: 50vw;
}

.helement:nth-child(3) {
    margin-left: 100vw;
}

.helement:nth-child(4) {
    margin-left: 150vw;
}

.helement:nth-child(5) {
    margin-left: 200vw;
}

h1 {
    font-family: var(--head-font);
}

p {
    font-family: var(--body-font);
}

html {
    overflow-y: scroll;
    /* -ms-scroll-snap-type: y proximity; */
    /* scroll-snap-type: y proximity; */
}

#ic0 {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    color: white;
    word-spacing: 10px;
}

#ic0::after {
    content: '';
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0,0,0);
    /* background: linear-gradient(0deg, #030303 0%, #03030338 10%, rgba(0,0,0,0) 50%); */

}

#ic0 p {
    position: absolute;
    margin-left: 50vw;
    margin-right: 6vw;
    margin-top: 10vh;
    font-size: 1.3vw;
    word-spacing: normal;
}

#ic0 h1 {
    background: linear-gradient(#2231ff, #717aff);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;

    mix-blend-mode:difference;

    margin-top: -1vh;
    padding-top: 0vh;
    margin-left: 50vw;
    font-size: 3vw;
    position: absolute;
    font-weight: 500;
    /* opacity: 100; */
}

.invis {
    opacity: 0;
    transition: 100ms all ease-in-out;
}

.vis {
    opacity: 1;
    transition: 100ms all ease-in-out;
}

.vrt {
    border-left: 3px solid #2301a9;
    height: 50vh;
}

.indicator {
    margin-top: 14vh;
    color: white;
    display: grid;
    grid-template-columns: 5vw 1vw 15px;
    width: calc(5vw + 15px);
    height: 15px;
    margin-left: calc(-6vw + 2px);
    place-content: center;
    transition: all ease-in-out 250ms;
}

.active .dot {
    background-color: #2301a9;
    transition: 100ms all ease-in-out;
}

.active span {
    opacity: 1 !important;
    transition: 100ms all ease-in-out;
}

.indicator span {
    grid-column: 1;
    align-self: center;
    justify-self: end;
    opacity: 0;
}

.dot {
    grid-column: 3;
    top: 0;
    display: relative;
    height: 15px;
    width: 15px;
    background-color: lightblue;
    border-radius: 50%;
    transition: 100ms all ease-in-out;
}

.extra {
    height: 100%;
}

.full {
    height: 100vh;
}

#mp0 {
    height: 80vh;
    padding-top: 20vh;
    display: flex;
}

@keyframes show {
    0% {
        opacity: 0;
        top: 45%;
    }
    100% {
        top: 40%;
        opacity: 1;
    }
}

/* @keyframes slideinleft {
    0% {
        opacity: 0;
        margin-left: -45%;
    }
    100% {
        margin-left: 0vw;
        opacity: 1;
    }
} */



.longdiv img {
    width: 100vw;
    height: 250vh;
}

.secondbkg img {
    width: 100vw;
    height: 300vh;
}

.rock {
    position: absolute;
    z-index: 1000;
    margin-top: -90vh;
}

.scaletwo {
    transform: scale(2);
}

/* .main section {
    margin: 0;
    height: 100vh;
}

.main section:nth-child(1) {
    background-color: #3e5050;
}

.main section:nth-child(2) {
    background-color: #495f5f;
}

.main section:nth-child(3) {
    background-color: #546d6d;
}

.main section:nth-child(4) {
    background-color: #5f7c7c;
}

.main section:nth-child(5) {
    background-color: #6b8a8a;
}

.main section h1 {
    font-size: 38px;
    color: #fff;
    margin: 0;
    padding: 50px 0 20px;
    /* text-align: center; 
} */

.pre{
    display: grid;
    align-items: center;
    grid-template-columns: 65vw 30vw;
    height: 60vh;
    /* background-image: linear-gradient(180deg, rgb(23, 23, 25) 50%, var(--background) 90% ) */
    
}

.beachy{
    margin-left: -4vw;
    opacity: 0;
    margin-top: 5vh;
    display: grid;
    justify-content: center;
    align-items: center;
}

.slidein-horiz {
    opacity: 1 !important;
    margin-left: 0vw !important;
    margin-right: 0vw !important;
    transition: all ease-in-out 500ms;
}

#ic1 {
    padding-bottom: 5vh;
    background-image: linear-gradient(180deg, rgb(23, 23, 25) 50%, var(--background) 90% );
}

#ic2 {
    grid-template-columns: 30vw 60vw;
    padding-left: 10vh;
    background-image: url();
    background-color: var(--background) !important;
    align-items: end;
}

#ic2 .OU {
    justify-self: end;
}

#ic2lef {
    grid-column: 2;
    margin-left: 4vw;
}

#ic2righ {
    grid-column: 1;
    grid-row: 1;
    align-items:end;
    align-self: end;
    text-align: right;
}

#cacun {
    background-image: url('../resources/images/cancun.jpg');
}

#rock {
    background-image: url('../resources/images/rock.jpg');

}

.beaches{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--corner-rad);
    width: 50vw;
    height: 50vh;
}

.lunch {
    margin-top: 5vh;
    margin-right: 8vw;
    opacity: 0;
    display: grid;
    align-items: center;
    /* background-color: green; */
    height: 50vh;
    grid-template-rows: 15vh 27vh 8vh;
}

.duke h1{
    margin: 0px;
    font-size: 2.5vw;
}

.duke span{
    background: linear-gradient(#2231ff, #717aff);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    
}

.duke h1{
    letter-spacing: 5px;
}

.dukie{
    /* display: grid; */
    /* align-items: center; */
    align-self: center;
    width: 25vw;
    opacity: .7;
    font-size: 2vh;
}

#ic2 .dukie {
    justify-self: end;

}

.OU{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 15vw;
    border-style: solid;
    border-width: 2px;
    background-position-x: 0%;
    border-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%) 1;
    transition: 200ms ease-in-out;
}

.OU:hover {
    border-width: 6px;
    background-position-x: 80%;
    transition: 200ms all ease-in-out;
}

.reviews{
    width: 100vw;
    height: 90vh;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 20vw 20vw 20vw 25vw;
    background-image: linear-gradient(180deg, var(--background) 10%, rgba(50,4,89,1) 80% );
    grid-gap: 3vw;
}

.rcard{
    margin-top: 20vh;
    height: 60vh;
    /* background-color: white; */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .15);  
    backdrop-filter: blur(5px);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
    display: grid;
    /* box-sizing: border-box; */
    grid-template-rows: 17vh 33vh;
}


.toppy{
    width: 20vw;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 7vw 12vw;
    grid-gap: 1vw;
    padding-bottom: 0;
    margin-bottom: 0;
}

.mancirc{
    margin-left: 2vw;
    height: 5vw;
    /* background-color: red; */
    border-radius: 100%;
    background-position: center;
    background-size: contain;
}

#minister {
    background-image: url('../resources/images/minister.webp');
}

#suresh {
    background-image: url('../resources/images/uH0VmS0H.jpg');
}

#roddink {
    background-image: url('../resources/images/dcZ_A4BC.jpg');
    
}


.namee{
    display: grid;
    font-family: var(--body-font);
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 10vh; */
}

.namey{
    color: white;
    font-weight: 500;
    font-size: 2vw;
}

.titles{
    color: rgb(194, 194, 194);
    font-size: 1vw;
    font-weight: 100;
    margin: 0px;
}

.downny{
    
    margin-left: 2.5vw;

}

.starry{
    margin: 0px;
    margin-top: 0px;
    padding-top: 0px;
    padding: 0px;
}

.starry .fa{
    font-size: .7vw;
}

.checked{
    height: 1vh;
    color: orange;
}

.serious{
    height: 30vh;
    width: 15vw;
    word-wrap: break-word;
    opacity: .8;
    font-size: 2.4vh;
    /* overflow-y: scroll; */
}

.serious p{
    height: 30vh;
    
}

.belie{
    margin-top: 10vh;
}

.showytex {
    color: #000000cc;
    background: linear-gradient(#2231ff, #717aff);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.showiertex {
    background: linear-gradient(#000cb1, #8c00ff);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

blockquote {
    font-family: var(--body-font);
    position: relative;
    font-size: 1.1vw;
    line-height: 5vh;
    margin: 0.5em;
    padding: 0.5em 2em 0.5em 3em;
}

/* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
blockquote:before {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 6em;
    line-height: 0.5;
    top: 0;
    left: 0;
    content: "\201C";
}
blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
    font-size:6em;
    line-height: 0.5;
    right:0;
    bottom:-0.5em;
    content: "\201D";
}
blockquote footer {
    padding: 0 2em 0 0;
    text-align:right;
    font-size: 1.5vw !important;
}
blockquote cite:before {
    content: "\2013";
}

.pagination-container {
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    right: 3vw;
}

#pagination {
    top: 50%;
    /* transform: translateY(-50%); */
    right: 0;
    list-style: none;
    border-right: 3px solid rgb(0, 0, 170);
    height: 300px;
}

#outer-circle {
    background: #385a94;
    border-radius: 50%;
    height: 500px;
    width: 500px;
    position: relative;
    /* 
   Child elements with absolute positioning will be 
   positioned relative to this div 
  */
}

#liic0 {
    margin-top: 0vh !important;
}

#liic1 {
    margin-top: 150px;
}

#liic2 {
    margin-top: 300px;
}

#pagination li {
    position: absolute;
    margin-left: -2px;
    background: blue;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    transition: all 0.2s ease;
}

#pagination li:hover {
    transform: scale(1.5);
}

#pagination li:hover p {
    opacity: 100;
}

#pagination li p {
    opacity: 0;
}

#pagination a {
    position: absolute;
    text-decoration: none;
    left: 0;
    top: 0;
    color: inherit;
    width: 100%;
    height: 100%;
}

body.page-1 #pagination li:nth-of-type(1),
body.page-2 #pagination li:nth-of-type(2),
body.page-3 #pagination li:nth-of-type(3)
/* body.page-4 #pagination li:nth-of-type(4),
body.page-5 #pagination li:nth-of-type(5)*/

.btn {
    border: 1.5px solid #fff;
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    color: #000;
    background: #fff;
}

.wrapper {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 300px;
}

.parallax__group {
    /* position: relative; */
    height: 100vh;
    width: 100vw;
    transform-style: preserve-3d;
}

.parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stars {
    background: url('../resources/images/stars.png') no-repeat center;
    background-size: cover;
    transform: translateZ(-525px) scale(2.5);
    z-index: 2;
}

.mars {
    background: url('../resources/images/mars.png') no-repeat center;
    height: 40%;
    width: 100%;
    top: 90vh;
    background-size: cover;
    transform: translateZ(-251px) scale(1.833333333);
    z-index: 4;
}

.parallaxtext {
    background: linear-gradient( rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 80%, rgba(1, 0, 0, 1) 100%);
    background-size: cover;
    transform: translateZ(0) scale(1);
    z-index: 7;
}

.parallaxtext h1 {
    text-align: center;
}

.parallaxtext p {
    font-size: 1.5vw;
    font-family: var(--body-font);
    position: absolute;
    left: 0rem;
    margin-top: 1vh;
}

.abttext {
    position: absolute;
    left: 25vw;
    top: 20vh;
    /* transform: translate(-50%, -50%); */
    width: 50vw;
    height: 25rem;
}

.card0 {
    height: 60vh;
    overflow-x: hidden;
    overflow-y: hidden;
    border: 1px solid;
    width: 20vw;
    margin-left: 10vw;
    transition: all ease-in-out 200ms;
    box-sizing: border-box;
}

#mcard0 {
    border-image: linear-gradient(45deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 60%, rgba(0, 212, 255, 1) 100%) 10;
    background-color: rgb(0, 0, 10);
    background-position: top;
    background-size: 180%;
}

#mcard1 {
    border-image: linear-gradient(90deg, rgba(36, 0, 0, 1) 0%, rgba(28, 22, 22, 1) 60%, rgba(255, 0, 69, 1) 100%) 7;
    background-color: rgb(10, 0, 0);
}

#mcard2 {
    border-image: linear-gradient(45deg, rgba(13, 36, 0, 1) 0%, rgba(22, 28, 22, 1) 60%, rgba(0, 255, 68, 1) 100%)7;
    background-color: rgb(0, 10, 0);
}

.card0:hover {
    border: 10px solid;
    transition: all ease-in-out 200ms;
}

#mcard0:hover {
    background-color: rgb(0, 0, 45);
    background-size: 180%;
    background-position: center;
}

#mcard1:hover {
    background-color: rgb(45, 0, 0);
}

#mcard2:hover {
    background-color: rgb(0, 45, 0);
}

.card0 h1 {
    text-align: center;
    padding-top: 40%;
    margin-top: -55vh;
    font-size: 5vh;
    z-index: 3;
    transition: all ease-in-out 200ms;
}

.card0:hover h1 {
    margin-top: -105vh;
    transition: all ease-in-out 200ms;
}

.card0 .cardhtxt {
    position: relative;
    text-align: center;
    padding-left: 1vw;
    font-size: 3vh;
    padding-right: 1vw;
    z-index: 3;
    transition: all ease-in-out 250ms;
}

.card0:hover .cardhtxt {
    margin-top: -3vh;
    transition: all ease-in-out 250ms;
}

.card0 .cardrocktxt {
    position: relative;
    text-align: center;
    padding-left: 1vw;
    font-size: 3vh;
    padding-right: 1vw;
    z-index: 3;
    margin-top: 25vh;
    transition: all ease-in-out 250ms;
    font-weight: bold;
}

.card0:hover .cardrocktxt {
    margin-top: 10vh;
}

.card0 .cardcost {
    position: relative;
    text-align: center;
    padding-left: 1vw;
    font-size: 3vh;
    padding-right: 1vw;
    z-index: 3;
    transition: all ease-in-out 250ms;
}

.card0 img {
    position: relative;
    margin-top: 20vh;
    height: 40vh;
    margin-left: -3vh;
    z-index: 0;
    opacity: 0.3;
    transition: all ease-in-out 200ms;
}

.card0:hover img {
    margin-top: 5vh;
    height: 90vh;
    opacity: 1;
    margin-left: 32vh;
    transition: all ease-in-out 200ms;
}

#fname {
    width: 180%;
    height: 4vh;
    background: transparent;
    border-top: #000;
    border-left: #000;
    border-right: #000;
    color: white;
    font-size: 20px;
}

.upper {
    float: left;
    margin-bottom: 3vh;
}

#ac2 {
    display: grid;
    grid-template-columns: 45vw 45vw 10vw;
    flex-direction: row;
    justify-items: center;
    position: absolute;
    right: 0;
    height: 100vh;
    top: 110vh;
}

.amenPara {
    /* position: absolute; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 20vh; */
}

.amenPara p {
    font-size: 1.4vw;
    width: 35vw;
}

.boxes {
    margin-top: 0vh;
    /* width: 15vw; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20%;
}

#water {
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: none;
    /* border-bottom: 2px solid white; */
    transition: 50ms all ease-in-out;
}

#water h2:hover{
    opacity: .8;
}

#food h2:hover{
    opacity: .8;
}

#plane h2:hover{
    opacity: .8;
}
.overengine{
    margin-top: 5vh;
}

.leftright h2{
    display: grid;
    justify-content: center;
}

.leftright p{
    width: 100%;
    line-height: 300%;
    font-size: 20px;
}

.leftright{
    width: 50%;
    float: left;
}

.engineOver{
    padding-right: 2%;
    border-right: 1px solid white;
}

.engines ul{
    list-style-type: none;
}

.engines ul li{
    width: 80%;
    border-bottom: 1px solid rgba(119, 118, 118, 0.603);
    padding-top: 6%;
    padding-bottom: 6%;
    font-size: 20px;
}

.engines li span{
    float: right;
}

.secondinfo p{
    width: 80%;
    line-height: 300%;
    font-size: 20px;
}

.thorsbs{
    float: left;
}

.thorinfo{
    border-left: 1px solid white;
    margin-left: 20%;
    padding-left: 20%;
}

.thoroverview p{
    width: 80%;
    font-size: 20px;
    line-height: 300%;
}


#food {
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: none;
    /* border-bottom: 2px solid white; */
    transition: 50ms all ease-in-out;
}

#plane {
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: none;
    /* border-bottom: 2px solid white; */
    transition: 50ms all ease-in-out;
}

.undLineActive {
    border-bottom: 2px solid white !important;
    transition: 50ms all ease-in-out;
}

#demo-canvas {
    top: 0;
    position: fixed;
}

#pc1 {
    background-image: linear-gradient( rgba(1, 0, 0, 0.0) 90%, rgba(1, 0, 0, 1) 100%), url(../resources/images/spacex-launch-unsplash.jpg);
    background-position: bottom;
    background-size: cover;
    display: grid;
    grid-template-columns: 50vw 50vw;
    height: 86vh;
    padding-top: 12vh;
}

.guestin {
    grid-column: 1;
    grid-row: 1;
    height: 86vh;
    z-index: 100;
    align-self: center;
    justify-self: center;
    background-size: cover;
    background-position: bottom center;
}

.guestin h1 {
    text-align: center;
}

.signin {
    grid-column: 2;
    grid-row: 1;
    height: 86vh;
    z-index: 100;
    align-self: center;
    justify-self: center;
    background-size: cover;
    background-position: bottom center;
}

.signin h1 {
    text-align: center;
}

.win-grid {
    border: 1px solid white;
    letter-spacing: 2px;
    color: white;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    text-align: center;
    grid-gap: 1rem;
    padding: 5rem;
}

.win-btn {
    padding: 2rem;
    text-align: center;
    border: none;
    border-radius: 0px;
    /* background: black; */
    color: white;
    border: 1px solid transparent;
    z-index: 4;
}

#signin {
    background-color: var(--darkglass);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 30vw;
    z-index: 100;
    padding-bottom: 1rem;
    margin-top: 5vh;
    border-radius: var(--corner-rad);
    height: 60vh;
    max-height: 80vh;
    transition: all ease-in-out 200ms;
}

#signin:focus-within,
#signin:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transition: all ease-in-out 200ms;
}

#signin form {
    width: 80%;
    z-index: 100;
    padding-bottom: 3rem;
}

#signin .logo {
    z-index: 100;
    margin-bottom: 1vh;
    margin-top: 2vh;
}

#signin .logo img {
    width: 300px;
}

#signin .field {
    display: flex;
    flex-direction: column;
  align-items: center;
  justify-content: center;
}

#signin label {
    font-size: 0.9rem;
    line-height: 2rem;
    font-weight: 500;
}

.text-input {
    margin-bottom: 1.3rem;
    width: 80%;
    border-radius: 2px;
    background: rgba(28, 28, 28, 0.8);
    border: 1px solid #555;
    color: #ccc;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
    font-size: 2vh;
}

.text-input:focus {
    /* outline: none; */
    outline: 1px solid #adb1b2;
}

#signin .text-input {
    font-family: var(--body-font);

    margin-bottom: 1.3rem;
    width: 80%;
    border-radius: 2px;
    background: #181818;
    border: 1px solid #555;
    color: #ccc;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
}

#signin .primary-btn {
    width: 100%;
    font-size: 2vh;
}

#signin .secondary-btn,
.or,
.links {
    width: 60%;
}

.large-header {
    position: absolute;
    margin-top: -12vh;
    width: 100%;
    /* background: radial-gradient(circle, rgba(0,137,168,1) 0%, rgba(0,38,46,1) 100%); */
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

#signin .links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

#signin .or {
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    align-items: center;
}

#signin .or .bar {
    flex: auto;
    border: none;
    height: 1px;
    background: #ccc;
}

#signin .or span {
    color: #ccc;
    padding: 0 0.8rem;
}

#main-footer {
    color: #ccc;
    text-align: center;
    font-size: 0.8rem;
    max-width: 80%;
    padding-top: 0vh;
}

#main-footer a {
    color: #f96816;
    text-decoration: underline;
}

.button-main {
    font-family: var(--body-font);
    outline: 2px solid white;
    background: rgb(61, 0, 255);
    background: linear-gradient(125deg, rgba(0, 22, 255, 0) 0%, rgba(0, 22, 255, .5) 50%, rgb(166, 0, 159) 100%);
    border: 0px;
    background-size: 200%;
    background-position: left;
    transition: ease-in-out 0.5s;
    color: white;
    text-align: center;
    font-weight: 400;
    align-self: center;
    font-size: 2vh;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 30%;
    padding-right: 30%;
    border-radius: 40px;
    margin-top: 1.5vh;
    /* max-width: 10vw; */
    z-index: 200;
    text-decoration: none;
}

.button-main:hover,
.button-main:focus {
    transition: ease-in-out 0.5s;
    background-position: right;
    cursor: pointer;
}

.retuser {
    height: 10vh;
    font-size: 3vh;
    padding-right: 15%;
    padding-left: 15%;
}

#accreate {
    margin-bottom: 10vh !important;
}

#guest {
    margin-top: 5vh;
}

#register {
    z-index: 100;
    background-color: rgba(0, 0, 0, 1);
    display: none;
    grid-template-rows: 0.5fr 3fr;
    position: absolute;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 60vw;
    z-index: 100;
    padding-bottom: 1rem;
    margin-top: 5vh;
    border-radius: var(--corner-rad);
    height: 60vh;
    max-height: 80vh;
    transition: all ease-in-out 200ms;
    margin-left: 20vw;
}

#regfields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

#regfields:nth-child(2n+1) {
    grid-column: 2;
}

#regfields .button-main {
    grid-column: 1 / span 2;
}

#register h1 {
    grid-row: 1;
    grid-column: 1 / span 2;
    text-align: center;
}

@media (min-width: 1200px) {
    #left {
        flex: 4;
    }
    #right {
        flex: 6;
    }
}

@media (max-width: 768px) {
    #right {
        display: none;
    }
    #left {
        justify-content: start;
        margin-top: 4vh;
    }
    #signin .logo {
        margin-bottom: 2vh;
    }
    #signin .text-input {
        margin-bottom: 0.7rem;
    }
    #main-footer {
        padding-top: 1rem;
    }
}

#drinks {
    /* position: absolute; */
    display: none;
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* width: 25%; */
    margin-top: 5vh;
    height: 40vh;
}

.coke {
    background: url(../resources/images/coca-cola.png) no-repeat;
    background-position: center;
    background-size: 60%;
    /* display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid red; */
}

.sprite {
    background: url(../resources/images/sprite-logo.png) no-repeat;
    background-position: center;
    background-size: 60%;
}

.aqua {
    background: url(../resources/images/Aquafina_2016.png) no-repeat;
    background-position: center;
    background-size: 60%;
}

.orange {
    background: url(../resources/images/minmaid.png) no-repeat;
    background-position: center;
    background-size: 60%;
}

#bkvid {
    margin-top: 0vh;
    position:fixed;
}

#ya0 {
    height: 200vh;
}

#ya0content {
    height: 200vh;
    margin-top: 15vh;
    display: grid;
    /* position: absolute; */
    grid-template-rows: 10vh 5vh 20vh 20vh 20vh 5vh 100vh;
    grid-template-columns: 20vw 20vw 20vw 20vw 20vw;
}

#tmtilflight {
    grid-column: 4 / span 2;
    grid-row: 3 / span 3;
    background-color: var(--darkglass);
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.11);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 80%;
    height: 100%;
    padding: 0;
    border-radius: var(--corner-rad);
    align-self: center;
    justify-self: center;
}

#flightm {
    align-self: center;
    justify-self: center;
    /* margin-top: 30%; */
    font-size: 7vh;
}

#tmtilflight #reminders {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tmtilflight #reminders span {
    font-size: 1.5vw;
}

@media screen and (max-aspect-ratio: 16/9) {
    #bkvid{
        height: 100vh;
        /* z-index: -1; */
    }  
}

@media screen and (min-aspect-ratio: 16/9) {
    #bkvid{
        width: 100vw;
        /* z-index: -1; */
    }  
}

#yacwelcome {
    position: relative;
    grid-row: 1;
    grid-column: 2 / span 3;
    font-size: 5vh;
    align-self: center;
    justify-self: center;
    animation: 300ms ease-in-out 10ms fadein;
    color: white;
    mix-blend-mode: difference;
}

#yastatus {
    background-color: var(--darkglass);
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.11);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    grid-row: 3 / span 3;
    grid-column: 1 / span 3;
    width: 80%;
    height: 100%;
    border-radius: var(--corner-rad);
    padding: 0;
    font-family: var(--body-font);
    align-self: center;
    justify-self: center;
    color: rgb(255, 255, 255);
    animation: 2s ease-in-out  fadein;
    animation-iteration-count: 1;

}

#yastatus h1 {
    font-size: 4vh;
    color: rgb(255, 255, 255);
}

#yaavail {
    background-color: var(--darkglass);
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.11);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    grid-row: 7;
    grid-column: 1 / span 5;
    width: 90vw;
    height: 90vh;
    padding: 0;
    border-radius: var(--corner-rad);
    align-self: center;
    justify-self: center;
    animation: 2s ease-in-out  fadein;
    animation-iteration-count: 1;
    transition: all ease-in-out 300ms;
}

/* #yaavail:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transition: all ease-in-out 300ms;
} */

#yaavail h1 {
    font-size: 4vh;
    padding-left: 0;
    padding-right: 0;

}

#yaslogan {
    position: absolute;
    margin-top:-33vh;
    margin-left: 80vw;
    font-size: 10vh;
    font-weight: 50;
}

#yalogout {
    width: 10vw;
    grid-column: 5;
    padding-left: 2vw;
    padding-right: 2vw;
    /* border: 2px solid white; */
    background: linear-gradient(125deg, rgba(0, 22, 255, 0) 0%, rgba(0, 22, 255, .5) 50%, rgba(255, 1, 245, 1) 100%);
    background-size: 200%;

}

#yalogout:hover {
    background-position: right;
}

#modalstart {
    background-color: #000000cc;
    position: fixed;
    float: bottom;
    bottom: 0;
    width: 100vw;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    /* margin-top: 100vh; */
}

#modalstart h1 {
    padding-left: 5vw;
    padding-right: 5vw;
}

#modalstart .button-main {
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    align-self: center;
    margin-left: 20vw;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.flightinfo {
    display: flex;
    flex-direction: row;
    width: 80vw;
    margin-left: 5vw;
    justify-content: space-between;
}

#aflightlist hr {
    width: 80vw;
    border-top: 1px;
}

#aflightlist .type {
    justify-self: left;
}

#aflightlist .flightinfo {
    display: grid;
    grid-template-columns: 20vw 20vw 20vw;
}

.flightdtnm {
    width: 30%;
    padding-left: 3vw;
    text-align: left;
}

.flightinfo .type {
    margin-top: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 4vh;
}

.flightinfo .date {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    color: #c2c2c2;
}

.flightinfo .book {
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    margin-right: 3vw;
    margin-top: 0vh;
    align-self: center;
    justify-self: flex-end;
}

#yastatuses {
    height: 80%;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

#yastatus .flightinfo {
    width: 40vw;
    margin-left: 0%;
    padding-left: 0%;
}

#yastatus hr {
    width: 40vw;
    border-top: 1px;
}

#yastatus .flightdtnm {
    width: 98%;
    padding-left: 0vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
}

#yastatus .type {
    width: 32vw;
    text-align: left;
}

#yastatus .date {
    width: 32vw;
    text-align: center;
}

.allinfo{
    background: black;
    margin-top: 18vh;
    display: grid;
    height: 85vh;
    grid-template-columns: 30vw 70vw;
    
}

.sideinf{
    border-right: 1px solid white;
    height: 65vh;
    border-top: 1px solid white;
}

.sideinf ul{
    padding: 0px;
    list-style: none;
}

.sideinf li{
    margin: 0px;
    color: white;
    display: grid;
    align-items: center;
    height: 13vh;
    border-bottom: 1px solid white;
}

.nou{
    border-bottom-width: 0px !important;
}


.lbusin{
    display: grid;
    
    grid-template-columns: 1fr 1fr;
}

.sideimage{
    height: 100vh;
    width: 50vw;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* padding-left: 10vw; */
    font-size: 3vh;
    --light-darken-overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    --darker-darken-overlay: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    /* background-color: green; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: 400ms all cubic-bezier(.51,-0.01,.19,.96);
}

.sideimage:hover {
    /* background-size: 110vh; */
    transition: 300ms all cubic-bezier(.51,-0.01,.19,.96);
}

#busin {
    background-image: var(--light-darken-overlay), url(../resources/images/lab_tall.png);
}

#busin:hover {
    background-image: var(--darker-darken-overlay), url(../resources/images/lab_tall.png);

}

#leis{
    background-image: var(--light-darken-overlay), url(../resources/images/people-in-space.jpg);
    /* background-size: 100%; */
    
    transition: 400ms all cubic-bezier(.51,-0.01,.19,.96);
}

#leis:hover {
    background-image: var(--darker-darken-overlay), url(../resources/images/people-in-space.jpg);
    /* background-size: 140%; */
    transition: 300ms all cubic-bezier(.51,-0.01,.19,.96);
}

#leis-info{
    display: block;
}

#leis-heim{
    display: none;
}

#leis-sav {
    display: none;
}

#leis-aeth {
    display: none;
}

.sideimage h1{
    margin-top: 10vh;
}

.sideimage p{
    text-align: left;
    font-size: 2.5vh;
    height: 0vh;
    overflow: hidden;
    max-width: 45vw;
    line-height: 7vh;
    transition: all cubic-bezier(.99,.15,.73,.77) 400ms;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.sideimage:hover p {
    height: 45vh;
    transition: all ease-in-out 300ms;
}

.lbusin .content {
    align-self: center;
    justify-self: center;
}

.sideimage a{
    font-style: none;
    color: white;
    padding-top: 0px;
    margin-top: 0px;
    font-size: 2.5vh;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
  }
  
  .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

#busin a:hover{
    opacity: .8;
}

#leis a:hover{
    opacity: .8;
}

/* -------------------------------------------------------------------------- */
/*                                  BOOK PAGE                                 */
/* -------------------------------------------------------------------------- */

#bp0 {
    background: linear-gradient( rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/pexels-pixabay-355465.jpg);
    background-size: cover;
    display: grid;
    grid-template-columns: 10vw 60vw 30vw;
    grid-template-rows: 10vh 5vh 5vh 75vh;
    --imgsize: 9vw;
}

#flighttype {
    align-self: center;
    justify-self: center;
    text-align: center;
    grid-column: 1 / span 3;
    grid-row: 3;
    font-size: 8vh;
    margin: 0;
    /* margin: 0;
    padding-top: 9vh;
    height: 20vh */
}

.overengine{
    margin-top: 5vh;
}

.leftright h2{
    display: grid;
    justify-content: center;
}

.leftright p{
    width: 100%;
    line-height: 300%;
    font-size: 20px;
}

.leftright{
    width: 50%;
    float: left;
}

.engineOver{
    padding-right: 2%;
    border-right: 1px solid white;
}

#schedede {
    width: 10vw;
    padding-left: 2vw;
    padding-right: 2vw;
    justify-self:center;
    align-self:center;
    margin-top: 20vh;
}

.engines ul{
    list-style-type: none;
}

.engines ul li{
    width: 80%;
    border-bottom: 1px solid rgba(119, 118, 118, 0.603);
    padding-top: 6%;
    padding-bottom: 6%;
    font-size: 20px;
}

.engines li span{
    float: right;
}

.secondinfo p{
    width: 80%;
    line-height: 300%;
    font-size: 20px;
}

.thorsbs{
    float: left;
}

.thorinfo{
    border-left: 1px solid white;
    margin-left: 20%;
    padding-left: 20%;
}

.thoroverview p{
    width: 80%;
    font-size: 20px;
    line-height: 300%;

    grid-column: 1 / span 3;
    grid-row: 3;
    font-size: 10vh;
    margin: 0;
    /* margin: 0;
    padding-top: 9vh;
    height: 20vh */
}

.steps {
    align-self: center;
    grid-row: 2 / span 4;
    grid-column: 1;
    /* margin-left: 5vw; */
    display: grid;
    flex-direction: column;
    height: 60%;
    justify-content: center;
    align-items: center;

}



.bookstep {
    font-size: 8vh;
    /* padding-top: 0; */
    /* padding-bottom: 2vh; */
    /* padding-left: 4vw; */
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    color:rgba(83, 83, 83, 0.507)

}

.activeb {
    color:rgba(255, 255, 255, 0.966);
    background-color: rgba(201, 201, 201, 0.3);
    border-radius: var(--corner-rad);
    transition: all ease-in-out 200ms;
}

#bp0 .content {
    background-color: var(--darkglass);
    color: #000;
    align-self: center;
    justify-self: center;
    border-radius: 10px;
    width: 80vw;
    height: 65vh;
    grid-row: 4;
    grid-column: 2 / span 3;
    align-items: start;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

#bp0 .content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

#bp0 table {
    width: 80vw;
    border-collapse: collapse;
}

#bp0 thead {
    position: -webkit-sticky;
    position: sticky;
}

#bp0 thead th {
    background-color: var(--lightglass);
    font-size: 2vh;
    height: 1em;
    font-weight: bold;
    padding-top: 1vh;
    padding-bottom: 1vh;
    margin-bottom: 0;
}

#bp0 th {
    border-bottom: 1px solid #bebdbd;
}

#bp0 th {
    font-weight: normal;
    align-content: center;
}

#bp0 th {
    padding-top: 3vh;
    padding-bottom: 3vh;
    height: 5vh;
    vertical-align: middle;
    /* background-color: rgba(4, 255, 0, 0.3); */
    /* border: 2px solid green; */
}

#bp0 tr {
    color: white;
    width: 100%;
    transition: all ease-in-out 200ms;
}

#bp0 tr:hover {
    background-color: var(--lightglass);
    transition: all ease-in-out 200ms;
}

#bp0 .grimagecontainer {
    width: var(--imgsize);
}

#bp0 .grimage {
    width: var(--imgsize);
    padding: 0;
    margin: 0;
    background-image: url(/resources/images/pool-g854a75762_1280.jpg);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

#bp0 .amen {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    width: 40%;
    /* background-color: rgba(0, 212, 255, .3); */
}

.inf {
    color:white;
    display: flex;
    flex-direction: column;
}

#trainselect {
    display: grid;
    grid-template-columns: 50% 50%;
}

#health,
#trainingd {
    padding-left: 3vw;
    padding-top: 5vh;
    
}

#schedleft {
    color: white;
    height: 100%;
    align-items: center;
    justify-items: center;
    text-align: center;
    border-left: 1px solid var(--lightglass);
}

#schedleft #flightname {
    font-size: 5vh;

}

#dates{
    display: flex;
    flex-direction: column;
}

.datedescriptor {
    padding-bottom: 0;
    margin-bottom: 0;
}

.datedescription {
    padding-top: 0;
    margin-top: 1vh;
}

.dtselectla {
    color: white;
    font-size: 3vh;
}

.dtselect {
    color: black;
    margin-top: 1vh;
    font-family: var(--body-font);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px;
    border-radius: var(--corner-rad);
    border-width: 0;
}

.dtselect:focus,
.dtselect:active {
    border: 2px solid purple;
}

#confirmselect {
    color: white;
    display: grid;
    align-self:initial;
    /* justify-self:end; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 10vh 40vh 15vh;
    justify-content: center;
    /* align-content: center; */
}

#confleft {
    grid-column: 1;
    grid-row: 2;
    padding-left: 2vw;
    text-align: left;
}

#confirmselect .datedescriptor,
#confirmselect .datedescription {
    text-align: left;

}

#confright {
    grid-column: 2;
    grid-row: 2;
    padding-left: 0vw;
    text-align: left;
}

#confirmselect #tyc {
    font-size: 3vw;
    grid-column: 1 / span 3;
    grid-row: 1;
    margin-top: 0;
    margin-bottom: 0;
}

#prdesc {
    text-align: center !important;
    font-size: 3vw !important;
}

#prc {
    font-size: 4vw;
    margin: 0;
    text-align: center !important;
}

#prpay {
    /* justify-self: center; */
    justify-self: center;
    align-self: center;
    /* border-left: 1px solid var(--lightglass); */
}

#confirmselect #paye {
    grid-row: 3;
    grid-column: 2;
    width: 10vh;
    height: 10vh;
    justify-self: center;
    display: none;
}

#confirmselect .button-main {
    /* margin-top: 12vh; */
    grid-column: 2;
}

#confirmselect h1 {
    color: white;
    font-size: 1.5vw;
    text-align: center;
}

#confirmselect p {
    color: white;
    text-align: center;
}

.inf .button-main {
    align-self: center;
}



/* -------------------------------------------------------------------------- */
/*                                LEISURE PAGE                                */
/* -------------------------------------------------------------------------- */

.leiam .amen {
    display: grid;
    grid-template-columns: 30vw 30vw 30vw;
    height: 30vh;
    
}

.drinks{
    height: 20vh;
    display: grid;
    grid-template-columns: 30vw 13vw 13vw 13vw 13vw;
    grid-gap: 2vw;
    border-bottom: 1px solid white;
}

.drinks h1{
    font-size: 3vw;
    display: grid;
    justify-content: center;
    align-items: center;
}

.leiam{
    background-image: linear-gradient(180deg, rgb(23, 23, 25) 50%, var(--background) 90% );
  
}

.leiam .amen h1{
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
}

.leiam .amen ul{
    /* list-style: none; */
    display: grid;
    align-items: center;
}

.eat{
    display: grid;
    margin-top: 1vh;
    height: 18vh;
}

.eat h2{
    display: grid;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.eat:hover{
    background-position: center !important;
    background-size: cover !important;
    transition: all ease-in-out 300ms;
}

.eat:hover h2{
    opacity: 1 !important;
    transition: all ease-in-out 300ms;
}

.aqua{
    background: url(../resources/images/Aquafina_2016.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.coke{
    background: url(../resources/images/coca-cola.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.minmaid{
    background: url(../resources/images/minmaid.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.sprite{
    background: url(../resources/images/sprite-logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.chicken{
    background: url(../resources/images/Best-Grilled-Chicken-Breast.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid white
}

.chicken:hover {
    background: linear-gradient(rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/Best-Grilled-Chicken-Breast.jpg);
    transition: all ease-in-out 300ms;
}

.steak{
    background: url(../resources/images/steakforretro.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid white
}

.steak:hover {
    background: linear-gradient(rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/steakforretro.jpg);
}

.fish{
    background: url(../resources/images/salmonforretro.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid white
}

.fish:hover {
    background: linear-gradient(rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/salmonforretro.jpg);
}

.salad{
    background: url(../resources/images/saladforretro.jpeg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid white
}

.salad:hover {
    background: linear-gradient(rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/saladforretro.jpeg);
}

.busi{
    height: 100vh;
    background:  linear-gradient( rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%), url(../resources/images/SunriseInSpace.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.smenu {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 10vh;
    margin-left: 10vw;
    margin-right: 10vw;
    padding-top: 15vh;
    grid-gap: 2vw;
    grid-template-columns: calc(80vw/5) calc(80vw/5) calc(80vw/5) calc(80vw/5) calc(80vw/5);
}

.smenu h1 {
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
    margin: 0px;
    height: 10vh;
    background-color: var(--darkglass);
   /* background:rgba(0, 0, 0, 0.71); */
    border-radius: 10px;
}

.nothing {
    background-color: transparent !important;
    
}

.smenuactive {
    background-color: var(--lightglass) !important;
}

.smenu h1:hover {
    background-color: var(--lightglass);
    transition: all ease-in-out 150ms;
}

.split {
    display: grid;
    grid-template-columns: 37.5vw 37.5vw;
    grid-gap: 5vw;
    height: 65vh;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
}

.extra{
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: var(--darkglass);
    border-radius: 10px;
}


.cmony{
    letter-spacing: 1vw;
    /* margin: 0; */
}

.ally{
    display: grid;
    grid-template-rows: 1fr 1fr 1.5fr;
    /* margin-bottom: 5vh; */
}

.soof{
    background: transparent !important;
}

.pwe{
    margin-left: 0%;
    line-height: 5vh;
    font-size: 1vw;
    margin-right: 0%;
    height: 60vh;
}

#awefasd {
    font-size: 1vw;
}


#leis-info p {
    grid-column: 1 / span 2;
    font-size: 1.5vw;
    line-height: 5vh;
    width: 80vw;
}

.leisy{
    height: 100vh;
}

.leisypic{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../resources/images/SunriseInSpace.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 55vh;
}

.contenty{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 45vh;
    background-color: black;
}

.titly{
    display: grid;
    grid-template-columns: 44vw 44vw; 
    grid-column-gap: 2vw;
  }

.leet{
    display: grid;
    justify-content: center;
    align-items: center;
}

.LTitle{
    font-size: 42px;
}

.Lpara p{
    font-size: 22px;
    
}

.retry {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100vw;
}

.picy{
    width: 100vw;
    height: 100vh;
    background-image: url(../resources/images/SunriseInSpace.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
}

.tempy{
    text-align: center;
    padding-top: 8vh;
    padding-bottom: 0vh;
    width: 100vw;
    font-size: 7vh;
}

.oofy p{
    color: white;
    font-size: 20px;
    line-height: 5vh;
}

.splity{    
    display: grid;
    justify-content: center;
    grid-template-columns: 40vw 40vw;
    grid-template-rows: 64vh;
    grid-column-gap: 5vw;
}


.listy{
    padding-left: 0px;
    margin-top: 0px;
}

.rightyy {
    grid-row: 1;
    grid-column: 2;
}

.listy li{
    display: grid;
    justify-content: center;
    align-items: center;
    height: calc(64vh/4.2);
    width: 40vw;
    color: rgba(0,0,0,0);
    margin-bottom: 1.016vh;
    list-style: none;
   border-radius: 15px;
   background-color: var(--darkglass);
   transform: all ease-in-out 150ms;
}

.listy li h1{
    font-size: 48px;
    letter-spacing: 2px;
    margin: 0 0 0 0;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    transition:all ease-in-out 150ms;

}

#cmon{
    display: grid;
    justify-content: center;
    align-items: center;
}

.listy li:hover{
    background-color: var(--lightglass);
    transition: all ease-in-out 150ms;
    
}

.listy li:hover h1{
    font-size: 60px;
    transition:all ease-in-out 200ms;
}



.infos{
    border-radius: 15px;
    height: 64vh;
    background-color: var(--darkglass);
    display: grid;
    justify-content: center;
    align-items: center;
}


.infos p{
    width: 35vw;
}

.tiery{
    height: 15vh;
    display: grid;
    justify-items: center;
    align-items: center;
}

.tiersplit{
    width: 38vw;
    display: grid;
    align-items: center;
    grid-template-rows: 1fr 1fr 1fr;
}

.tier1card{
    height: 64vh;
    border-radius: 15px;
    background-color: var(--darkglass);
    display: grid;
    justify-content: center;
}

.tier1card h1{
    font-size: 5vh;
    display: grid;
    justify-content: center;
    align-items: center;
}

.tier1card p {
    font-size: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
}

.lop{
    grid-row: 1;
    display: grid;
    justify-items: center; 
}

.lop h1{
    font-size: 38px;
    display: grid;
    /* justify-content: center !important; */
    align-items: end;
    /* align-self: center !important;  */
    margin: 0px;
}

.lop p{
    margin: 0px;
}

.middy{
    display: grid;
    justify-items: center;
    overflow: scroll;
}

/* #useless h1{
    display: grid;
    align-items: center;
    justify-content: center;
} */

#useless{
    
    height: 100%;
    width: 100%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

/* -------------------------------------------------------------------------- */
/*                                  Business                                  */
/* -------------------------------------------------------------------------- */


.slider{
    width: 100vw;
    height: 100vh;
    border-radius: 10px;
    overflow: hidden;
    
  }
  
  .slides{
    width: 500%;
    /* height: 500px; */
    display: flex;
  }
  
  .slides input{
    display: none;
  }
  
  .slide{
    width: 20%;
    transition: 2s;
  }
  
  .slide img{
    position: absolute;
    margin-top: 50vh;
    width: 100vw;
    object-fit: cover;

    height: 50vh;
  }
  
  .navigation-mannual{
    /* background-color: green; */
    position: absolute;
    width: 100vw;
    /* margin-top: 5vh; */
    /* margin-left: 50vw; */
    display: flex;
    justify-content: center;
   
  }
  
  .mannual-btn{
    border: 2px solid #ccc;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .mannual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .mannual-btn:hover{
    background-color: #ccc;
  }
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  #radio4:checked ~ .first{
    margin-left: -60%;
  }
  
  /* Automatic Navigation */
  .navigation-auto{
    position: absolute;
    display: flex;
    width: 100vw;
    justify-content: center;
    /* margin-top: 460px; */
    margin-top: 95vh;
    /* background-color: green; */
  }
  
  .navigation-auto div{
    border: 2px solid #333;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked ~.navigation-auto .auto-btn-1{
    background: #ccc;
  }
  
  #radio2:checked ~.navigation-auto .auto-btn-2{
    background: #ccc;
  }
  
  
  #radio3:checked ~.navigation-auto .auto-btn-3{
    background: #ccc;
  }
  
  #radio4:checked ~.navigation-auto .auto-btn-4{
    background: #ccc;
  }

  /*-- 旧代码.helpy{
      margin-top: 5vh;
      margin-bottom: 5vh;
      display: grid;
      grid-template-columns: 70vw 30vw;
      height: auto;
      
    } ---- 旧代码*/
    
    .There{
        margin-left: 5vw;
        margin-right: 5vw;
    }
    
    .There .midsmall {
        margin-top: 2vh;
        color: rgb(168, 168, 168);
        line-height: 4vh;
        max-width: 40vw;
        text-align: center;
        font-size: 1.2vw;
        color: white;
        max-width: 60vw;
        padding-right: 5vw;
        padding-bottom: 4vh;
    }

    .kongbai{
        width: 100%;
        height: 15vh; 
    }
    .There h1{
        margin-top: 0px;
        font-size: 5vw;
        display: inline-block;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .There p{
        font-size: 1.3vw;
        margin-left: 2vw;
        margin-right: 2vw
    }
    
    .zongti{
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle at top center, white);
        background-color: #000000;
    }

    .sfq{
        display: flex;
        width: 90vw;
        height: 500px;
        overflow: hidden;
    }

    .tupian{
        position: relative;
        width: 60px;
        margin: 10px;
        cursor: pointer;
        border-radius: 30px;
        background-size: cover;
        background-position: center;
        transition: 0.5s cubic-bezier(0.05,0.61,0.41, 0.6);
        overflow: hidden;
    }

    .tupian.jihuo{
        flex: 1;
        margin: 0;
        border-radius: 40px;
    }

    .tupian.jihuo .yinying{
        background: linear-gradient(to top, rgb(56, 55, 55));
    }

    .tupian .yinying{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        transition: 0.5s cubic-bezier(0.05, 0.61,0.41, 0.6);
    }



    /* 旧代码
.picss{
    /* background: blue; */
    /* 旧代码display: grid;
    /* align-items: center; */
   /* 旧代码 justify-content: center;
    grid-template-rows: calc(84vh/3) calc(84vh/3) calc(84vh/3);
    grid-gap: 4vh;
}

.dig{
    width: 25vw;
    margin-right: 2.5vw;
    background: url(../resources/images/lab.png);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    border: 2px solid white
}

.front{
    width: 25vw;
    margin-right: 2.5vw;
    background: url(../resources/images/lab2.png);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    border: 2px solid white
}

.below{
    width: 25vw;
    margin-right: 2.5vw;
    background: url(../resources/images/lab3.png);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    border: 2px solid white
}


.biggy{
    display: grid;
    padding-top: 12vh;
    justify-content: center;
    align-items: center;
    /* grid-template-columns: 40vw 40vw; */
   /* 旧代码 width: 98vw;
    /* grid-column-gap: 2vw; */
   /* 旧代码 height: auto;
    padding-bottom: 0vh;
    margin-top: 0vh;
    margin-bottom: 0vh;
} 旧代码*/

.bussy{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10vh;
}



.leftist {
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leftist .img {
    height: 25vh;
}

.leftist #labs {
    
    width: 50vw;
}

#labs p {
    font-size: 1vw;
    line-height: 3vh;
}

.leftist h1{
    font-size:  6vh;
}

.leftist p{
    font-size: 3vh;
    line-height: 5.5vh;
}

.seriously{
    margin-top: 3vh;
}

.rightist {
    height: 100vh;
    width: 25vw;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.rightist img {
    width: 15vw;
}

.cardy {
    width: 42vw;
    background-color: rgba(255, 255, 255, .15);  
    backdrop-filter: blur(5px);
    /* background-color: rgba(169,169,169, .1); */
    border-radius: var(--corner-rad);
    display: grid;
    justify-content: center;
}

.cardy h1{
    font-size: 5vh;
    margin-bottom: 0px;
}

.quoty{
    display: grid;
    justify-content: center;
    height: 10vh;
    margin-bottom: 3vh;
}

.yoyo{
    display: grid;
}


.bussy input[type=text], select, textarea {
    width: 35vw;
    padding: 12px;
    background-color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 1vh; 
    margin-bottom: 2vh; 
    resize: vertical;
  }

  .bussy input[type=text], select, textarea p{
    color: white;
    font-family: var(--body-font);
  }

  .bussy input[type=submit] {
    width: 10vw;
    background: linear-gradient(125deg, rgba(0, 22, 255, 1) 0%, rgba(255, 1, 245, 1) 100%);
    padding-top: 3%;
    padding-bottom: 3%;
    border-radius: 40px;
    border: 0px;
    color: white;
    font-weight: 400;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 3%;
    font-family: var(--body-font);
  }
   
  .zt{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
  }

  .kapian{
    width: 100vw;
    /*max-width: 850px;*/
    height: 350px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .ka{
    display: flex;
    align-items: center;
    width: 100%;
    height: 350px;
    padding-left: 30px;
    position: absolute;
    overflow: hidden;
  }

  .ka .zhaopian{
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .2);
  }

  .ka .zhaopian img{
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.6s;
  }

  #kp_1:checked ~ .ka-1 img,
  #kp_2:checked ~ .ka-2 img,
  #kp_3:checked ~ .ka-3 img,
  #kp_4:checked ~ .ka-4 img,
  #kp_5:checked ~ .ka-5 img{
    opacity: 1;
    transition-delay: 0.2s;
  }

  .ka .wenben{
    flex: 1;
    padding: 0 30px 0 35px;
    position: relative;
    left: 50px;
    opacity: 0;
    transition: 0.6s;
  }

  #kp_1:checked ~ .ka-1 .wenben,
  #kp_2:checked ~ .ka-2 .wenben,
  #kp_3:checked ~ .ka-3 .wenben,
  #kp_4:checked ~ .ka-4 .wenben,
  #kp_5:checked ~ .ka-5 .wenben{
    opacity: 1;
    z-index: 9;
    left: 0;
    transition-delay: 0.3s;
  }

  .ka .biaoti{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
  }

  .ka .wenzi{
    font-size: 17px;
    color: #555;
    text-align: justify;
    margin-bottom: 25px;
    margin-right: 5vw;
  }

  .ka a{
    padding: 13px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    float: right;
  }

  .kps{
    position: absolute;
    bottom: 25px;
    left: 55%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .kps .kp{
    width: 50px;
    height: 10px;
    background-color: #dfdfdf;
    display: inline-flex;
    margin: 0 3px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .kps .kp::before{
    content: "";
    width: 0%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
  }

  #kp_1:checked ~ .kas .ka-1::before,
  #kp_2:checked ~ .kas .ka-2::before,
  #kp_3:checked ~ .kas .ka-3::before,
  #kp_4:checked ~ .kas .ka-4::before,
  #kp_5:checked ~ .kas .ka-5::before{
    width: 100%;
    transform: scaleX(1);
  }

  input[type=submit]:hover {
    
  }

  /* -------------------------------------------------------------------------- */
  /*                                  About Us                                  */
  /* -------------------------------------------------------------------------- */

  .Tabouty{
    background: linear-gradient( rgba(1, 0, 0, 0.0) 20%, rgba(1, 0, 0, 1) 100%), url(../resources/images/pexels-pixabay-256229.jpg);
    background-size: cover;
    display: grid;
    padding-top: 10vh;
    grid-template-rows: auto 47vh;
    justify-content: center;
    /* padding-bottom: 5vh; */
    align-items: center;
    grid-gap: 2vh;
    /* grid-column-gap: 2vw; */
    /* height: 100vh; */
    padding-bottom: 5vh;
    width: 100vw;

}

.abinfo h1 {
    text-align: center;
    font-size: 5vh;
}

.abinfo p{
    text-shadow: black 0px 0px 4px;
    margin-top: 2vh;
    /* font-size: 2vh; */
    line-height: 5vh;
    max-width: 90vw;
}

.abinfo a {
    color: white !important;
}

.abbox{
    /* margin-top: 20vh; */
    /* height: 80vh; */
    display: flex;
    flex-direction: row;
    /* row-gap: 20vw; */
    column-gap: 10vw;
    align-items: center;
    justify-content: center;
}


.contactbox {
    /* position: relative; */
    margin-top: 0vh;
    height: 40vh;
    align-self: center;
    justify-self: center;
    /* grid-column: 2; */
    /* grid-row: 1; */
    background-color: var(--lightglass);
    border-radius: var(--corner-rad);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* margin-left: 10vw; */
    width: 30vw;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mapboxgl-popup {
    max-width: 400px;
    font: 12px/20px var(--body-font);
}

.mapcontainer {
    /* margin-top: 3vh; */
    display: block;
    place-self: center;
    /* overflow-y: hidden; */
    grid-row: 2;
    grid-column: 2;
    z-index: 5;
    opacity: 0.7;
}

#map {
    -ms-overflow-style: none;  /* IE and Edge */
    /* overflow-y: hidden; */
    scrollbar-width: none;  /* Firefox */
}

#map::-webkit-scrollbar {
    display: none;
    /* overflow-y: hidden; */
  }

.mapcontainer .map {
    overflow-y: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
    /* position: absolute; */
    /* grid-column: 2; */
    /* grid-row: 1; */
    border: none;
    height: 40vh;
    width: 20vw;
    border-radius: var(--corner-rad);
    /* width: 100%; */
    /* float: left; */
}

.mapcontainer .map::-webkit-scrollbar {
    display: none;
    /* overflow-y: hidden; */
  }

.contactbox h3 {
    color: rgb(255, 255, 255);
    font-family: var(--head-font);
    padding-top: 1vh;
    font-size: 5vh;
    margin-top: 0;
    margin-left: 2vw;
    margin-bottom: 0;
    
}

.newscontainer {
    color: #b2b2b2;
    width: 20vw;
    border-radius: var(--corner-rad);
    background-color: var(--lightglass);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 200ms all ease-in-out;
    cursor: pointer;

}

.newscontainer .news {
    filter: invert(0.7);
    height: 14vh;
    transition: 200ms all ease-in-out;

}

.newscontainer:hover {
    color:white;
    transition: 200ms all ease-in-out;
}

.newscontainer:hover .news {
    height: 16vh;
    filter:invert(1);
    transition: 300ms all ease-in-out;
}

.infobox div {
    display: flex;
    margin: 0;
    margin-left: 2vw;
    padding: 0;
    align-items: center;
}

.infobox div span {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%
}

.infobox div p {
    font-size: 3vh;
    margin-left: 1em;
    padding: 0;
}

.infobox div a {
    margin-left: 1em;
    font-size: 3vh;
    color: white;
    transition: all ease-in-out 250ms;
    text-decoration: none;
}

.infobox div a:hover {
    color: rgb(146, 146, 146);
    transition: all ease-in-out 250ms;
}

.soc {
    margin-top: 10px;
    display: flex;
}

.soc li {
    list-style: none;
    margin-right: 15px;
}

.soc li a {
    color: white;
    transition: all ease-in-out 250ms;
    font-size: 4vh;
}

.soc li a:hover {
    color: rgb(146, 146, 146);
    font-size: 4vh;
    transition: all ease-in-out 250ms;
}

/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */

.footy{
    position: relative;
    /* width: 100vw; */
    z-index: 1000;
    bottom: 0;
    /* margin-top: 10vh; */
    height: 8vh;
    background-color: var(--background);
    display: grid;
    grid-template-columns: calc(100vw/12) calc(100vw/14) calc(100vw/14) calc(100vw/14) calc(100vw/14) calc(100vw/14) calc(100vw/14) ;
    grid-template-rows: 8vh;
    justify-content: center;
    align-items: center;
}

#mainpage .footy {
    background-color: rgba(50,4,89,1);
}

.ifoot {
    display: grid;
    justify-content: center;
    align-items: center;
    
    grid-row: 1;
    /* background: red; */
}

.ifoot a {
    /* font-weight: 700; */
    font-size: .7vw;
    display: grid;
    grid-row: 1;
    justify-content: center;
    font-size: auto;
    color: white;
    text-decoration: none;

    align-self: center;
}

.ifoot a:hover{
    opacity: .7;
}

/* -------------------------------------------------------------------------- */
/*                                     3D                                     */
/* -------------------------------------------------------------------------- */

#bg {
    margin-left: 25vw;
}

#sp { 
    position: absolute;
    left:0px !important;
    top:25px;
    left:auto;
    z-index: 2;
}

#sc { 
    position: absolute;
    top:60px;
    left:0px;
    left:auto;
    z-index: 2;
}

.infopanels {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: clip; 
    scroll-snap-type: y mandatory;
    position: relative;
    margin-top: -90vh;
    padding-left: 3vw;
    /* background-color: var(--lightglass); */
    border-radius: 0px var(--corner-rad) var(--corner-rad) 0px;
    z-index: 1000;
    height: 80vh;
    width: 20vw;
    overflow-y: scroll;
}

.divoverlay {
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.divoverlay h1 {
    font-family: var(--head-font);
    font-size: 2vw;
}

@keyframes jump {
    0%, 100% {
        margin-top: 0px;
        height: 2vh;
    } 50% {
        height: calc(2vh - 5px);
        margin-top: 5px;
    }
}

.divoverlay .jumpy {
    animation: 1s infinite jump;
}

.divoverlay p {
    padding-left: 1vw;
    padding-right: 2vw;
    line-height: 2;

}

.infopanels::-webkit-scrollbar {
    display: none;
}

/* -------------------------------------------------------------------------- */
/*                                    News                                    */
/* -------------------------------------------------------------------------- */

.timeline {
    position: relative;
    /* max-width: 800px; */
    width: 100vw;
    display: grid;
    grid-template-columns: 50vw 50vw;
    margin: 0vw 0vw;
    padding: 0vw 0px;
    overflow: hidden;
    transition: 500ms all ease-in-out;
    /* background-color: green; */
}

.timeline-item {
    /* margin-right: 15vw; */
    grid-column: 1;
    justify-self: center;
    align-self: center;
    padding: 0vw 0px;
    margin: 0vw 0vw;
    width: 95%;
    cursor: pointer;
    margin-bottom: 50px;
    position: relative;
}

.nopoint {
    cursor:default !important;
}

.timeline-item:first-child {
    margin-top: 15vh;
}

.timeline-content {
    background: radial-gradient(666px at 0.4% 48%, rgb(202, 204, 227) 0%, rgb(89, 89, 99) 97.5%);
    opacity: .7;
    backdrop-filter:blur(10px);
    position: relative;
    margin-left: 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 6px;
}



.timeline h2 {
    margin-top: 0;
}

.timeline a {
    color: #000;
    text-decoration: none;
}

.timeline p {
    margin-bottom: 0;
    color:rgb(0, 0, 10);
}

.timeline b {
    margin-bottom: auto;
    color:dimgray;
    text-align: right;
    size: 2px;
    text-decoration: none;
}

.popup {
    position: fixed;
    border-radius: var(--corner-rad);
    top: 15vh;
    height: 75vh;
    width: 35vw;
    overflow-y: scroll;
    left: 75vw;
    transform: translate(-50%, 0%);
    background-color: white;
    /* border: 1px solid #ccc; */
    padding: 20px;
    box-shadow: 0px 0px 10px #000000;
    display: none;
    z-index: 999;
    background-color: #b1bfd8;
background-image: linear-gradient(135deg, #b1bfd8 0%, #6782b4 74%);

}

.popup h2 {
    margin-top: 0;
    color:rgb(0, 0, 10);
}

.popup p {
    margin-bottom: 0;
    color:rgb(0, 0, 10);
}

.popup-link {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
} 

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#nc1 {
    background-image: linear-gradient(rgba(1, 0, 0, 0.5) 0%, rgba(1, 0, 0, 0.5) 100%),url(../resources/images/universe-gdf1bcf5dc_1920.jpg);
    width: 100vw;
    height: 100vh;
    z-index: 0;
    position: fixed;
    background-size: 120%;
    background-position: top;
}


  /* -------------------------------------------------------------------------- */
  /*                                  Missions                                  */
  /* -------------------------------------------------------------------------- */


  .doneyet{
    display: grid;
    height: 80vh;
    /* justify-content: center; */
    grid-template-columns: calc(80vw/3) calc(80vw/3) calc(80vw/3);
  }

  .flip-card {
    background-color: transparent;
    width: 24vw;
    height: 70vh;
    cursor: pointer;
    
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    background-color: #bbb;
    color: black;
  }
  
  .flip-card-back {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    transform: rotateY(180deg);
  }

  .flip-card-back p{
    line-height: 2.8vh !important;
    padding: 0px !important;
    align-self: center;
    width: 20vw !important;
    font-size: 1.5vh !important;
  }

  .flip-card-front img {
    height: 100%;
    /* width: 100%; */
    /* background-size: cover; */
    /* background-image: url("../resources/images/heimicle.png"); */

  }

.overlaunch{
    display: grid;
    grid-template-rows: 15vh 40vh 20vh;
    align-items: center;
    justify-items: center;
}

.leftlaunch{
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.rightlaunch{
    /* grid-row: 1; */
    align-self: center;
    justify-self: center;
    height: 30vh;
    border-radius: var(--corner-rad);
    width: 90%;
    background-position: center;
    background-size: cover;
    background-image: url("../resources/images/pexels-pixabay-2163.jpg");
}

.undietext{
    margin-top: 15vh;
}

/* blast off 2 = IMG_9854.jpg */

.undie{
    display: grid;
    grid-template-columns: calc(72vw/3) calc(72vw/3) calc(72vw/3);
    margin-top: 10vh;
}

.alli{
    display: grid;
    grid-template-rows: 20vh 10vh;
    overflow-x: hidden;
   
}

.alli p{
    display: grid;
    margin: 0px;
    padding: 0px !important;
    justify-content: center;
}

.alli h1{
    display: grid;
    font-size: 12vh !important;
    margin: 0px;
    justify-content: center;
}

.tops{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 30vw 30vw;
}

.tops p{
    padding: 0px !important;
}

.tops h1{
    font-size: 6vh;
}

.lim{
    width: 75vw;
    height: 40vh;
    background-image: url("../resources/images/recov.jpeg");
    border-radius: var(--corner-rad);
    background-position: center;
    background-size: cover;
}

.topsi{
    display: grid;
    grid-template-rows: 10vh 10vh 35vh;
    align-items: center;
    justify-items: center;
}

.im{
    border-radius: var(--corner-rad);
    height: 30vh;
    width: 70vw;
    background-position: center;
    background-size: cover;
    background-image: url("../resources/images/DALLE astro.png"); 
}

.ovim{
    /* margin-top: 5vh; */
    display: grid;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

#mppl0{
    background-color: var(--lightglass);
    padding: 0;
    align-self: center;
    max-width: 80vw;
    padding-left: 2vw;
    padding-right: 2vw;
    border-radius: var(--corner-rad);
    /* width: 80vw; */
    height: 40%;
    font-size: 1.5vh;
    /* line-height: auto; */
    /* max-width: 30vw; */
}

.planns p{
    
}

.retrog{
    /* height: 60vh; */
    display: grid;
    margin-top: 12vh;
    justify-content: center;
}

.retrog h1{
    font-size: 5vh;
    display: grid;
    align-items: center;
    justify-content: center;
}

.retrog p{
    margin-top: 2vh;
    color: rgb(168, 168, 168);
    line-height: 3vh;
    max-width: 40vw;
    font-size: 2.2vh;
    text-align: center;
    font-size: .8vw;
    /* letter-spacing: .1vw; */
}

.ipics{
    margin-top: 4vh;
    display: grid;
    justify-content: center;
    /* height: 70vh; */
    grid-template-columns: 30vw 30vw;
    grid-gap: 2vw;
}

.ipics div {
    border-radius: var(--corner-rad);

}

.iright{
    display: grid;
    height: 60vh;
    grid-gap: 2vw;
}

.irtop{
    background-position: center;
    background-size: cover;
    background-image: url("../resources/images/DALLE health.png"); 
}

.irbot{
    background-position: center;
    background-size: cover;
    background-image: url("../resources/images/visual-ga87ae6a50_1920.jpg"); 
}

.ileft{
    height: 60vh;
    background-position: center;
    background-size: cover;
    background-image: url("../resources/images/pexels-mart-production-7088526.jpg");
}

#mbot{
    margin-bottom: 5vh;
    margin-bottom: 20vh;
}

.showd{
    /* display: grid;
    justify-content: center;
    align-items: center; */
    text-align: center;
    margin-bottom: 0px;
    font-size: 5vh;
    letter-spacing: .6vw;
}


.both{
    display: grid;
  
    grid-template-columns: 20vw 80vw;
    padding-top: 10vh;
    height: auto;
    min-height: 90vh;
    background-color: #181818;
}

.circles{
    height: 90vh;
    display: grid;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    position: fixed;
    margin-left: 5vw;
}

.bb {
    height: 12vh;
    width: 12vh;
    background: var(--darkglass);
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr 1fr; */
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    transition: 200ms all ease-in-out;
}

.b {
    height: calc(100vh/20);
    width: calc(100vh/20);
    filter: invert(0.5);
}

.bactive {
    height: 13vh;
    margin-left: -0.5vh;
    margin-bottom: -0.5vh;
    margin-top: -0.5vh;
    width: 13vh;
    background: var(--lightglass);
    transition: 400ms all ease-in-out;
}

.bb:hover {
    height: 12.5vh;
    margin-left: -0.25vh;
    margin-bottom: -0.25vh;
    margin-top: -0.25vh;
    width: 12.5vh;
    background: var(--lightglass);
    transition: 400ms all ease-in-out;
}

.bb:hover p {
    transition: 400ms all ease-in-out;
    color: #c9c9c9;
}

.bb:hover .b {
    transition: 400ms all ease-in-out;
    filter: invert(0.8);
}

.bactive p {
    transition: 400ms all ease-in-out;
    color: white !important;
}

.bactive .b {
    transition: 400ms all ease-in-out;
    filter: invert(1) !important;
}

.bb p {
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: var(--head-font);
    color: #65636a;
    font-size: .8vw;
    display: grid;
    justify-content: center;

}

/* .b:hover{
height: calc(100vh/50);
width: calc(100vh/50);
transition: 100ms ease-in-out;
} */

.infoss{
    grid-row: 1;
    grid-column: 2;
    /* background: yellow; */
    display: grid;
    justify-content: center;
    overflow-y: scroll;
    overflow-x:hidden;

}

.injs {
    min-height: 110vh;
}

.inj-item {
    width: 70vw;
    background: var(--lightglass);
    /* background: linear-gradient(#2231ff, #717aff); */
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
    border-radius: var(--corner-rad);
    margin-top: 5vh;
    height: 8vh;
    overflow: hidden;
    cursor: pointer;
    transition: all ease-in-out 200ms;

}

.injs .active {
    height: 25vh;
    transition: all ease-in-out 300ms;
}

.injs .down {
    transition: all ease-in-out 200ms;
}

.injs .active .down {
    transition: all ease-in-out 300ms;
    rotate: 180deg;
}

.inj-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; 
    height: 8vh;
}

.inj-top .fa-solid {
    
}

.inj-cont {
    margin-top: 2vh;
    font-size: 1.1vw;
}

.inj-item h1 {
    display:initial;
    padding-left: 2vw;
}

.inj-item .fa-solid {
    font-size: 8vh;
    height: 0vh;
    margin:0;
    padding: 0;
}

.inj-item .down {
    font-size: 8vh;
    margin-left: 5vw;
    justify-content:flex-end;
}

.centerthep {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

#trainpicol {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
}

#trainpicol img{
    width: 80%;
    border-radius: var(--corner-rad);
}

.infoss p{
    /* background: radial-gradient(circle at 10% 20%, rgb(64, 84, 178) 0%, rgb(219, 2, 234) 90%); */
    /* background: radial-gradient(circle at 10% 20%, rgb(236, 158, 248) 0%, rgb(131, 83, 241) 90.1%); */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */

    margin-top: 2vh;
    color: rgb(168, 168, 168);
    line-height: 3vh;
    max-width: 40vw;
    text-align: center;
    font-size: .8vw ;

    color: white;
    /* max-width: 60vw; */
    padding-right: 5vw;
    padding-bottom: 4vh;
}

.infoss h1 {
    text-align: center;
    font-size: 3vw;
}

.inj-top h1 {
    font-size: 2vw;
}

.infoss a {
    background: white;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    color: white !important;
}

#f04c1 {
    background: url(../resources/images/night-photograph-gf6a42c2d1_1920.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:100vh;
    width:100vw;
}

#f04c1 {
    text-align: center;
}

#f04c1 a {
    color:white;
}