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

html {
  /* font-size: 10px; */
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  font-size: 1.4rem;
  color: #020759;
  overflow-x: hidden;
}

.section {
  padding-bottom: 9.6rem;
}

.container {
  max-width: 124rem;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 4.8rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 4.8rem;
}

.card {
  padding: 1.8rem 1.2rem;
  border-radius: 7px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.25);
}

.card-text {
  font-size: 1.4rem;
  line-height: 1.4;
}

.card-list {
  list-style: none;
}

.card-list-item {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.table {
  width: 100%;
  border: none;
}

.table td {
  font-size: 1.4rem;
  padding: 1rem 0.5rem;
}

.side-by-side {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.column {
  position: relative;
}

.heading-primary {
  font-size: 4.8rem;
  line-height: 1.4;
  margin-bottom: 4rem;
}

.heading-secondary {
  padding-top: 0;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3.2rem;
}

.heading-tertiary {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
}

.heading-tertiary {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
}

.heading-quaternary {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
}

.centered {
  display: flex;
  justify-content: center;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

section {
  padding: 2.4rem 1.2rem;
}