body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  background: #343a40;
  color: #bebebe;
}
footer.footer-copyright {
  margin-top: auto;
  background: #141a20;
  color: #999999;
}
footer.footer-columns {
  background: #f8f8f8;
  color: #666666;
  font-size: 15px;
  padding: 50px 0 50px 0;
}
footer.footer-columns h3 {
  font-size: 18px;
}
footer.footer-columns .footer-logo {
  max-width: 90%;
}
footer.footer-columns a:hover {
  text-decoration: underline;
}
#search {
  margin: 50px auto 50px auto;
  width: fit-content;
  position: relative;
}
#search input {
  border: 2px solid #03fe9f;
  background: none;
  color: white;
  border-radius: 4px;
  padding: 8px 20px;
  width: 400px;
  max-width: 80vw;
  font-size: 17px;
  font-family: inherit;
}
#search ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  font-weight: 200;
}
#search .iconify {
  font-size: 17px;
  position: absolute;
  right: 15px;
  top: 13px;
  opacity: .4;
}
#search.home input {
  background: rgba(0, 0, 0, 0.5);
}
#search.home input ::placeholder {
  color: #ffffff;
}
.firma-link {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
  padding: 10px 25px;
  border-radius: 20px;
  background: #f8f8f8;
  border: 1px solid transparent;
}
.firma-link:hover {
  border-color: currentColor;
}
.firma-link .f-url {
  color: blue;
  margin-bottom: 5px;
  font-weight: 100;
  font-size: 14px;
}
.firma-link .f-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.firma-link .f-description {
  opacity: 70%;
  font-size: 13px;
}
.homeboxes {
  display: grid;
  margin-top: 50px;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
@media screen and (max-width: 768px) {
  .homeboxes {
    display: block;
  }
}
.homeboxes h2 {
  color: #03fe9f;
}
.homeboxes article {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  margin-bottom: 30px;
  padding: 25px;
}
.homeboxes article form#search {
  margin: 30px 0 0 0;
  padding: 0;
  display: block;
  width: 100%;
  max-width: initial;
}
.homeboxes article form#search input[type=text] {
  width: 100%;
  box-sizing: border-box;
}
.cta {
  display: block;
  width: fit-content;
  background: #03fe9f;
  color: white;
  font-size: 25px;
  padding: 10px 30px;
  border-radius: 8px;
  margin: 20px auto 0px auto;
  cursor: pointer;
  text-decoration: none;
  border: none;
  color: #343a40;
}
.cta.disabled {
  opacity: .3;
}
.hometext {
  color: white;
  text-shadow: 0px 0px 2px #343a40;
}
