@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap");
#root {
  max-width: 1280px;
  margin: 0 auto;
  font-family: "Outfit", sans-serif !important;
  /* padding: 2rem; */
  /* text-align: center; */
}

/* *,
*::after,
*::before {
  border: 1px solid red !important;
} */
:root {
  line-height: 1.5;
  font-weight: 400;
  --primary-color: #440da7;
  --secondary-color: #2decff;
  --tertiary-color: #8245ea;
  font-family: Outfit;
  /* color-scheme: light dark; */
  /* color: rgba(255, 255, 255, 0.87); */
  /* background-color: #242424; */

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  font-family: "Outfit", sans-serif !important;
  font-weight: 400;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif !important;
}
a:hover {
  color: gray !important;
  transition: all 0.2s ease-in-out;
}
.link:hover {
  color: #2decff !important;
}
.btn-gradient {
  background: linear-gradient(#020202, #020202) padding-box,
    linear-gradient(60deg, #9f28dd, #72e4fc) border-box;
  color: white;
  border: 4px solid transparent;
  display: inline-block;
}
.btn-gradient-light {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(60deg, #440da7, #440da7) border-box;
  color: black;
  border: 4px solid transparent;
  display: inline-block;
}

.tab-pane {
  display: none;
}
.tab.active {
  color: white !important;
  opacity: 1 !important;
}
.tab-pane.active {
  display: block;
}

#news-slider {
  margin-top: 80px;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #9e9e9e4d;
  position: absolute;
  top: 30%;
  left: -75px;
  padding: 0 18px 0 15px;
  border-radius: 10px;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  background: #9e9e9e4d;
  position: absolute;
  top: 30%;
  right: -75px;
  padding: 0 15px 0 18px;
  border-radius: 10px;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
.owl-item {
  padding: 0 20px;
}
.owl-dots {
  text-align: center;
}

.owl-dots button.owl-dot {
  border: 1px solid gray;
  background: #d9d9d9 !important;
  opacity: 50%;
  border-radius: 50%;
  margin: 0 5px;
  height: 8px;
  width: 8px;
  position: relative;
}
.owl-dots button.owl-dot.active {
  opacity: 1;
  background-color: white;
}

#animate-blur {
  animation-timing-function: ease-out;
  animation: moveBall 10s linear infinite;
  animation-fill-mode: forwards;
}

@keyframes moveBall {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(300px, 0);
  }
  50% {
    transform: translate(300px, 300px);
  }
  75% {
    transform: translate(0, 300px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.owl-carousel .nav-btn {
  height: 47px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 50% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel .prev-slide {
  background: url(nav-icon.png) no-repeat scroll 0 0;
  left: -33px;
}
.owl-carousel .next-slide {
  background: url(nav-icon.png) no-repeat scroll -24px 0px;
  right: -33px;
}
.owl-carousel .prev-slide:hover {
  background-position: 0px -53px;
}
.owl-carousel .next-slide:hover {
  background-position: -24px -53px;
}
.owl-carousel .owl-stage-outer {
  overflow-x: hidden;
}
