/* WEB DESIGN COPYRIGHT © JACK PUTTOCK, jackputtock.com 2018 - ALL RIGHTS RESERVED. */
/* COPYRIGHT © ARCTANE GROUP, arctanegroup.com 2018 - ALL RIGHTS RESERVED. */
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
  opacity: 1;
}

/* Preloader */
.preloader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0000CC !important;
  z-index: 9999999999999999999999999 !important;
  margin: 0 auto;
  overflow: hidden;
}

.loader {
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  top: 47.5vh;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  animation: loader-inner 2s infinite ease-in;
}

.loader-inner img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

@media only screen and (max-width: 900px) {
  .loader {
    top: 38vh;
  }
}
