@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0px !important;
}

/* Universal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    font-family: 'Oxygen', sans-serif;
}

/* Constants */
:root {
    --main-color: #0B1C51;
    --accent-color: #3498db;
    --secondary-color: #3e5bb6;
    --lg-color: #F2F2F2;
    --mg-color: #D9D9D9;
    --bg-color: #fff;
    --bg-color-dark-t: rgba(0, 0, 0, 0.5);
    --bg-color-dark: rgba(0, 0, 0, 1);
    --text-color: #404040;
    --text-color-dark: #404040;
    --text-color-light: #ffffff;
    --btn-t-color: #fff;
    --btn-bgcolor: #0B1C51;
    --hover: hsl(204, 70%, 53%);
    --skill-color: rgb(255, 255, 255);
    --volume-icon: #3A556E;
    --volume-icon-hover: #6596cb;
    --big-font: 3.2rem;
    --medium-font: 1.8rem;
    --small-font: 1.2rem;
    --p-font: 0.941rem;
}

body {
    background: var(--bg-color);
}

/*
 * HEADER
 */

#header {
    position: absolute;
    top: 0;
    height: auto;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
}

.logo {
    width: 20em;
    padding-left: 4em;
    margin: 2em 2em;
}

.nav {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.nav-link {
    color: var(--volume-icon);
}

.nav-link:hover {
    color: var(--volume-icon-hover);
}

/*
 * Cover
 */
/*.cover {*/
/*    position: absolute;*/
/*    top: 18em;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: auto;*/
/*    width: 100%;*/
/*    margin: auto;*/
/*    !*display: flex;*!*/
/*    !*align-items: center;*!*/
/*    z-index: 2;*/
/*    color: var(--text-color-light);*/
/*    background: var(--bg-color-dark-t);*/
/*}*/

/*.cover-inner {*/
/*    position: relative;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    padding: 5em;*/
/*}*/

/*.cover .btn-notify {*/
/*    padding: 10px 60px;*/
/*    font-weight: 500;*/
/*    text-transform: uppercase;*/
/*    border-radius: 40px;*/
/*}*/

/*.cover-heading {*/
/*    font-weight: 800;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 10px;*/
/*    font-size: 3em;*/
/*    margin-bottom: 1em;*/
/*}*/

/*.cover-copy {*/
/*    max-width: 40%;*/
/*    margin: 0 auto 3em;*/
/*}*/

/*.text-highlight {*/
/*    font-weight: bold;*/
/*    color: var(--accent-color);*/
/*    font-size: 1.5em;*/
/*}*/

/*.btn-notify:hover {*/
/*    background: var(--volume-icon-hover);*/
/*}*/

/*
 * Subscribe modal box
 */
#subscribeModal .modal-content {
    background-color: #303546;
    color: #fff;
    text-align: left;
}

#subscribeModal .modal-header, #subscribeModal .modal-footer {
    border: 0;
}

#subscribeModal .close {
    color: #fff;
}

#subscribeModal .form-control {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

#subscribeModal .form-control:focus {
    border-color: #49506a;
}

.btn-default:hover {
    background: var(--volume-icon-hover);
}

/*
 * CONTENT
 */

#content {
    padding-top: 50px;
    padding-bottom: 50px;
    position: fixed;
    top: 0px;
    /*bottom:0px;*/
    width: 100%;
    z-index: -1;
    background: var(--bg-color-dark);
}

video {
    position: fixed;
    z-index: -2;
    width: 100%;
    background: var(--bg-color-dark);
}

.inner-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: small;
    line-height: 1rem;
}

section {
    position: fixed;
    width: 100%;
    height: 100%;
}


section .sub-section {
    position: relative;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 1em 1em;
    top: 20%;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    min-height: 10em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-color-light);
    background: var(--bg-color-dark-t);
}

.logo {
    width: 15em;
    padding-left: 0;
    margin: 0;
}

#wrap {
    min-height: 100%;
    height: 100%;
    /* Negative indent footer by its height */
    margin: 0 auto -82px 0;
    /* Pad bottom by footer height */
    padding: 0 0 80px 0;
}


.cover {
    color: var(--text-color-light);
    background: var(--bg-color-dark-t);
}

.cover-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*padding: 5em;*/
}

.cover .btn-notify {
    padding: 10px 60px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 40px;
}

.cover-heading {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 2em;
    margin-bottom: 1em;
}

.cover-copy {
    max-width: 50%;
    margin: 0 auto 3em;
}

.text-highlight {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.5em;
}

.btn-notify:hover {
    background: var(--volume-icon-hover);
}

/*
 * FOOTER
 */

#footer {
    background: var(--bg-color);
    position: fixed;
    bottom: 0;
    height: auto;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--bg-color-dark-t);
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .logo {
        width: 10em;
    }
    .nav i {
        font-size: 1.5em;
    }
    section .sub-section {
        background: none;
        color: var(--text-color-dark);
        top: 30%;
    }
    .cover-heading {
        font-size: 1.3em;
    }

    .cover-copy {
        max-width: 90%;
        margin: 0 auto 1em;
    }

    .text-highlight {
        font-weight: bold;
        color: var(--accent-color);
        font-size: 1em;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .logo {
        width: 5em;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .logo {
        width: 10em;
    }
    .nav i {
        font-size: 1.5em;
    }
    section .sub-section {

        color: var(--text-color-light);
        top: 10%;
    }
    .cover-heading {
        font-size: 1.3em;
    }

    .cover-copy {
        max-width: 90%;
        margin: 0 auto 1em;
    }

    .text-highlight {
        font-weight: bold;
        color: var(--accent-color);
        font-size: 1em;
    }


}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    section .sub-section {
        color: var(--text-color-light);
        top: 25%;
    }
    .cover-heading {
        font-size: 2em;
    }

    .cover-copy {
        max-width: 50%;
        margin: 0 auto 2em;
    }

    .text-highlight {
        font-weight: bold;
        color: var(--accent-color);
        font-size: 1.5em;
    }

}
