/*Font Faces*/
  @font-face 
  {
    font-family: 'Heading';
    src: url('fonts/AcuminVariableConcept.ttf') format('truetype');
  }

  @font-face 
  {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }

    @font-face 
  {
    font-family: 'Mon';
    src: url('fonts/MontserratMedium.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 50;
  }
  *
  {
  box-sizing: border-box;
  }
  body
  {
  padding: 0px;
  margin: 0px;
  background-color: var(--white);
  }
/* Typography */
  h1 {
  font-size: var(--heading);
  font-family: 'Heading';
  line-height: 1.05;
  letter-spacing: 0.02em;
  }

  h2 {
  font-size: var(--sub_heading);
  font-family: 'Mon';
  line-height: 1.2;
  letter-spacing: 0.02em;
  }

  h3 {
  font-size: var(--smallheading_size);
  font-family: 'Mon';
  line-height: 1.3;
  letter-spacing: 0.12em;
  }


  h4 {
  font-size: var(--paragraph);
  font-family: 'Inter';
  line-height: 1;
  letter-spacing: 0.05em;
  }

  p,li {
  font-size: var(--paragraph);
  font-family: 'Inter';
  line-height: 1.7;
  letter-spacing: 0.01em;
  }

ul
{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
  p.small {
  font-size: var(--paragraphsmall);
  line-height: 1.6;
  letter-spacing: 0.02em;
  }

  span {
  font-size: var(--paragraphsmall);
  font-family: 'Inter';
  line-height: 1.6;
  letter-spacing: 0.02em;
  }

  button {
  width: fit-content;
  font-family: 'Mon';
  border: none;
  background-color: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1;
  cursor: pointer;
  letter-spacing: 0.12em;
  /*text-transform: uppercase;*/
  }


  a {
  text-decoration: none;
  font-size: var(--Links);
  font-family: 'Inter';
  cursor: pointer;
  letter-spacing: 0.12em;
  }
/*Other Basic Styling*/
  img
  {
    height: auto;
    width: auto;
  }

  body.no-scroll {
    overflow: hidden;
  }
/*scrollbar*/

    html {
        scrollbar-width: none;  /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
         scroll-behavior: smooth;
         scroll-snap-type: y mandatory;
    }

    html::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    body {
        overflow: auto; /* still allow scrolling */
    }