/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#000;
    color:#fff;
    overflow:hidden;
}

/* NAVBAR */

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    height:78px;

    background:rgba(20,20,20,.92);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 70px;

    z-index:999;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.logo::after {
    content: "\2122";
    font-size: 10px;
    font-family: Arial, sans-serif;
    color: #fff;
    position: absolute;
    top: -2px;
    right: -10px;
    font-weight: bold;
}

.navbar nav{

    display:flex;
    align-items:center;
}

.navbar nav a{

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:500;

    margin:0 28px;

    text-transform:uppercase;
}

.navbar nav span{

    color:#666;
    font-size:16px;
}

/* HERO */

.hero{

    height:100vh;

    background:url('../images/hero.jpeg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    padding-top:70px;

    position:relative;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);
}

/* CARD */

.glass{
    position:relative;

    z-index:2;

    width:650px;

    min-height:450px;

    margin-left:200px;

    padding:50px;

    background:rgba(35,0,0,.35);

    border-left:4px solid #d61d2a;

    overflow:visible;
}
.glass::after{
    content:"";

    position:absolute;

    top:0;
    right:-200px;

    width:200px;
    height:100%;

    background:linear-gradient(
        to right,
        rgba(35,0,0,.35) 0%,
        rgba(35,0,0,.20) 40%,
        rgba(35,0,0,.08) 70%,
        rgba(35,0,0,0) 100%
    );

    pointer-events:none;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-logo-wrapper::after {
    content: "\2122";
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #fff;
    position: absolute;
    top: -5px;
    right: -18px;
    font-weight: bold;
}

.hero-logo {
    width: 360px;
    display: block;
}

/* TITLE */

.glass h1{

    font-size:18px;

    font-weight:400;

    line-height:1.8;

    margin-bottom:12px;
}

/* CONTACT */

.glass p{

    font-size:14px;

    color:#fff;

    margin-top:10px;
}

/* BUTTON */

.btn{

    display:inline-block;

    margin-top:40px;

    background:#fff;

    color:#111;

    text-decoration:none;

    padding:14px 22px;

    font-size:14px;

    font-weight:500;
}

.btn:hover{

    background:#ececec;
}

/* FOOTER */

footer{

    position:fixed;

    bottom:12px;

    left:0;

    width:100%;

    text-align:center;

    z-index:5;

    background:transparent;
}

footer p{

    font-size:12px;

    margin:4px 0;
}

/* INNER PAGES */

.page{

    padding:120px 60px;
}


/* MOBILE */

@media(max-width:900px){

    body{
        overflow:auto;
    }

    .navbar{

        flex-direction:column;

        height:auto;

        padding:15px;
    }

    .navbar nav{

        margin-top:15px;

        flex-wrap:wrap;

        justify-content:center;
    }

    .navbar nav a{
        font-size:12px;
        margin:0 8px;
    }
    .navbar nav span{
        display:none;
    }
    .glass{
        width:90%;
        max-width:350px;

        margin:0 auto;

        padding:25px;

        min-height:auto;
    }

    .hero{

        justify-content:center;
    }

    .hero-logo{
        width:220px;
    }

    .hero-logo-wrapper::after {
        font-size: 12px;
        right: -13px;
        top: -3px;
    }
    footer{
        position:relative;
        margin-top:20px;
        padding-bottom:25px;
    }
}