html {
    width: 100%;
    height: 100%;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

*:focus {
    outline: 0;
}

body {
    font-family: Helvetica, Arial, Sans-Serif;
    color: #777;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    font-size: 100%;
    text-rendering: optimizelegibility;
}

h1, h2, h3, h4, h5, h5, p, blockquote, ul, ol {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

th {
    text-align: left;
}

input[type=text], input[type=password], textarea {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none !important;
    overflow: hidden;
    color: #cc0000;    
}

    a:hover {
        text-decoration: none;
        color: #000;
    }

    a:active {
        text-decoration: none;
    }

    a img {
        border: none;
    }

    a, a:active, a:visted, a:hover, a:link, a:link:active, a:visited:active, a:focus, :focus {
        outline: none !important;
        outline: 0px !important;
        -webkit-appearance: none;
        border: none !important;
    }


*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    height: 100%;
}
















body {
    margin: 0;
    padding:0;
}








header {
    background-color: #0F5157;
    color: #fff;
    padding: 18px 15px 18px 15px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

    header img.logo {
        display: block;
        max-width: 100px;
        width: 100%;
    }





.nav-container {
    position: relative;
    display: flex;
    width: 100%;
}

.logo-holder {
    flex: 1;
}

.navbar {
    width: 75px;
    position: relative;
}

.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 3px;
    right: 0px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .nav-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #fff;
    }

    .nav-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .nav-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }






.navbar .menu-items {
    padding-top: 80px;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    transform: translate(100%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    text-align: left;
    position: fixed;
    background-color: #F7931E;
}

    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
        list-style: none;
        font-family: Courier New, Courier, monospace;
        margin-left: 30px;
    }

        .navbar .menu-items li a {
            color: #fff;
            font-weight: bold;
            letter-spacing: 1px;
            font-size: 26px;
        }










.nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo {
    display: none;
}







@media (min-width:991px) {

    header {
        padding: 24px 60px 20px 60px;
    }

        header img.logo {
            max-width: 110px;
        }


    .nav-container {
        width: 100%;
    }



    .navbar .menu-items {
        padding-top: 120px;
        width: 400px;
        margin-left: -40px;
        padding-left: 80px;
        border-left: 1px solid #0F5157;
    }
}




.container {
    width: 100%;    
    padding-left: 15px;    
    padding-right: 15px;
    
}


@media (min-width:991px) {
    .container {
        width: 80%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left:auto;
        margin-right:auto;        
    }
}



article.content {
        
}

    article.content h1 {
        font-weight: bold;
        color: #000;
        font-size: 32px;
        font-family: Courier New, Courier, monospace;
        padding-bottom: 1em;
    }



    article.content p {
        
        font-size: 18px;
        font-family: Courier New, Courier, monospace;
        padding-bottom:1em;
    }

    article.content li {
        font-size: 18px;
        font-family: Courier New, Courier, monospace;
        padding-bottom: 10px;
    }

    article.content ul li {
        list-style-type:square;
    }

        article.content ul, article.content ol {
            margin: 20px 30px 30px 50px;
            color: #0F5157;
        }


.large-logo {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}






.large-logo {
    width: 50%;
    max-width: 400px;
}

.page1 {
    padding: 60px 30px 0 30px;
    background-color: #000;
    color: #fff;
    font-family: Courier New, Courier, monospace;
}

    p.typing {
        text-shadow: 0px 0px 5px #ccf0ff;
        font-size: 32px;
        font-weight: bold;
        letter-spacing: 1px;
        color: #ccf0ff;
    }

        p.typing.large {
            font-size: 48px;
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
        }

        p.typing.green {
            color: #03A062;
            text-shadow: 0px 0px 5px #03A062;
        }

        p.typing.red {
            color: #ff0000;
            text-shadow: 0px 0px 5px #ff0000;
        }

        p.typing.white {
            color: #fff;
            text-shadow: 0px 0px 5px #fff;
        }

    p u {
        text-decoration: none;
    }

        p u.redact {
            background-color: #ccf0ff;
        }

    p.typing.white u.redact {
        background-color: #fff;
    }

    p.typing.green u.redact {
        background-color: #03A062;
    }

    p.typing.red u.redact {
        background-color: #ff0000;
    }

    @media (min-width:1200px) {
        p.typing {
            font-size: 54px;
        }

        .cursor {
            margin-left: -15px;
        }

        p.typing.large {
            top: 50%;
            font-size: 84px;
        }
    }


    @media (min-width:1400px) {
        p.typing {
            font-size: 64px;
        }

        .cursor {
            margin-left: -15px;
        }

        p.typing.large {
            top: 50%;
            font-size: 104px;
        }
    }

    input[type=text] {
        opacity: 0;
    }





























    .page1 {
        position: fixed;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient( 90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06) );
        background-size: 100% 4px, 30px 100%;
        z-index: 1;
        animation: flicker 100ms infinite;
    }

        .video-overlay:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255, 255, 255);
            background: radial-gradient( circle, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 1) 100% );
            z-index: 2;
            opacity: 0.5;
        }

.page1 .content {
    position: absolute;
    top: 90px;
    left: 15px;
    width: calc(100% - 30px);
    opacity: 0.9;
    height: calc(100% - 200px);
}

    @media (min-width:991px) {

        .page1 .content {
            position: absolute;
            top: 120px;
            left: 60px;
            width: calc(100% - 120px);
            opacity: 0.9;
        }
    }

    @keyframes flicker {
        0% {
            transform: translateY(1px);
        }

        100% {
            transform: translateY(0px);
        }
    }


    .page2 {
        margin-top: 100vh;
        float: left;
        width: 100%;
        min-height: 100vh;
        background-color: aliceblue;
        z-index: 1;
        position: relative;
        padding-top: 60px;
    }