/* =====================================================================================================================
	STYLES
===================================================================================================================== */
/* CSS Reset */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,
samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,
td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video
{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}

/* ---------------------------------------
	1.   Global
------------------------------------------ */
body {
	font-family: 'Lato', sans-serif;
    font-size: 17px;
    color: #FFFFFF;
    line-height: 135%;
    padding: 0;
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
div.container-fluid {
    padding: 0;
    margin: 0;
}
div.wrapper {
    height:100vh;
    background-color: #2c3e50;
    background-image: url('../img/icons.svg');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: center center;
    border: 20px solid #FFFFFF;
}

div .wrapper .branding {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
}
div .wrapper .branding img {
    max-width: 350px;
}
h1 {
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 80px;
}
/* ~~~~~~ sm-devices and down ~~~~~~~~~~~~~~~~~~~~~~ */
@media (max-width: 767px) {
    div .wrapper .branding img {
        max-width: 50%;
    }
}
