/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
/*:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}*/

:root {
  --color-default: #364d59;
  --color-primary: #0074c5;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
/*  border: 6px solid #fff;*/
/*  border-color: var(--color-primary) transparent var(--color-primary) transparent;*/
/*  border-radius: 50%;*/
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

.load {
  height: 100%;
  position: relative;
  margin: auto;
  width: 400px;
}
.load_gears {
  z-index: -2;
  width: 150px;
  height: 150px;
  position: relative;
  top: calc(50vh - 75px);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.gear {
  position: absolute;
  width: 80px;
  height: 80px;
  margin: auto;
/*  background: #198;*/
  background: #31ff7e;
  border-radius: 50%;
  animation-name: spin;
  animation-duration:6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: -5px;
  left: 0;
  right: 0;
}
.gear .center {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}

.bar {
  position: absolute;
  top: -10px;
  left: 28px;
  z-index: 1;
  width: 22px;
  height: 100px;
/*  background: #198;*/
  background: #31ff7e;
}
.bar:nth-child(2) {
  transform: rotate(45deg);
}
.bar:nth-child(3) {
  transform: rotate(90deg);
}
.bar:nth-child(4) {
  transform: rotate(135deg);
}

.gear-two {
  left: -90px;
  top: 68px;
  width: 55px;
  height: 55px;
/*  background: #f58bb6;*/
  background: #ff31f3;
  animation-name: spin-reverse;
}
.gear-two .bar {
/*  background: #f58bb6;*/
  background: #ff31f3;
  width: 14px;
  height: 70px;
  left: 20px;
  top: -8px;
}
.gear-two .center {
  width: 28px;
  height: 28px;
  left: 13px;
  top: 13px;
}
.gear-three {
  left: 90px;
  top: 68px;
  width: 55px;
  height: 55px;
/*  background: #576e81;*/
  background: #31b9ff;
  animation-name: spin-reverse;
}
.gear-three .bar {
/*  background: #576e81;*/
  background: #31b9ff;
  width: 14px;
  height: 70px;
  left: 20px;
  top: -8px;
}
.gear-three .center {
  width: 28px;
  height: 28px;
  left: 13px;
  top: 13px;
}

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

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

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/**Scroll Bar**/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


