/* =========================
   Modern CSS Reset
   ========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Improve text rendering */
html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* overflow: hidden; */
}
/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html {
  scrollbar-width: none;
  background-color: #000;
}

/* For IE/Edge (older) */
body {
  -ms-overflow-style: none;
}
/* Remove list styles */

ul,
ol {
  list-style: none;
  padding: 0;
}

/* Reset links */
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a:hover, a:focus {
  outline: none;
}
/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Remove button styles */
button {
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.fw-500{
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.fw-600 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.opacity-60{
    opacity:0.6;
}

.pt-0{
  padding-top: 0 !important;
}
.text-transform-uppercase {
  text-transform: uppercase;
}
/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}