@charset "UTF-8";

@font-face {
    font-family: Lato-Light;
    src: url(../fonts/Lato-Light.eot);
    src: url(../fonts/Lato-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/Lato-Light.woff2) format("woff2"), url(../fonts/Lato-Light.woff) format("woff"), url(../fonts/Lato-Light.ttf) format("truetype"), url(../fonts/Lato-Light.svg#svgFontName) format("svg")
}

@font-face {
    font-family: Lato-Regular;
    src: url(../fonts/Lato-Regular.eot);
    src: url(../fonts/Lato-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Lato-Regular.woff2) format("woff2"), url(../fonts/Lato-Regular.woff) format("woff"), url(../fonts/Lato-Regular.ttf) format("truetype"), url(../fonts/Lato-Regular.svg#svgFontName) format("svg")
}

@font-face {
    font-family: Lato-Bold;
    src: url(../fonts/Lato-Bold.eot);
    src: url(../fonts/Lato-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/Lato-Bold.woff2) format("woff2"), url(../fonts/Lato-Bold.woff) format("woff"), url(../fonts/Lato-Bold.ttf) format("truetype"), url(../fonts/Lato-Bold.svg#svgFontName) format("svg")
}

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

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

/* ================================================== */
/* > BASE
/* ================================================== */

* {
    outline: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body,
html {
    overflow-x: hidden
}

html {
    font-size: 16px;
    background: #fff
}

body {
    font-size: 18px;
    color: #111;
    font-family: Lato-Regular, Lato-Light, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    position: relative;

    background: url("./../img/bg_d4y.jpg") center center / cover no-repeat;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 50px;
}

.container {
    width: 540px;
    max-width: 100%;
    background: white;
    padding: 2em;
}


/* ================================================== */
/* > BOX
/* ================================================== */
.site-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: center;
    justify-content: center
}

.text-align-center {
    text-align: center
}
.sm-margin {
    margin: 24px !important
}
.ms-margin {
    margin: 30px !important
}
/* ================================================== */
/* > BUTTONS
/* ================================================== */
.button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    font-family: Lato-Bold, Lato-Regular, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
    border: 2px solid #dc911b;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .35s ease;
    text-decoration: none;
}

.button:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #dc911b;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .35s ease
}

.button:hover,
.button__parent:hover .button {
    color: #dc911b
}
.button:hover:before,
.button__parent:hover .button:before {
    width: 0;
    left: 100%;
    transition: all .35s ease
}

/* ================================================== */
/* > RESPONSIVE
/* ================================================== */
@media screen and (max-width: 640px) {

    body {
        padding: 20px;
    }

    .site-header {
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    }
}