@font-face {
    font-family: JBFuturaStd-Book;
    src: url(fonts/JBFuturaStd-Book.otf);
}

@font-face {
    font-family: JBFuturaStd-Heavy;
    src: url(fonts/JBFuturaStd-Heavy.otf);
}

@font-face {
    font-family: JBFuturaStd-Light;
    src: url(fonts/JBFuturaStd-Light.otf);
}

html {
    height: 100vh;
}

body {
    display: flex;
    margin: 0 auto;
    font-family: JBFuturaStd-Book;
    align-items: center;
    background-color: #ffffff;
    position: relative;
}

h1 {
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 5vw;
    margin: 0;
}

h2 {
    font-family: JBFuturaSTD-Light;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 2vw;
    margin: 1em 0 0 0;
}

p {
    font-size: 1vw;
}

#left_cont a {
    color: #ffffff;
    transition: all 350ms ease-in-out;
}

#left_cont a:hover {
    color: #38e4d8;
    transition: all 350ms ease-in-out;
}

#panel_cont {
    display: flex;
    /* height: 96vh;
    width: 97vw; */
    margin: 0 auto;
    height: 100%;
    width: 100%;
    box-shadow: 0px 0px 50px #111111;
}

#left_cont {
    width: 15%;
    background-color: #17161d;
    background-image: url(img/us-bg_bl.jpg);
    background-size: cover;
    text-align: center;
    background-position: bottom;
    padding: 0vw 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#left_cont img {
    width: 10vw;
    margin: 1.5vw 0;
}

#left_cont a img {
    width: 3vw;
    margin: 2vw;
}

#left_cont ul {
    color: #ffffff;
    list-style: none;
    padding: 0;
    font-size: 1.5vw;
    font-family: JBFuturaStd-Light;
    line-height: 3em;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0em 0;
}

#left_cont ul a {
    color: #ffffff;
    text-decoration: none;
}

#right_cont {
    width: 59vw;
    text-align: center;
    padding: 5vw 12.4vw;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    animation: fadein 2s;
}

/* #right_cont p {
    font-size: 1.2vw;
    line-height: 1.5em;
    margin: 2vw 0 0 0;
} */

#right_cont img {
    width: 100%;
    margin: 2vw 0;
    border-radius: 0.8em;
    box-shadow: 0vw 1vw 2vw 0vw #b9b9b9;
}

#right_cont img:nth-child(1) {
    animation: scalein 3s;
}

#right_cont img:nth-child(2) {
    box-shadow: none;
    width: 20vw;
    margin: 0;
}

#right_cont a img {
    width: 3vw;
    margin: 0;
}

#legal {
    font-size: 0.8vw;
}

#legal > p {
    font-size: 0.8vw;
    color: #ffffff;
}

.content-link {
    margin: 3vw 0 0 0;
    display: inline-block;
}

.content-link a {
    color: #efefef;
    font-family: JBFuturaStd-Light;
    font-size: 1vw;
    border: 0.3pt solid;
    padding: 1vw 1.5vw;
    border-radius: 0.4em;
    text-decoration: none;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background-color: #1c1c1c;
    transition: all 100ms ease-in-out;
}

.content-link a:hover {
    color: #1c1c1c;
    background-color: #ffffff;
    border: 1pt solid #c3c3c3;
    box-shadow: 0 10px 20px #c3c3c3;
    transition: all 350ms ease-in-out;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scalein {
    from { transform: scale(0.9); }
    to   { transform: scale(1); }
}

@media all and (max-width: 750px) {
    h1 {
        font-size: 10vw;
    }

    h2 {
        font-size: 5vw;
    }

    #panel_cont {
        width: 100vw;
        height: 100%;
    }
    #left_cont {
        width: 15%;
        /* overflow: auto; */
        justify-content: space-around;
    }

    #left_cont a img {
        width: 8vw;
    }

    #left_cont ul {
        line-height: 13em;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #left_cont li {
        transform: rotateZ(-90deg);
        margin: 0;
        font-size: 2em;
    }

    #right_cont {
        width: 70%;
        padding: 5vw 7.5vw;
    }

    #right_cont a img {
        width: 10vw;
    }

    #right_cont img:nth-child(2) {
        box-shadow: none;
        width: 40vw;
        margin: 0;
    }

    #right_cont p {
        font-size: 3vw;
    }

    #legal {
        transform: rotateZ(-90deg);
        font-size: 2vw;
    }

    .content-link {
        margin: 5vw 0 10vw 0;
    }

    .content-link a {
        font-size: 2.5vw;
        padding: 3vw 3.5vw;
        border-radius: 1.5vw;
    }
}