body {
    background-color: #990000;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 60px;
    color: rgb(255, 255, 255);
    word-wrap: break-word;
    opacity: 0;

    -webkit-transition: all 1s linear 0.5s;
    -moz-transition: all 1s linear 0.5s;
    -o-transition: all 1s linear 0.5s;
    transition: all 1s linear 0.5s;
}



h1.main.active, h2.sub.active {
    opacity: 1;
}

h2.sub {
    font-size: 36px;
}

a, a:link, a:active, a:visited, a:hover {
    color: #fff;
    text-decoration: none;
}

.text-bold {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 426px){
    .text-bold {
        font-size: 28px;
    }
}

.logo {
    width: 100%;
    max-width: 200px;
    opacity: 1;
}

.logo.active {
    opacity: 0.7;
    
    -webkit-transition: all 1s linear 0.3s;
    -moz-transition: all 1s linear 0.3s;
    -o-transition: all 1s linear 0.3s;
    transition: all 1s linear 0.3s;
}

.row-logo {
    margin-top: 50px;
}


.row-footer {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);

    bottom: 150px;
    color: #fff;
    font-size: 12px;
}


.container-fluid.content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.popup {
    border: 1px solid rgb(61, 61, 61);
    background-color: rgb(255, 255, 255);
    font-size: 14px;
    color: rgb(56, 56, 56);
    position: absolute;
    width: 280px;
    height: 200px;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);

    -webkit-transition: all 1s linear 1s;
    -moz-transition: all 1s linear 1s;
    -o-transition: all 1s linear 1s;
    transition: all 1s linear 1s;

    z-index: 100;
}

.popup.active {
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    bottom: 50%;
    box-shadow: 5px 5px 25px rgb(15, 15, 15);
    opacity: 1;
}

.popup.deactive {
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    bottom: 50%;
    box-shadow: 5px 5px 50px rgb(15, 15, 15);
    opacity: 0;

    -webkit-transition: all 1s linear 0.3s;
    -moz-transition: all 1s linear 0.3s;
    -o-transition: all 1s linear 0.3s;
    transition: all 1s linear 0.3s;
}

.popup .container-fluid {
    padding: 25px;
}

.btn-close {
    margin-top: 40px;
}

@media (min-width: 375px){
    .row-footer {
        bottom: 100px;
    }
}

@media (min-width: 576px){
    h1, h2, h3, h4{
        font-size: 80px;
    }

    .logo{
        max-width: 250px;
    }
}

@media (min-width: 768px) {
    h1, h2, h3, h4{
        font-size: 100px;
    }

    .popup {
        width: 500px;
        height: 250px;
        font-size: 20px;
        line-height: 30px;
    }

    .btn-close {
        margin-top: 80px;
    }

    .logo {
        max-width: 350px;
    }

    .row-logo {
        margin-top: 80px;
    }

    .row-footer {
        font-size: 14px;
        bottom: 70px;
    }
}


@media (min-width: 992px){
    .logo {
        max-width: 450px;
    }

    .row-logo {
        margin-top: 40px;
    }

}

@media (min-width: 1200px){
    .logo {
        max-width: 600px;
    }

    .row-footer {
        font-size: 16px;
    }
}

@media (min-width: 1200px){
    .logo {
        max-width: 400px;
    }

    .row-footer {
        font-size: 16px;
    }
}

@media (min-width: 2560px){
    .logo {
        max-width: 800px;
    }

    .row-logo {
        margin-top: 100px;
    }

    .row-footer {
        font-size: 20px;
    }
}