:root {
  --primary-bg-color: #0b0c21;
  --secondary-bg-color: #1f2038;
  --tertiary-bg-color: #555555;
  --quaternary-bg-color: #555555;
  --quinary-bg-color: #555555;

  --primary-text-color: #ffffff;
  --secondary-text-color: #fcc211;
  --tertiary-text-color: #727489;
  --quaternary-text-color: #13151b;
  --quinary-text-color: #555555;

  --primary-btn-color: #fcc211;
  --primary-btn-hover-color: #555555;

  --secondary-btn-color: #0b0c21;
  --secondary-btn-hover-color: #fcc211;

  --primary-text-hover-color: #fcc211;

  --primary-transition: 0.2s ease-in-out;
  --secondary-transition: 0.4s ease-in-out;
}

/* Roboto-Regular */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Roboto-Medium */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Roboto-Bold */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Roboto-Black */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Poppins-Black.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

fieldset,
img {
  border: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
  border: none;
}

input,
button,
textarea,
select {
  outline: none;
}

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

a,
input[type="submit"],
button,
a:before,
a:after,
button:before,
button:after,
a > *,
button > * {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--quaternary-bg-color) inset !important;
  -webkit-text-fill-color: var(--secondary-text-color) !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

section {
  scroll-margin-top: 90px;
}

p {
  margin-top: 20px;
}

h2 {
  font-weight: 900;
  font-size: 28px;
  line-height: normal;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}

p + h3 {
	margin-top: 20px;
}

h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}

h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

.max-w-613 {
  max-width: 613px;
}

.max-w-635 {
  max-width: 635px;
}

.max-w-650 {
  max-width: 635px;
}

.max-w-740 {
  max-width: 740px;
}

.max-w-780 {
  max-width: 780px;
}

.max-w-800 {
  max-width: 800px !important;
}

.max-w-820 {
  max-width: 820px;
}

.max-w-860 {
  max-width: 860px;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mr-8 {
  margin-right: 8px;
}

.ml-auto {
  margin-left: auto;
}

.p-16 {
  padding: 16px !important;
}

.relative {
  position: relative;
}

.relative > h2,
.relative > h3,
.relative > p {
  color: var(--primary-text-color);
}

.bold-16 {
  font-weight: 700;
  font-size: 16px;
}

.title-list {
  font-weight: 700;
  font-size: 16px;
}

.text-color-primary {
  color: var(--primary-text-color);
}

.container {
  padding: 0 8px;
  max-width: 1600px;
  margin: 0 auto;
}

.is-submitting {
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.background {
  display: block !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-img-block--border {
  border: 1px solid #7800ff;
}

.bg-img-block {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  /* overflow: hidden; */
  background: linear-gradient(139deg, #1f183c 11.67%, #14002a 51.42%, #350b64 90.42%);
}

.bg-img-block img {
  border-radius: 12px;
}

.bg-img-block-table {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #0cafbb;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(139deg, #1f183c 11.67%, #14002a 51.42%, #350b64 90.42%);
}

.bg-img-block--table {
  padding: 0px !important;
  border-radius: 12px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bg-img-block-table--right div.relative {
  margin-left: auto;
}

.bg-img-block--2 {
  padding: 0px;
}

.bg-img-block--table > .background > img {
  display: block;
  object-position: center;
}

.border-none {
  border: none !important;
}
