/* Landing > Base styles */

:root {
  --content-width: 1206px;
  --content-extended-width: 1600px;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans";
  color: #111722;
}

h1, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--h-c-primary);
  line-height: 1.1;
}
h2 {
  margin-top: 0;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 100px;
  font-weight: 600;
}

h2 {
  font-size: 60px;
  font-weight: 600;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
}

nav {
  font-weight: bold;
}

nav ul {
  margin: 0;
  padding: 0;
}

/* Layout */

.text-black {
  color: black;
}

.button:hover {
  filter: brightness(1.27);
}

.light-gray-background{
  background: #D9D9D9;
}

.lighter-gray-background{
  background: #f2f2f2;
}

.dark-gray-background{
  background: #343434;
}

.light-blue-background{
  background: var(--light-blue-color);
}

.dark-background{
  background: var(--dark-color);
}

.gradiant-purple-text {
  color: #004EBD;
  background-image: -webkit-linear-gradient(295deg, #004EBD 0%, #E335BE 95%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.blue-color {
  color: var(--blue-color);
}

.dark-purple-color {
  color: var(--dark-purple-color);
}

ul{
  list-style: none;
}

ul li{
  position: relative;
}

ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  background: #B746C0;
  border-radius: 20px;
  position: absolute;
  bottom: 50%;
  left: -20px;
}

@media (max-width: 1206px) {
  .mobile-x-space {
    padding-left: 20px;
    padding-right: 20px;
  }
}
