*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  background-color: #070A13;
}

body::-webkit-scrollbar {
  padding-right: 4px;
  width: 22px;
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #538BDB;
  border: 6px solid #070A13;
}

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

svg,
img {
  display: block;
  width: 100%;
}

header {
  width: 100%;
  height: 112px;
  background: transparent;
  box-shadow: none;
  transition: 0.5s ease;
  border-bottom: 1px solid #ECEFF8;
  position: fixed;
  top: 0;
  z-index: 800;
}

/* Footer */
footer {
  background-color: #0A0E18;
  width: 100%;
  height: 400px;
}

h1 {
  color: #F2F2F2;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 100%;
}

h2 {
  color: #F2F2F2;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
}

h3 {
  color: #F2F2F2;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
}

h4 {
  color: #ECEFF8;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
}

h5 {
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(220.94deg, #151D2A 14.43%, #2E4381 85.28%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

p,
input,
textarea,
button {
  color: #C2C2C2;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 130%;
}

strong {
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 130%;
}

a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 130%;
  text-decoration: none;
  color: #F2F2F2;
  transition: 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}