* {
  outline: 0;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  background-image: url("../../../images/background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

a {
  text-decoration: none !important;
}

a:hover {
  font-weight: 900;
}

li {
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
  margin: auto;
  padding: 0.5rem;
}

.container {
  margin: auto;
  width: 90%;
  padding: 1em;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.column-x {
  float: left;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

/* Clear floats after the columns */
.row {
  margin: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: table;
  clear: both;
}

.auto-margin {
  margin: 1em;
}

.text-red {
  color: #ab313c;
}

.text-white {
  color: #fff;
}

.text-small {
  font-size: smaller;
}

.footer,
.header {
  background: #b33540;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3.5em;
}

.text-center {
  text-align: center;
}

.float-left {
  text-align: end;
  align-items: end;
  float: left;
}

.float-right {
  text-align: start;
  align-items: flex-start;
  float: right;
}

.wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}

.wrapper-2 {
  margin: auto;
  display: grid !important;
  grid-template-columns: 12em 12em;
  padding: 1em;
}

.wrapper-3-2 {
  display: grid !important;
  grid-template-columns: 3fr 2fr;
}

.wrapper-3 {
  display: grid !important;
  grid-template-columns: 3rem 3rem 3rem;
}

.items-center {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1em;
}

.fs-12 {
  font-size: 12px;
}

.vertical-center {
  margin: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logo-footer {
  width: 120px;
  height: 35px;
}

footer {
  margin-top: auto;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 767px) {
  .column {
    width: 100%;
  }

  .pb-5 {
    padding-bottom: 1.5em;
  }

  .container {
    margin: auto;
    width: 100%;
    padding: 1em;
  }
}
