/*
 * Type scale tokens (rem) — keep in sync with src/index.css :root.
 * Defined here so rules in this file resolve before the JS bundle loads.
 */
:root {
  --font-size-xs: 0.9rem;
  --font-size-xs-2: 0.8rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.15rem;
  --font-size-md-2: 1.125rem;
  --font-size-md-3: 1.25rem;
  --font-size-lg: 1.3rem;
  --font-size-lg-2: 1.3125rem;
  --font-size-lg-3: 1.375rem;
  --font-size-xl: 1.6rem;
  --font-size-xl-2: 1.625rem;
  --font-size-xl-name: 1.75rem;
  --font-size-xl-4: 1.5rem;
  --font-size-xl-3: 1.875rem;
  --font-size-1xl: 2rem;
  --font-size-xl-1: 2.25rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3rem;
}

/*---------------------------------------------------------------------
                        Mouse cursor
-----------------------------------------------------------------------*/
/* html, body {
    margin: 0;
    height: 100%;
  } */

.theBall,
.theBall-outer {
  width: 20px;
  height: 20px;
}
top-title .theBall-outer {
  position: fixed;
  top: -20px;
  left: -20px;
  z-index: 9999999999999999999;
  pointer-events: none !important;
}
.theBall {
  position: absolute;
  background-color: rgba(255, 114, 114, 0.8);
  border-radius: 50%;
  -webkit-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center center;
}
.zooming.theBall {
  background-color: #ff7272;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

/*---------------------------------------------------------------------
                          Mouse Effect
  -----------------------------------------------------------------------*/
.mouse-move {
  position: absolute;
  bottom: -130px;
  left: 50%;
  width: 65px;
  margin-left: -50px;
}
.mouse-move a {
  letter-spacing: 2px;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  border-radius: 900px;
  text-align: center;
}
.mouse-move .boom::before,
.mouse-move .boom::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mouse-move .boom::before,
.mouse-move .boom::after {
  content: '';
  z-index: -1;
  margin: 0;
  border-radius: 900px;
  box-shadow: inset 0 0 0 2px;
  animation: clipMe 8s linear infinite;
}
.mouse-move .boom::before {
  animation-delay: -4s;
}
@keyframes clipMe {
  0%,
  100% {
    clip: rect(0px, 220px, 2px, 0px);
  }
  25% {
    clip: rect(0px, 2px, 220px, 0px);
  }
  50% {
    clip: rect(218px, 220px, 220px, 0px);
  }
  75% {
    clip: rect(0px, 220px, 220px, 218px);
  }
}

#page {
  position: relative;
  height: inherit;
}

.banner_canvas {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* height: 100%;
    width: 100%; */
  z-index: 9;
  opacity: 0.5;
}

.top-title {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

.cf-turnstile {
  position: fixed;
  top: 800px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-60 {
  margin-left: 60px;
}
