* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body
{
    margin: 0;
    overflow-x: hidden;
    background-color: black;
}

/* ---------- Header ----------*/

#logo {
    position: fixed;
    z-index: 3;
    top: 50px;
    left: 10%;
}

#menu-icon
{
    position: fixed;
    z-index: 3;
    color: white;
    font-size: 15pt;
    cursor: pointer;
    top: 50px;
    right: 10%;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 4;
    top: 0;
    right: 0;
    background-color: black;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    margin-left: 50px;
}

/* ---------- Index ----------*/

#title-section {
    width: 100dvw;
    height: 100dvh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.scroll-icon-container {
    width: 100dvw;
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    animation-name: fade;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes fade {
    from {opacity: 1;}
    to {opacity: 0;}
}

.section-container {
    width: 100%;
    min-width: 300px;
    height: 100dvh;
    min-height: 800px;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.alignment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.alignment-with-image {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#about-section {
    background-image: url("../images/jpg/backgrounds/sea.jpg");
}

#technology-section {
    background-image: url("../images/jpg/backgrounds/sun_blackwater.jpg");
}

#factory-section {
    background-image: url("../images/jpg/factory/factory.jpeg");
}

#sales-section {
    background-image: url("../images/jpg/backgrounds/earth.jpg");
}

#patents-section {
    background-image: url("../images/jpg/backgrounds/forest_glass_ball.jpg");
}

#investors-section {
    background-image: url("../images/jpg/backgrounds/investors.jpg");
}

.text-container {
    width: 100%;
    max-height: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.textbox {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    opacity: 0;
    transition: 2s;
}

.textbox.show {
    opacity: 1;
}

.textbox-title-1 {
    margin: 0;
    font-size: 20pt;
}

.textbox-title-1-thin-format {
    font-weight: 100;
}

.textbox-title-2 {
    font-size: 12pt;
    color: aquamarine;
}

.textbox-paragraph {
    font-size: 10pt;
    line-height: 15pt;
    font-weight: 400;
}

.patent {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.24);
}

.button-container {
    width: 200px;
    height: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.button {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 40px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 30px;
    transition: all 1s;
}

.button:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.image-container {
    max-height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-90 {
    max-height: 90%;
    max-width: 90%;
}

.images {
    transform: translateX(-200px);
    opacity: 0;
    transition: 5000ms;
}

.images-fading {
    opacity: 0;
    transition: 5s;
}

.images-fading.show {
    opacity: 1;
}

.images.show {
    transform: translateX(0);
    opacity: 1;
}

.table-container {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.116);
}

table {
    width: 100%;
    text-align: center;
    font-size: 9px;
}

caption {
    padding: 10px;
}

.index-list > li {
    color: white;
    font-size: 10pt;
    line-height: 20px;
}

.logo {
    max-height: 100px;
}

/* ---------- Factory ----------*/

#factory-section {
    background-image: url("../images/jpg/factory/factory.jpeg");
}

.single-section-image {
    width: 100%;
}

.factory-h2, .factory-h3 {
    color: white;
}

.fadctory-ul {
    color: white;
}

.factory-ol {
    color: white;
}

.factory-ul > li {
    color: white;
}

.factory-ol > li {
    color: white;
}

.factory-p {
    color: white;
}

/* ---------- Fuels ----------*/

.caption-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.captions {
    padding: 50px;
    text-align: center;
    font-size: 30pt;
    color: white;
    opacity: 0;
    transition: 3s;
}

.captions.show {
    opacity: 1;
}

.table {
    width: 100%;
}

.table-row {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-evenly;
    background-color: rgb(31, 31, 31);
    border-radius: 10px;
}

.table-element {
    width: 25%;
}

.table-element > p {
    text-align: center;
    color: white;
    font-size: 14pt;
    font-weight: 600;
}

/* ---------- Reactors ----------*/

#mwe6-title
{
    color: white;
    font-size: 20pt;
}

.description-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    height: 1000px;
}

.base {
    position: absolute;
    z-index: 1;
    max-height: 90%;
    max-width: 90%;
}

.descriptions {
    position: absolute;
    z-index: 2;
    max-height: 90%;
    max-width: 90%;
    opacity: 0;
    transform: scale(0);
    transition: .5s;
}

.descriptions.show {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Propulsion ----------*/

.fixed-container {
    position: fixed;
    z-index: -1;
    width: 100%;
    min-width: 400px;
    height: 100vh;
    min-height: 1000px;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
}

.scroll-container {
    width: 100%;
    min-width: 400px;
    min-height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
}

/* ---------- Technology ----------*/

.list-container {
    padding-bottom: 100px;
    width: 100%;
    min-width: 400px;
    min-height: 1000px;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
}

.faq-title-container {
    margin-top: 250px;
    margin-bottom: 100px;
}

#faq-title {
    color: white;
}

.faq-container {
    width: 90%;
}

.collapsible {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: white;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: white;
    text-align: left;
    outline: none;
    font-size: 20pt;
}
  
.active {
    background-color: black;
}
  
.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
  
.active:after {
    content: "\2212";
}
  
.collapsible-content {
    padding: 0 50px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: white;
    background-color: black;
}

.collapsible-content > p {
    font-size: 15pt;
    line-height: 30pt;
    color: aquamarine;
}

li {
    font-size: 15pt;
    line-height: 30pt;
    color: aquamarine;
}

/* ---------- About ----------*/

.info-main-container
{
    width: 100%;
    background-color: black;
}

.info-header-image-container {
    width: 100%;
    height: 300px;
    background-image: url("../images/jpg/backgrounds/sea_and_sun.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-sub-container {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
}

.info-title-1 {
    margin-top: 100px;
    margin-bottom: 100px;
    color: white;
    font-size: 30pt;
}

.info-textbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 25px;
}

.info-title-2 {
    width: 100%;
    margin-right: 20px;
}

.info-title-2 > h2 {
    color: white;
}

.info {
    width: 100%;
}

.info > p {
    color: white;
}

.info-table-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.info-table {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    color: white;
}

.info-table-caption > p {
    text-align: center;
    color: white;
}

.info-table-row {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.info-table-head {
    width: calc(1% * 100 / 8);
    text-align: center;
}

.info-table-data {
    width: calc(1% * 100 / 8);
    text-align: center;
}

.info-image {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ---------- Footer ----------*/

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: white;
    background-color: black;
}

#navigation-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    padding: 50px;
}

#navigation-links > a {
    text-decoration: none;
    color: white;
    font-size: 15pt;
    margin: 10px;
}

#message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    font-size: 14pt;
    text-align: center;
}

#contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 14pt;
    text-align: center;
}

.mail-link {
    color: white;
}

#privacy-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#privacy-link {
    padding-left: 10px;
    color: white;
    text-decoration: none;
}

/* ---------- Breakpoints ----------*/

@media only screen and (min-width: 800px) {
    .textbox {
        width: 50%;
    }
}

@media only screen and (min-width: 1400px) {
    #logo {
        position: fixed;
        z-index: 3;
        top: 50px;
        left: 7%;
    }
    
    #menu-icon
    {
        position: fixed;
        z-index: 3;
        color: white;
        font-size: 15pt;
        cursor: pointer;
        top: 50px;
        right: 7%;
    }

    /* ---------- Index ----------*/

    .alignment {
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
    }

    .alignment-with-image {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .text-container {
        width: 50%;
        height: 100%;
        max-height: 100%;
    }

    .textbox {
        width: 95%;
        padding-left: 50px;
        padding-right: 50px;
        transform: translateY(200px);
        opacity: 0;
        transition: 1200ms;
    }

    .textbox.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .textbox-title-1 {
        margin: 0;
        font-size: 50pt;
    }
    
    .textbox-title-1-thin-format {
        font-weight: 100;
    }
    
    .textbox-title-2 {
        font-size: 20pt;
        color: aquamarine;
    }
    
    .textbox-paragraph {
        font-size: 15pt;
        line-height: 20pt;
        font-weight: 400;
    }

    .image-container {
        width: 50%;
        max-width: 50%;
        height: 100%;
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button-container {
        width: 100%;
        height: 60px;
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    
    .button {
        display: block;
        width: 100%;
        height: 50px;
        line-height: 40px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-style: solid;
        border-width: 2px;
        border-color: white;
        border-radius: 30px;
        transition: all 1s;
    }
    
    .button:hover {
        background-color: #ffffff;
        color: rgb(0, 0, 0);
    }

    table {
        font-size: 18px;
    }

    .index-list > li {
        color: white;
        font-size: 14pt;
        line-height: normal;
    }

    #powerplant-table {
        font-size: 10pt;
    }

    /* ---------- Factory ----------*/

    #factory-overview {
        padding: 100px;
    }
    
    .factory-h2, .factory-h3 {
        color: white;
    }
    
    .fadctory-ul {
        color: white;
    }
    
    .factory-ol {
        color: white;
    }
    
    .factory-p {
        color: white;
    }

    /* ---------- Reactors ----------*/

    .scroll-container {
        flex-direction: row;
        align-items: center;
    }

    /* ---------- About ----------*/

    .info-textbox {
        flex-direction: row;
    }

    .info-title-2 {
        width: 20%;
    }
    
    .info {
        width: 80%;
    }

    .info-table {
        flex-direction: column;
    }
    
    .info-table-caption > p {
        text-align: center;
    }
    
    .info-table-row {
        flex-direction: row;
    }    
}