@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext');
@import url("font-awesome.min.css");

/* Reset */
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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

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;
}

body {
    -webkit-text-size-adjust: none;
}


/* Box Model */
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Main */
body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15pt;
    letter-spacing: -0.025em;
    line-height: 1.75em;
    background: #111;
    overflow: hidden;
}

a {
    color: #eee;
    outline: 0;
    text-decoration: none;
    border: 1px solid dashed #eee;
}

a:hover {
    border-color: transparent;
}

/* Icons */
.icon {
    text-decoration: none;
    position: relative;
}

.icon:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

.icon > .label {
    display: none;
}

/* Container */
#container {
    height: 100%;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
}

#container:before {
    content: '';
    display: inline-block;
    height: 100%;
    margin-right: 0;
    vertical-align: middle;
}

/* Header */
#header {
    cursor: default;
    display: inline-block;
    position: relative;
    text-align: center;
    top: -1em;
    vertical-align: middle;
    width: 90%;
}

#header h1 {
    font-size: 3em;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1em;
    letter-spacing: 1px;
    color: #05C7C4;
}

#header nav {
    margin: 1.5em 0 0 0;
}

#header nav li {
    display: inline-block;
    height: 5.35em;
    line-height: 5.885em;
    position: relative;
    top: 0;
    width: 5.35em;
}

#header nav a {
    border: 0;
    display: inline-block;
    transition: transform 0.6 ease;
}

#header nav a:before {
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 100%;
    border: solid 1px #fff;
    display: block;
    font-size: 1.75em;
    height: 2.5em;
    line-height: 2.5em;
    position: relative;
    text-align: center;
    top: 0;
    width: 2.5em;
}

#header nav a:hover:before {
    color: #fff;
    transform: rotate(360deg);
    /*background: rgba(255, 255, 255, 0.9);*/
    background: #fff;
    color: red;
}

#header nav a.facebook:hover:before {
    color: #3b5998;
}
#header nav a.twitter:hover:before {
    color: #0084b4;
}
#header nav a.website:hover:before {
    color: #55efc4;
}
#header nav a.mail:hover:before {
    color: #fdcb6e;
}

#header nav a:active {
    font-size: 0.95em;
    background: none;
}

#header nav a:active:before {
    color: #fff;
}

#header nav a span {
    display: none;
}

/* Footer */
#footer {
    bottom: 0;
    cursor: default;
    height: 6em;
    left: 0;
    line-height: 8em;
    position: absolute;
    text-align: center;
    width: 100%;
}

/* Wide */
@media screen and (max-width: 1680px) {
    body {
        font-size: 13pt;
    }
}

/* Normal */
@media screen and (max-width: 1280px) {
    body {
        font-size: 12pt;
    }
}

/* Mobile */
@media screen and (max-width: 736px) {
    body {
        font-size: 11pt;
    }
    #header h1 {
        font-size: 2.5em;
    }
    #header nav {
        font-size: 1em;
    }
    #header nav a:hover {
        font-size: 1em;
    }
    #header nav a:active {
        font-size: 1em;
    }
}

/* Mobile (Portrait) */
@media screen and (max-width: 480px) {
    #header nav {
        padding: 0 1em;
    }
}