/* fill the entire width of the page */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial;
}

.center-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner {
  /* width: 100%; */
  height: 250px;
  background-size: cover;
  background-image: linear-gradient(
      rgba(0, 0, 0, var(--darkness, 0.5)),
      rgba(0, 0, 0, var(--darkness, 0.5))
    ),
    var(--image);
  background-position: var(--position);
  color: #ffffff;
  font-family: inherit;
}

.banner-title {
  font-weight: normal;
  font-size: 75px;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (max-width: 500px) {
  /* This is for thin displays */
  /* the format doesn't look good on sub 300px width displays but idk of any. */

  .banner-title {
    font-size: 50px;
  }

  .information-title {
    font-size: 30px !important;
  }
}

.banner-subtitle {
  font-weight: normal;
  font-size: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.information {
  font-family: inherit;
  padding: 50px 50px;
  display: block;
  overflow: auto;
}

@media (min-width: 1600px) {

  .information {

    width: 1500px;
    margin-right: auto;
    margin-left: auto;

  }

}

.information-title {
  font-weight: normal;
  font-size: 35px;
  margin: 10px 0px;
  padding: 0;
}

.information-subtitle {
  font-weight: normal;
  font-size: 25px;
  margin: 10px 0px;
  padding: 0;
}

.information-text {
  font-weight: normal;
  font-size: 20px;
  line-height: 1.7em;
  margin: 10px 0px;
}

.information-text a {
  text-decoration: none;
  color: #77aad9;
}

.information-text a:hover {
  text-decoration: underline !important;
}

.wrap-text{
  margin-right: 15px;
}

.columned-information {
  display: flex;
  justify-content: center;
  font-family: inherit;
  flex-wrap: wrap;
}

.column {
  font-family: inherit;
  width: var(--column-width);
  margin: var(--column-margin);
}

.column-title {
  background-color: #425465;
  font-weight: bold;
  padding: 10px 0px;
  color: white;
  text-align: center;
  margin: 0;
}

.column-text {
  background-color: #4c7397;
  padding: 20px 20px;
  margin: 0;
  color: white;
  word-wrap: break-word;
}

.button {
  background-color: #478ac9;
  border-radius: 5px;
  font-family: inherit;
  font-weight: normal;
  font-size: 20px;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  margin: 0 0 10px 0;
}

.button:hover {
  background-color: #77aad9;
}

.hidden {
  display: none !important;
  box-shadow: none;
}

.wrapper-container {
  width: var(--width, 40%);
  float: var(--position, right);
  aspect-ratio: var(--aspectratio, 16 / 9);
  margin: 0 20px; 
}

@media (max-width: 1200px) {
  .wrapping-container {
    display: grid;
  }

  .wrapper-container {
    order: 1;
    width: 100% !important;
    margin: 0;
    margin-bottom: 20px;
  }
}
