/* Reset CSS */
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: "Raleway", sans-serif;
    background-color: #121013;
    height: 100%;
}

/* Header Styles */
header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    padding: 0.9rem 0;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    display: flex;
    list-style: none;
    align-items: center;
}

header ul a {
    text-decoration: none;
    color: #fff;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.83rem;
}

/* Main Styles */
main {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.parallax {
    pointer-events: none;
    transition: 0.45s cubic-bezier(.2, .49, .32, .99);
}

/* Logo Styles */
.logo_page_L1 {
    position: absolute;
    z-index: 1;
    width: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo_page_L2 {
    position: absolute;
    z-index: 2;
    width: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo_page_L3 {
    position: absolute;
    z-index: 3;
    width: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo_page_L4 {
    position: absolute;
    z-index: 4;
    width: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Background Image Styles */
.bgimg-2 {
    background-image: url('icons/server_room.png');
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Wide Text Styles */
.w3-wide {
    letter-spacing: 10px;
}

/* Hover Opacity Styles */
.w3-hover-opacity {
    cursor: pointer;
}

/* Text Styles */
.text {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-transform: uppercase;
}

.text_img {
    position: absolute;
    z-index: 5;
    top: 99%;
    left: 1%;
    transform: translate(-50%, -50%);
    text-align: left;
    text-transform: uppercase;
}

/* Media Queries for Smaller Screens */
@media (max-width: 1100px) {
    .text h1 {
        font-size: 5.8rem;
    }

    .text h2 {
        font-size: 4.7rem;
    }

    header nav {
        padding: 0 1rem;
    }

    header ul a {
        font-size: 0.73rem;
        padding: 0 0.9rem;
    }

    .logo_page_L1 {
        width: initial;
        height: 170%;
    }

    .logo_page_L2 {
        width: initial;
        height: 120%;
    }

    .logo_page_L3 {
        width: initial;
        height: 120%;
    }

    .logo_page_L4 {
        width: initial;
        height: 120%;
    }
}

@media (max-width: 725px) {
    .text h1 {
        font-size: 5rem;
        line-height: 1.1;
    }

    .text h2 {
        font-size: 4.1rem;
        line-height: 1.1;
    }

    header nav {
        padding: 0 1rem;
    }

    header ul a {
        font-size: 0.73rem;
        padding: 0 0.9rem;
    }

    .logo_page_L1 {
        width: initial;
        height: 140%;
    }

    .logo_page_L2 {
        width: initial;
        height: 100%;
    }

    .logo_page_L3 {
        width: initial;
        height: 100%;
    }

    .logo_page_L4 {
        width: initial;
        height: 100%;
    }
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1080px) {
    .bgimg-2 {
        background-attachment: scroll;
        min-height: 400px;
    }
}

/* Content Styles */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 160px;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-size: 35px;
    line-height: 40px;
    color: #ffffff;
}

.content__container {
    font-weight: 700;
    overflow: hidden;
    height: 45px;
    padding: 0 30px;
}

.content__container:before {
    content: '[';
    left: 0;
}

.content__container:after {
    content: ']';
    position: absolute;
    right: 0;
}

.content__container:after,
.content__container:before {
    position: absolute;
    top: 0;
    color: #16a085;
    font-size: 42px;
    line-height: 40px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.content__container__text {
    display: inline;
    float: left;
    margin: 0;
}

.content__container__list {
    margin-top: 0;
    padding-left: 110px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.content__container__list__item {
    line-height: 40px;
    margin: 0;
}

/* Keyframe Animations */
@-webkit-keyframes opacity {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

/* Additional Keyframe Animations for Other Browsers */
@-o-keyframes opacity {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-o-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

@-moz-keyframes opacity {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-moz-keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
    }
}

@keyframes opacity {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes change {
    0%, 12.66%, 100% {
        transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
        transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
        transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
        transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
        transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
        transform: translate3d(0, -25%, 0);
    }
}
