@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400..700&display=swap');


@font-face {
    font-family: 'Tina Text Font'; /* Name the font */
    src: url('../fonts/TinaTextFont-Regular.ttf') format('truetype'); /* Path to the font file */
    font-weight: normal; /* You can specify normal, bold, etc. */
    font-style: normal; /* You can specify normal, italic, etc. */
}
@font-face {
    font-family: 'Tina Title Font'; /* Name the font */
    src: url('../fonts/TitleRegular-Regular.ttf') format('truetype'); /* Path to the font file */
    font-weight: normal; /* You can specify normal, bold, etc. */
    font-style: normal; /* You can specify normal, italic, etc. */
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Markazi Text', 'Rubik', 'Tina Text Font', Helvetica, Arial;
    cursor: none;
    color: #2c2824;
  }

body {
  background-color: rgb(247, 244, 240);

}

canvas {
  position: fixed; /* Ensure it stays in the same position */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  z-index: -1; /* Push it to the background */
  pointer-events: none; /* Prevent the canvas from intercepting mouse events */
}

.dot {
  color: white;
}


.cursor {
    background-image: url('../images/mouse/default-mouse.png');
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: fill;
    position: fixed;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%); */
    z-index: 9999;
    pointer-events: none;
}

.find-the-cure {
  position: fixed; /* Pin to the top right */
  top: 1rem; /* Distance from the top */
  right: 1rem; /* Distance from the right */
  display: flex; /* Align text and image inline */
  align-items: center; /* Vertically center align */
  text-decoration: none; /* Remove underline from link */
}

.find-the-cure img {
  width: 2rem; /* Set the image height */
  height: 2rem;
  margin-left: 0.5rem; /* Space between text and image */
}


.loading-screen {
  cursor: default;
}


/* CONTENT SECTION */
#main {
  width: auto;
  min-height: 100vh;
  overflow: hidden !important;
  -ms-overflow-style: none;  /* for Internet Explorer */
  scrollbar-width: none;  /* for Firefox */
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.element::-webkit-scrollbar {
  display: none;
}



/* locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden; }

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.has-scroll-smooth body {
  overflow: hidden; }

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh; }

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap; }

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%; }

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; }
  .c-scrollbar:hover {
    transform: scaleX(1.45); }
  .c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1; }
  [data-scroll-direction="horizontal"] .c-scrollbar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 0;
    transform: scaleY(1); }
    [data-scroll-direction="horizontal"] .c-scrollbar:hover {
      transform: scaleY(1.3); }

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab; }
  .has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing; }
  [data-scroll-direction="horizontal"] .c-scrollbar_thumb {
    right: auto;
    bottom: 0; }