.wrapper {
  font-family: "Inter", sans-serif !important;
  height: 80vh;
}
@media screen and (max-width: 700px) {
  .wrapper {
    height: auto;
  }
}
.wrapper .users_divide {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: auto;
  padding: 48px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .wrapper .users_divide {
    gap: 24px;
  }
}
@media screen and (max-width: 700px) {
  .wrapper .users_divide {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.wrapper .users_divide a {
  text-decoration: none;
}
.wrapper .users_divide a .single_user {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.wrapper .users_divide a .single_user:hover {
  background: #f6f6f6;
}
.wrapper .users_divide a .single_user svg {
  width: 48px;
  height: 48px;
  color: #020817;
}
.wrapper .users_divide a .single_user h5 {
  font-size: 20px;
  font-weight: 600;
  color: #020817;
  text-transform: capitalize;
  margin: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.2s ease-out;
}
.preloader .loader {
  width: 50px;
  padding: 2px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2563eb;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}/*# sourceMappingURL=front.css.map */