html {
  overflow: hidden !important;
  scroll-behavior: smooth;
  height: 100vh;
}

html.no-scroll {
  overflow: hidden;
}

body {
  overflow: hidden !important;
  scroll-behavior: smooth;
  color: #fff !important;
  height: 100vh;
  cursor: url(../../images/aim.png) 30 30, auto;
}

body a {
  text-decoration: none;
}

body button:focus {
  outline: none;
}

body input:focus {
  outline: none;
}

body select:focus {
  outline: none;
}

body textarea:focus {
  outline: none;
}

body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body input[type="number"] {
  -moz-appearance: textfield;
}


#scroll-btn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 15px;
  z-index: 3;
  font-size: 18px;
  outline: none;
/*  background-color: #3a3983;*/
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 3px solid #3a3983;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#scroll-btn.active {
  -webkit-animation: fade 0.5s ease alternate;
          animation: fade 0.5s ease alternate;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#loader-load {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #c4c6c7;
}

#loader-load .loader-circle-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loader-load .loader-circle-holder div {
  margin-right: 10px;
}

#loader-load .loader-circle-holder div:last-child {
  margin-right: 0;
}

#loader-load .loader-circle-holder div:first-child {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

#loader-load .loader-circle-holder div:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#loader-load .loader-circle-holder div:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#loader-load .loader-circle-holder div:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#loader-load .loader-circle-holder div:last-child {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#loader-load .loader-circle-holder .circle {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #fff;
  -webkit-animation: test 1.5s infinite;
          animation: test 1.5s infinite;
}

@keyframes test {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes test {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

#loader-load .loader-logo img {
  height: 80px;
}

#loader-load .loader-logo {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 0;
  height: 5px;
  z-index: 2;
}
/*# sourceMappingURL=style.css.map */