html, body {
  background-color: #222;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  html, body {
    -ms-overflow-x: hidden;
    overflow-x: hidden;
  }
}

.wrapper {
  overflow: hidden;
}

#main {
  min-height: 100vh;
  background-color: #141414;
  padding: 100px 0 0px;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #111;
  -webkit-transition: all 1000ms ease-out;
  -moz-transition: all 1000ms ease-out;
  -ms-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
}

body.loaded #loading {
  opacity: 0;
  visibility: hidden;
}


@media screen and (max-width: 1080px) {

  #main{padding:60px 0 10px;}


}