.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.col {
  display: flex;
  flex-direction: column;
}

.prefix {
  flex-basis: 50%;
  align-items: flex-end;
  color: #2b3b4e;
}

.suffix {
  flex-basis: 50%;
  align-items: flex-start;
  font-weight: 400 !important;
}

.centered {
  justify-content: center;
  font-family: Montserrat-Alt1;
  font-size: max(30px, 2vw);
}

html {
  background-color: #e5e5e5;
  overflow-x: hidden;
}

.title {
  height: 180px;
  font-size: max(30px, 5vw);
  font-family: Montserrat-Alt1;
  font-weight: 100;
}

.title-muted {
  color: #445c72;
  opacity: 0.5;
}
.title-muted-more {
  color: #445c72;
  opacity: 0.1;
}

.invisible {
  opacity: 0;
}


.title-gradient {
  background: linear-gradient(to right,#131b2b, #445c72);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
