/* FONTS */
@font-face {
    font-family: 'Acumin';
    src: url('../fonts/AcuminPro-Light.eot'); /* IE9 Compat Modes */
    src: url('../fonts/AcuminPro-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/AcuminPro-Light.woff') format('woff'), /* Modern Browsers */
         url('../fonts/AcuminPro-Light.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/AcuminPro-Light.svg#AcuminPro-Light') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Acumin';
    src: url('../fonts/AcuminPro-Semibold.eot'); /* IE9 Compat Modes */
    src: url('../fonts/AcuminPro-Semibold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/AcuminPro-Semibold.woff') format('woff'), /* Modern Browsers */
         url('../fonts/AcuminPro-Semibold.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/AcuminPro-Semibold.svg#AcuminPro-Semibold') format('svg'); /* Legacy iOS */
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

/* 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;
    outline: 0;
    line-height: normal;
    color: #fff;
    vertical-align: baseline;
    font-family: 'Acumin', Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* GENERAL */
body {
  height: auto;
  background: #000;
}

a:hover, button:hover {
  opacity: 0.9;
}

.mobile {
  display: none;
}
.desk {
  display: block;
}

header {
  width: 100%;
  float: left;
  height: 150px;
}
header h1{
  display: block;
  width: 123px;
  height: 86px;
  background: url(../imgs/logo.svg) no-repeat;
  background-size: 100%;
  text-indent: -5000px;
  position: absolute;
  top: 50px;
  left: 50px;
}

footer{
  width: calc(100% - 100px);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  padding: 0 50px 40px 50px;
  display: flex;
  align-items: flex-end;
}

footer address{
  width: calc(50%);
  float: left;
}
footer address .block-1,
footer address .block-2{
  float: left;
  width: 40%;
}
footer .link,
footer p{
  font-style: normal;
  text-decoration: none;
}
footer .social{
  width: calc(50%);
  float: left;
  text-align: right;
}
footer .social .fb,
footer .social .ig{
  display: inline-block;
  width: 22px;
  height: 22px;
  text-indent: 5000px;
  background: url(../imgs/fb.svg) no-repeat;
  background-size: 100%;
}
footer .social .ig{
  background: url(../imgs/ig.svg) no-repeat;
  background-size: 100%;
  margin-left: 10px;
}

.clearfix{
  clear: both;
}

/* PRELOADER */
#preloader {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#fff; /* change if the mask should have another color then white */
  z-index:99; /* makes sure it stays on top */
}
#status {
  width:200px;
  height:200px;
  position:absolute;
  left:50%; /* centers the loading animation horizontally one the screen */
  top:50%; /* centers the loading animation vertically one the screen */
  background-image:url(../imgs/status.gif); /* path to your loading animation */
  background-repeat:no-repeat;
  background-position:center;
  margin:-100px 0 0 -100px; /* is width and height divided by two */
}


/* MOBILE */
@media only screen and (max-width: 768px) {
  header h1{
    top: 50px;
    left: 30px;
  }
  footer{
    width: calc(100% - 60px);
    padding: 0 30px 40px 30px;
  }
  footer address .block-1,
  footer address .block-2{
    float: none;
    width: 100%;
  }
  footer address .block-1{
    margin-bottom: 15px;
  }
  footer address{
    width: calc(75%);
  }
  footer .social{
    width: calc(25%);
  }
}