:root {
  --white: #ffffff;
  --black: #000000;
  --greyLight: #aeadb8;
  --greyLight: #aeadb8;
  --greyDark: #5a586b;
  --purple: #6202fe;
  --violet: #8a09b8;
  --red: #ff001f;
  --orange: #ff560e;
  --hoverOrange: #ff621f;
}

html,
body {
  position: relative;
}

body {
  color: #ffffff;
  background-color: #000000;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'Roobert', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-feature-settings: 'liga', 'ss02';
  max-width: 1600px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Roobert', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

a.active {
  color: #aeadb8;
}

.footer_column a {
  color: #a3a1bb;
}

.copyright a {
  color: #a3a1bb;
}

a:hover {
  color: #ff621f;
}

button.global-button {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

button.global-button:hover {
  color: #ff621f;
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-padding: 0.4em 0;
  padding: 0.4em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #ffffff;
}

input:disabled {
  color: #cccccc;
}

button {
  color: #333333;
  background-color: #f4f4f4;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:disabled {
  color: #999999;
}

button:not(:disabled):active {
  background-color: #dddddd;
}

button:focus {
  border-color: #666666;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes from-left {
  0% {
    transform: rotateX(50deg) translateX(-50vw) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}

@keyframes from-right {
  0% {
    transform: rotateX(-50deg) translateX(50vw) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}

.contact-us-bg,
.platform-bg {
  --opacity: 0.7;
  background-image: radial-gradient(
      41.81% 41.81% at 65% 33%,
      rgba(89, 3, 127, var(--opacity)) 0%,
      rgba(89, 3, 127, 0) 77.08%
    ),
    radial-gradient(
      41.81% 41.81% at 31% 50%,
      rgba(255, 24, 27, var(--opacity)) 0%,
      rgba(89, 3, 127, 0) 77.08%
    ),
    radial-gradient(
      41.81% 41.81% at 57% 63%,
      rgba(193, 1, 120, var(--opacity)) 0%,
      rgba(89, 3, 127, 0) 77.08%
    );

  background-size: 2000px 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.platform-bg {
  background-size: 2000px 50%;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 100px #120f17 inset;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  z-index: 9999;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border: solid 2px rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
  border: solid 1px rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
