@charset "utf-8";
/* CSS Document */
body { background: #fbfbfb;}
.header-logo { text-align: center;}
.header-logo a { width: 100%; display: block;}
.menu { color: #000 !important; background-color: rgb(224, 224, 224);
box-shadow: rgba(0, 0, 0, 0.3) 0.666667px 1.33333px 2.735px 0px; width: 150px;  text-decoration: none; display: block; text-align: center; padding: 10px; margin: 0px auto; margin-top: 50px; font-weight: 700;}
.menu-pdf { text-align: center; margin-bottom: 20px;}
footer { width: 100%; position: absolute; bottom: 0px;}
footer p { text-align: center; width: 100%;}

/* PRELOADER CSS */
.page-loader {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: #272727;
  z-index: 1000;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 40%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}
/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@media only screen and (max-width: 600px) {

	.header-logo img { }
}