.page {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

.topSection {
  top: 0;
  display: flex;
  justify-content: center;
  position: sticky;
  background-color: white;
}

.spaceBtw {
  display: flex;
  justify-content: space-between;
}

.titleSection {
  display: flex;
  justify-content: center;
  color: #787878;
  margin-bottom: 1.25rem;
}

.main {
  display: grid;
  grid-template-rows: 1fr 141px 0px;
  margin: 0 auto;
  width: 100%;
  background-color: #f7f7f7;
}

.headerContent {
  flex: 1;
  max-width: 1024px;
  padding: 16px 48px 16px 48px;
  align-items: center;
  color: #2e4789;
}

.mainContainer {
  grid-column: 1/2;
  grid-row: 1/3;
  align-self: center;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.content {
  padding: 12px 48px;
  width: 100%;
}

.contentDecoration {
  grid-column: 1/2;
  grid-row: 2/-1;
  /* background-color: white; */
  height: 141px;
}

.footer {
  background-color: #fff;
  height: 120px;
  padding: 20px;
}
