* {
  box-sizing: border-box;
  color: #000000;
  padding: 0;
  margin: 0;
}

body {
  font: 100% Helvetica, sans-serif;
  background-color: #d2d2d2;
  margin-right: 0;
  min-height: 100vh;
  height: 100%;
}

.site-container {
  width: 70%;
  margin-left: 15%;
  margin-top: 0;
  background-color: #ffffff;
  color: #ffffff;
  height: 100%;
}
@media screen and (max-width: 1010px) {
  .site-container {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1250px) {
  .site-container {
    width: 90%;
    margin-left: 5%;
  }
}

/* All things navigation    */
header {
  width: 100%;
}
header .header-img {
  opacity: 0.6;
  margin-top: 0;
  width: 100%;
  height: 25rem;
  background-image: url("../pics/landscape.jpg");
  /* This picture is licensed under the Creative Commons Attribution-Share Alike 3.0 unported license
  * * The license: https://creativecommons.org/licenses/by-sa/3.0/deed.en
  * * Link to the origin of the picture https://commons.wikimedia.org/wiki/File:View_from_Pilatus.jpg */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
header .yellow-divider {
  position: relative;
  top: -18rem;
  height: 1rem;
  width: 100%;
  background-color: #f7d000;
}
@media screen and (max-width: 1010px) {
  header .yellow-divider {
    display: none;
  }
}

.volta-nav {
  top: -18rem;
}

@media screen and (min-width: 1010px) {
  .navbar-logo {
    display: none;
  }
}

.logo {
  position: absolute;
  top: 5rem;
  left: 7%;
  height: 150px;
}
@media screen and (max-width: 1010px) {
  .logo {
    display: none;
  }
}
@media screen and (min-width: 1250px) {
  .logo {
    left: 17%;
  }
}

/* Cards and textfields for the main content sections */
.card-box {
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  width: 90%;
  margin-left: 5%;
}

.card {
  flex: 0 1 calc(34% - 1em);
  -ms-flex: 0 1 calc(34% - 1em);
  box-sizing: border-box;
  margin: 1rem 0.25rem;
  text-align: center;
  min-width: 25%;
}
@media screen and (max-width: 1010px) {
  .card {
    flex: 0 1 100%;
    -ms-flex: 0 1 100%;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1250px) {
  .card {
    flex: 0 1 calc(50% - 1em);
    -ms-flex: 0 1 calc(50% - 1em);
    min-width: 40%;
  }
}
.card .card-img-box {
  height: 15rem;
}
.card .card-img-box .card-img-top {
  margin-top: 1rem;
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
}

.btn-primary {
  background-color: #d2d2d2;
  border-color: #d2d2d2;
}

.btn-primary.disabled {
  background-color: #808080;
  border-color: #d2d2d2;
}

.text-article {
  flex: 0 1 100%;
  -ms-flex: 0 1 100%;
}
.text-article .textbox {
  box-sizing: border-box;
}

/* Footer and Footer content  */
footer {
  background-color: #808080;
  padding-bottom: 0;
  font: Helvetica, sans-serif;
}
footer .footer-box {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  width: 90%;
  margin-left: 5%;
}
footer .footer-box a {
  color: black;
}
footer .footer-box a:visited {
  color: black;
}
footer .footer-box .footer-entry {
  flex: 0 1 calc(34% - 1em);
  -ms-flex: 0 1 calc(34% - 1em);
  box-sizing: border-box;
  margin-top: 1rem;
  font-size: small;
}
@media screen and (max-width: 1010px) {
  footer .footer-box .footer-entry {
    flex: 0 1 100%;
    -ms-flex: 0 1 100%;
  }
}
@media screen and (min-width: 1010px) and (max-width: 1250px) {
  footer .footer-box .footer-entry {
    flex: 0 1 calc(50% - 1em);
    -ms-flex: 0 1 calc(50% - 1em);
  }
}

/* Featurettes */
.featurette-divider {
  margin: 2rem 0;
}

.featurette-box {
  min-height: 25rem;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  margin-bottom: 2rem;
  width: 100%;
}
.featurette-box .featurette {
  padding-left: 1rem;
  padding-top: 1rem;
}
.featurette-box .featurette h5 {
  color: dodgerblue;
}
@media screen and (max-width: 1010px) {
  .featurette-box .featurette {
    padding-top: 1rem;
  }
  .featurette-box .featurette p {
    padding-top: 1rem;
  }
}

.featurette-image {
  margin-top: 5%;
  margin-bottom: 5%;
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
  margin-bottom: 1em;
}

/* Temporary settings for the alert box. */
.alert {
  width: 90%;
  margin-left: 5%;
}

/*# sourceMappingURL=main.css.map */
