#home {
  background: url(images/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#about {
  background: url(images/bg1.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#portfolio {
  background: url(images/bg2.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#contact {
  background: url(images/bg3.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media screen and (-webkit-device-pixel-ratio:0) {
  #loadingBG {
    background: filter(url(images/loadingbg.jpg), blur(20px)) no-repeat center center fixed;
    -webkit-background-size: cover;
  }
}

#loadingBG {
  background: url(images/loadingbg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#loadingBG.complete {
  animation: sharpen 1s both;
}

@keyframes sharpen {
  from {
    background-image: filter(url(images/bg.jpg), blur(20px));
  }
  to {
    background-image: filter(url(images/bg.jpg), blur(0px));
  }
}

.page {
  min-height: 100vh;
  padding-top: 80px;
}

body {
  background:transparent;
  position: relative;
}

.navbar-default {
  background: rgba(255,255,255,0.8);
}

.jumbotron {
  background: rgba(255,255,255,0.8);
}

.section {
  clear: both
}

footer{
  background: rgba(255,255,255,0.8);
  text-align: center
}

/*
 * Flag Sprites
 */

.flag {
  width: 16px;
  height: 11px;
  background:url(images/flags.png) no-repeat
}

.flag.flag-es {
  background-position: -32px 0;
}

.flag.flag-nl {
  background-position: 0 -22px;
}

.flag.flag-dk {
  background-position: -16px 0;
}

.flag.flag-de {
  background-position: 0 0;
}

.flag.flag-gb {
  background-position: -16px -11px;
}

.flag.flag-fr {
  background-position: 0 -11px;
}

.flag.flag-it {
  background-position: -32px -11px;
}

.flag.flag-eo {
  background-position: -16px -22px;
}

.langList {
  opacity: 0;
}

.langList.show {
  animation: show 1s both;
}

.langList.remove {
  animation: remove 1s both;
}

#langIcons{
  opacity: 1;
}

#langIcons.show {
  animation: show 1s both;
}

#langIcons.remove {
  animation:remove 1s both;
}

.compsList {
  opacity: 0;
}

.compsList.show {
  animation: show 1s both;
}

.compsList.remove {
  animation: remove 1s both;
}

#compsExpand{
  opacity: 1;
}

#compsExpand.show {
  animation: show 1s both;
}

#compsExpand.remove {
  animation: remove 1s both;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remove {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}