@charset "UTF-8";

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{font-size:100%;font:inherit;padding:0;border:0;margin:0;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}.clear{clear:both}

@font-face {
    font-family:SimplonMono;
    font-weight:400;
    font-style:normal;
    src:url("fonts/SimplonMono-Regular-WebXL.woff2") format("woff2")
}

@font-face{
    font-family:SimplonMono;
    font-weight:600;
    font-style:normal;
    src:url("fonts/SimplonMono-Bold-WebXL.woff2") format("woff2")
}

@font-face{
    font-family:Garamond;
    font-style:normal;
    src:url("fonts/GaramondPremrPro-LtDisp.woff2") format("woff2")
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #fff;
    color: #000;
    font-size: 12px;
    line-height: 18px;
    font-family: 'SimplonMono', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:link, a:focus, a:visited {
    color: #000;
    text-decoration: none;
    -webkit-tap-highlight-color:transparent;
    cursor: pointer;
}

em, i {
    font-style: italic;
}

* {
    box-sizing: border-box;
    outline: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

::-moz-selection {
    background: none;
    color: #ff0000;
    background: transparent;
    text-shadow: none;
}

::selection {
    background: none;
    color: #ff0000;
    background: transparent;
    text-shadow: none;
}

.block {
    display: none;
}


@media (min-width: 1024px){

    section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        min-height: 100vh;
    }

    .text {
        position: relative;
        display: flex;
        align-items: center;
        width: 35%;
        padding: 0 30px;
    }

    .block.show {
        display: block;
        padding: 80px 0;
    }

    h1 {
        font-family: 'Garamond',sans-serif;
        font-size: 42px;
        line-height: 44px;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    a.cta {
        display: inline-block;
        text-transform: uppercase;
        font-size: 15px;
        line-height: 18px;
        margin: 25px 0 0 0;
        padding: 10px 30px;
        background: #000;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: 300;
    }

    .image {
        position: relative;
        width: 60%;
        height: 100vh;
        overflow: hidden;
    }

    .image.ver img {
        display: block;
        position: fixed;
        height: 100%;
        width: auto;
        right: 0;
    }

    .image.hor img {
        display: block;
        position: absolute;
        height: 100%;
        left: 0;
    }

    .logo {
        position: absolute;
        top: 30px;
        left: 30px;
    }

    .logo img {
        height: auto;
        width: 215px;
    }

    .copy {
        position: absolute;
        bottom: 30px;
        left: 30px;
    }

    .copy img {
        display: inline-block;
        width: 158px;
        margin-right: 10px;
    }
}

@media (max-width: 1023px){

    section {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
    }

    .text {
        width: 100%;
        order: 2;
        position: relative;
        padding: 10px;
    }

    .block.show {
        display: block;
        margin-top: 10px;
    }

    h1 {
        font-family: 'Garamond',sans-serif;
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    a.cta {
        display: inline-block;
        text-transform: uppercase;
        font-size: 15px;
        line-height: 18px;
        margin: 25px 0 0 0;
        padding: 5px 20px;
        background: #000;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: 300;
    }

    .image {
        order: 1;
        position: relative;
        width: 100%;
    }

    .image img {
        display: block;
        width: 100%;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .copy {
        margin-top: 50px;
        font-size: 11px;
    }

    .copy img {
        display: inline-block;
        width: 130px;
        margin-right: 10px;
    }
}