@font-face {
  font-family: "gotham";
  src: url("/assets/fonts/Gotham-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "gotham";
  src: url("/assets/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "gotham";
  src: url("/assets/fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #008fd5;
  --secondary-color: #003c89;
  --background-color: #010307;
  --background-white-color: #ffffff;
  --background-gradient: linear-gradient(
    -83deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --green-color: #34a853;
  --red-color: #ea4335;
  -ms-grid-layer: #fbbc04;
  --text-color: #ffffff;
  --text-light-color: #c5c5c5;
  --text-dark-color: #333333;
  --border-radius-extra-small: 7px;
  --border-radius-small: 10px;
  --border-radius-medium: 20px;
  --border-radius-large: 30px;
  --border-radius-full: 100px;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 100vw;
  overflow-x: hidden;
}

body *::-webkit-scrollbar {
  display: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #000914;
}

.container {
  padding: 0px 150px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "gotham", sans-serif;
  font-style: normal;
}

.h1 {
  font-size: 64px;
  line-height: 64px;
  font-weight: 700;
}
.h2 {
  font-size: 48px;
  font-weight: 400;
}
.h3 {
  font-size: 40px;
  font-weight: 400;
}
.h4 {
  font-size: 24px;
  font-weight: 400;
}

a {
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.site-main {
  min-height: 300px;
}

@media (max-width: 1600px) {
  .container {
    padding: 0px 80px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0px 50px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0px 20px;
  }
}
