@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/eurostile.ttf');
}

body {
    margin: 0;
    background-color: #000;
}

div.row {
    position: relative;
    height: 100vh;
}

div.row:after {
    content: "";
    display: table;
    clear: both;
}

div.column {
    width: 50%;
    height: 100vh;
    overflow: hidden;
    float: left;
    position: relative;
}

div.cnc, div.largescale {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .5;
    transition: all .5s ease-in-out;
}

a:hover div.cnc, a:hover div.largescale {
    opacity: 1;
    transform: scale(1.1);
    cursor: pointer;
}

div.cnc {
    background-image: url('../img/cnc.jpg');
}

div.largescale {
    background-image: url('../img/largescale.jpg');
}

div.logo {
    width: 350px;
    height: 200px;
    background-image: url('../img/nrp_logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div.btn {
    color: #fff;
    font-family: 'Eurostile', sans-serif;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.7em;
    border: 2px solid #fff;
    padding: .3em .7em;
    opacity: 1;
    position: absolute;
    top: 80%;
    left: 50%;
    transition: all .3s ease-in-out;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

a:hover div.btn {
    background-color: #EA5F1F;
    border-color: #EA5F1F;
    letter-spacing: 3px;
    padding: .3em 1em;
}

/* ------ Mobile Styling ------ */

@media screen and (max-width: 899px) {
    div.column {
        width: 100%;
        height: 50vh;
    }

    div.logo {
        top: 50%;
    }

    div.btn {
        top: 50%;
    }
}