*, *:after, *:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#front-page, #front-page #fp-content #logo, #front-page #fp-content #quote, #front-page #fp-content #quote p {
  *zoom: 1;
}
#front-page:before, #front-page #fp-content #logo:before, #front-page #fp-content #quote:before, #front-page #fp-content #quote p:before, #front-page:after, #front-page #fp-content #logo:after, #front-page #fp-content #quote:after, #front-page #fp-content #quote p:after {
  content: " ";
  display: table;
}
#front-page:after, #front-page #fp-content #logo:after, #front-page #fp-content #quote:after, #front-page #fp-content #quote p:after {
  clear: both;
}
img {
  max-width: 100%;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  /* make things invisible upon start */
  -moz-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
body.home {
  overflow: hidden;
}
#front-page {
  width: -moz-calc(100vw - 50px);
  width: -webkit-calc(100vw - 50px);
  width: calc(100vw - 50px);
  height: -moz-calc(100vh - 50px);
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
  margin: 0px;
  padding: 0px;
  position: relative;
  background-position: center center;
  background-size: cover;
}
#front-page #header {
  float: right;
  clear: both;
  display: inline-block;
  padding: 25px;
  text-align: right;
}
#front-page #header #menu {
  margin: 0px 5px 0px 0px;
  padding: 0px;
  list-style-type: none;
  float: left;
}
@media (min-width: 1px) and (max-width: 767px) {
  #front-page #header #menu {
    display: none;
  }
}
#front-page #header #menu li {
  float: left;
  margin: 0px 2px;
}
#front-page #header #menu li a {
  display: inline-block;
  text-transform: lowercase;
  background: #1c1d1f;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}
#front-page #header #menu li a:hover {
  background: #fff;
  color: #1c1d1f;
}
#front-page #header #langs {
  float: right;
}
@media (min-width: 1px) and (max-width: 767px) {
  #front-page #header #langs {
    display: none;
  }
}
#front-page #header #langs li {
  float: left;
  margin: 0px 2px;
}
#front-page #header #langs li a {
  display: inline-block;
  text-transform: lowercase;
  background: #1c1d1f;
  border: 1px solid #1c1d1f;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}
#front-page #header #langs li a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #1c1d1f;
}
#front-page #header #langs li.current-lang a {
  background: #fff;
  border: 1px solid #fff;
  color: #1c1d1f;
}
#front-page #fp-content {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  #front-page #fp-content {
    width: 40%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #front-page #fp-content {
    width: 60%;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #front-page #fp-content {
    width: 80%;
  }
}
#front-page #fp-content #logo {
  text-align: center;
  margin: 0px 0px 10px 0px;
}
#front-page #fp-content #logo img {
  max-width: 290px;
}
@media (min-width: 992px) {
  #front-page #fp-content #logo img {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #front-page #fp-content #logo img {
    width: 70%;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #front-page #fp-content #logo img {
    width: 80%;
  }
}
#front-page #fp-content #quote {
  text-align: justify;
  color: #fff;
  font-size: 20px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
}
#front-page #fp-content #quote p {
  margin: 0px 0px 5px 0px;
  line-height: 26px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}
#front-page #fp-content #quote footer {
  text-align: right;
  font-style: italic;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
}
