footer {
  color: white;
  text-align: center;
}
footer .search-term-box {
  position: absolute;
  width: 100%;
  margin-bottom: 10px;
}
footer .search-term-input {
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
footer .search-term-icon {
  position: absolute;
  right: 0;
  padding: 15px;
  color: black;
  width: 70px;
  text-align: right;
}
footer .search-results {
  background: #eeeeee;
  position: fixed;
  max-height: 65%;
  overflow-y: scroll;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
  border-radius: 9px;
  border-style: solid;
  border-color: black;
  border-width: 4px;
  -webkit-box-shadow: 9px 9px 10px 3px #000000;
  box-shadow: 9px 9px 10px 3px #000000;
}
footer .search-result {
  text-align: left;
  margin: 8px;
  padding: 6px;
  color: #444444;
}
footer .search-result:hover {
  border: 1px solid #666666;
}
footer .search-result-title {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
footer .search-result-header {
  font-size: 32px;
  font-weight: 400;
  text-align: left;
  margin: 10px;
}
footer .search-result-snippet {
  font-size: 14px;
  font-weight: 400;
}
footer .search-result-link {
  cursor: pointer;
}
footer .search-results-x {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
  font-weight: 600;
}
footer .search-results-show-transition {
  transition: all linear 0.6s;
  opacity: 1;
}
footer .search-results-hide-transition {
  transition: all linear 0.6s;
  opacity: 0;
}
footer .contact {
  padding: 25px;
  background: #0077E5;
}
footer .contact a {
  color: black;
}
footer .sitemap {
  margin: 0 auto;
  background: #0077E5;
  padding: 18px 0px;
}
footer .sitemap ul {
  list-style: none;
  text-align: left;
  display: inline-block;
  vertical-align: top;
}
footer .sitemap .sitemap-heading {
  font-size: 17px;
  margin-bottom: 6px;
}
footer li:not(.sitemap-heading) {
  margin-bottom: 2px;
}
footer li:not(.sitemap-heading) a {
  opacity: 0.8;
  color: white;
  text-decoration: none;
}