/**********************************/
/* Project   :  Avora Craft v.1 */
/* Creation  :  Mar, 2026 */
/* Preparing :  Ismail FIDAN */
/* Company   :  TEK FIKIR */
/* Web Site  :  www.tekfikir.com */
/* E-Mail    :  info@tekfikir.com */
/**********************************/
body {
  margin: 0 auto;
  height: 100vh;
  width: 100%;
  /*display: flex;
	justify-content: center;
	align-items: center;*/
  background: #f4f4f4 url("../images/body-bg.jpg") no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 50px;
}
.logo img {
  width: auto;
  max-width: 80%;
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/*************************************/
/***** Screen Max. Width = 767px *****/
/*************************************/
/*************************************/
/***** Screen Max. Width = 480px *****/
/*************************************/
@media screen and (max-width: 480px) {
  .col-xxs-12 {
    width: 100%;
  }
}
.soon {
  animation: tada  3s infinite;
  font: normal 18px/1 'Google Sans', sans-serif;
  color: #777;
  position: fixed;
  bottom: 20px;
  left: 5%;
  right: 0;
  overflow: hidden;
  width: 90%;
  text-align: center;
}
/*# sourceMappingURL=custom.css.map */