@font-face {
  font-family: gilroy-light;
  src: url(../assets/fonts/Gilroy-Light.ttf);
}

@font-face {
  font-family: gilroy-regular;
  src: url(../assets/fonts/Gilroy-Regular.ttf);
}

@font-face {
  font-family: gilroy-medium;
  src: url(../assets/fonts/Gilroy-Medium.ttf);
}

@font-face {
  font-family: gilroy-semi;
  src: url(../assets/fonts/Gilroy-SemiBold.ttf);
}

@font-face {
  font-family: gilroy-bold;
  src: url(../assets/fonts/Gilroy-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden !important;
}

:root {
  --primary-color: #111a3b;
  --text-font: "Darker Grotesque", sans-serif;
  --heading-font: gilroy-semi;
  --font-regular: gilroy-regular;
  --font-medium: gilroy-medium;
  --font-bold: gilroy-bold;
  --font-semi: gilroy-semi;
}

body {
  background-color: var(--primary-color);
  color: #fff;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  font-family: var(--font-regular);
  color: #fff;
}

p {
  font-family: var(--text-font);
  line-height: 1.6;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
  color: #fff;
}

img {
  max-width: 100%;
}

section {
  padding-top: 4.6em;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
  font-family: var(--font-regular);
  color: #fff;
}

span {
  font-family: var(--font-regular);
  color: #fff;
}

.msrw {
  display: flex;
}

.msalign {
  align-items: center;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadContent h1 {
  font-size: 90px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-medium);
  width: fit-content;
  margin: auto;
}

.loadContent span {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  text-align: right;
  width: fit-content;
  border: 1px solid #fff;
  padding: 18px 35px;
  margin: auto;
  margin-top: 20px;
  border-radius: 40px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f170;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #111a3b;
}

.mobMenu {
  position: relative;
  border: 1px solid #ffffff3f;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
}

.mobMenu span {
  display: block;
  margin: 8px 0;
  width: 28px;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobMenu {
  display: none;
}

.mobMenu.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobMenu.open span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}


.site-main [data-aos=fade-down] {
  transform: translate3d(0,-16px,0);
}