* {
  box-sizing: border-box;
}

@font-face {
  font-family: "GilroyHeavy";
  src: url("../fonts/Gilroy-Heavy.otf") format("opentype");
}

@font-face {
  font-family: "GilroyBold";
  src: url("../fonts/Gilroy-Bold.otf") format("opentype");
}

@font-face {
  font-family: "GilroyLight";
  src: url("../fonts/Gilroy-Light.otf") format("opentype");
}

@font-face {
  font-family: "MonumentBold";
  src: url("../fonts/MonumentExtended-Bold.otf") format("opentype");
}

@font-face {
  font-family: "MonumentLight";
  src: url("../fonts/MonumentExtended-Light.otf") format("opentype");
}

@font-face {
  font-family: "MonumentRegular";
  src: url("../fonts/MonumentExtended-Regular.otf") format("opentype");
}

@font-face {
  font-family: "MonumentUltraLight";
  src: url("../fonts/MonumentExtended-Ultralight.otf") format("opentype");
}

@font-face {
  font-family: "MonumentUltraBold";
  src: url("../fonts/MonumentExtended-Ultrabold.otf") format("opentype");
}

html, body{
  margin:0;
  padding:0;
  height:100%;
  width:100%;
}

/* aa70af */

body{
  background-color: #fefefe;
  font-family: MonumentUltraBold, sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

.fullpage{
  height:100%;
  width:100%;
  display: block;
}



.displaymiddle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%)
}

.homepage{
  width:400px;
}

.welcometxt{
  font-size: 12px;
  text-align: center;
  animation-delay: 2.75s;
  opacity: 0;
  color:#000;
  width:auto;
  letter-spacing: 3px;
}

.welcomepad{
  padding:15px;
  padding-bottom:12px;
}

.logo{
  width: 300px;
  height: auto;
  opacity:0;
}

.multides{
  font-family:GilroyLight;
  font-size: 25px;
  letter-spacing: 5px;
  animation-delay: 1s;
  opacity: 0;
}


.menus{
  text-align: center;
}

.item-1{
  animation-delay: 1.75s;
}
.item-2{
  animation-delay: 2s;
}
.item-3{
  animation-delay: 2.25s;
}

[class*="item-"]{
  opacity:0;
  text-align: center;
  padding:10px;
  margin:5px;
  padding-bottom:6px;
  text-decoration: none;
  color:#fff;
  background:#303030;
  display: inline-block;
  font-size: 20px;
  letter-spacing: 3px;
}

.transfast{
  transition: all 0.5s ease;
}
.transnormal{
  transition: all 1s ease;
}

/* ----------------- */
/* DISPLAY ON MOBILE */
/* ----------------- */

@media only screen and (max-width: 768px) {
  /*body{background-color: #ff99ff;}*/

  .logo{
    width: 200px;
    height: auto;
  }

  .hideonmobile{
    display:none;
  }

  [class*="item-"]{
    font-size: 17px;
  }
}

/* ------------------ */
/* DISPLAY ON DESKTOP */
/* ------------------ */

@media only screen and (min-width: 768px) {
  /* Float */
  .hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  .welcomepad{
    padding:10px;
    padding-bottom:4px;
  }

  .hideondesktop{
    display:none;
  }

}

/* ---------- */
/* ANIMATIONS */
/* ---------- */

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
    opacity:0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity:1;
  }
}

.slideInDown {
  animation-duration: 0.5s;
  animation-name: slideInDown;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }

  to{
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;

  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* ---------------- */
/* EXTRA ANIMATIONS */
/* ---------------- */

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity:1;
  }
}

.rubberBand {
  animation-name: rubberBand;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
