html, body, #content {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

:root {
  font-family: Montserrat;
  font-size: 3rem;
  --color-primary: #283a54;
  --color-accent: #bbe3ff;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.even {
  justify-content: space-evenly;
}

.grow {
  flex: 1;
}

.bold {
  font-weight: 500;
}

.container {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
}

.main {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  height: 100%;
  width: 100%;
}

.cobrand-container {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.partner-logo-cobrand {
  width: 60%;
  height: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}

.partner-logo-cobrand img {
  max-height: 250px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}