/*Button styling*/

body {
  background: #ede9de;
}

.KS-button {
    background-color: #ffa726;
    color: #b50000;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 2px 2px 5px 0px black;
    border: 2px solid white;
    font-weight: bold;
    font-size: large;
  }

.KS-textblock{
    display: block;
    width: 75%;
    margin: auto;
    font-size: large;
}

p.KS-relevant-text {
  font-size: x-large;
  margin-bottom: 40px;
}

.KS-container-title {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  margin: 10px 0;
  font-size: 2.5rem;
}

/* Navigation bar */
.KS-nav-bar {
  height: 80px;
}

.KS-page-main {
  top: 80px;
  position: absolute;
  height: calc(100% - 80px); /* 100% minus height of KS-nav-bar */
  width: 100%;
  /* background: #fafafa; */
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 20%), rgba(0, 0, 0, 30%)), url("../img/shutterstock_750970279_96dpi.png");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 100%;
}

.hero-text button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}

.hero-text button:hover {
  background-color: #555;
  color: white;
}

.KS-cover {
  position: relative;
  text-align: center;
  color: white;
  /* padding-top: 40px; */
}

.KS-cover > img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.KS-cover > .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 3px 3px black;
  color: #FFF176;
  font-size: xxx-large;
  font-family: Tahoma, Verdana, sans-serif;
}

.KS-evidencebox {
  border: 2px solid #FF6F00;
  border-radius: 10px;
  background: #FFC107;
  margin: 25px 0px;
  padding: 10px;
}
.KS-evidencebox.with-img {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.KS-evidencebox .KS-evidenceBox-img {
  width: 20%;
  padding: 0px 10px;
  min-width: 150px;
  max-width: 250px;
}
.KS-evidencebox .KS-evidenceBox-txt {
  width: 80%;
}
.KS-evidencebox table {
  margin: 15px;
  caption-side: bottom;
  border-collapse: collapse;
}
.KS-evidencebox tbody, th, td, tr {
  padding: 5px;
}
.KS-evidencebox tbody {
  vertical-align: middle;
}

.KS-box-img-cover {
  text-align: center;
  padding: 10px;
}
.KS-box-img-cover img {
  width: 100%;
  border-radius: 10px;
}

.KS-note {
  padding: 10px 15px;
  margin: 10px 0;
  position: relative;
  font-family: Arial, sans-serif;
  background-color: #63d768;
  border: 2px solid #316533;
  color: black;
}
.KS-note::before {
  content: "NOTE: ";
  font-size: 20px;
  /* position: absolute;
  left: -1px;
  top: 5px; */
}
.KS-note a {
  color: #003c95;
  font-weight: bold;
}