*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Questrial';
  src: url('../../fonts/Questrial-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  }

  @font-face {
  font-family: 'alrono';
  src: url('../../fonts/alrono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  }

  @font-face {
  font-family: 'BEBAS';
  src: url('../../fonts/BEBAS_.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  }

  @font-face {
  font-family: 'bebas_regular';
  src: url('../../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  }

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: Questrial, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================
   OFFSET HEADER FIXED
========================= */

main {
  padding-top: 70px;
}

/* =========================
   DESACTIVAR CURSOR EN MOBILE
========================= */

@media (max-width: 1024px) {
  .custom-cursor,
  .cursor,
  .cursor-dot,
  .cursor-outline {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body {
    cursor: auto !important;
  }
}