#footer-page {
  width: 100%;
  background-color: #1d1d1d;
  color: #c0b8af;
  padding: 20px 50px;
  font-weight: normal;
  font-size: 0.95rem;
  font-family: "Open Sans", sans-serif;
}

.footer-widget {
  max-width: 80vw;
  margin: 2em auto 3em auto;
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(min(100%, max(16rem, 100%/4)), 1fr)
  );
  grid-gap: 2rem;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9em;
}
.footer-copyright .copy {
  margin-bottom: 2em;
}
.footer-copyright div a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}
.footer-copyright div a:hover {
  color: #ffffff;
  border-bottom: 1px dotted;
}

.card {
  padding: 8px;
  line-height: 1.4em;
}

.card h4 {
  font-size: 1.8em;
  font-family: "Caveat", sans-serif;
  line-height: 1.2em;
  padding: 0 0 12px 0;
  margin: 0;
  position: relative;
}
.card h4:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  content: "";
  background: #c0b8af;
}
.card .caption {
  margin-top: 24px;
}

/******** Scroll to Top ********/

#scrollToTop {
  background-color: var(--tw-color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  bottom: 140px;
  right: 30px;
  box-shadow: rgba(50, 50, 93, 0.4) 0px 10px 10px 2px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
#scrollToTop:hover {
  background-color: #de7600;
}
#scrollToTop span {
  font-size: 2em;
  color: white;
  margin-top: 6px;
}

/********* Menu *********/

.menu-h ul.menu {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.menu-h ul.menu li:not(:last-child)::after {
  content: "|";
  padding: 0 10px;
}
.menu-v ul.menu {
  list-style: none;
  margin-bottom: 0;
  padding-inline-start: 15px;
}
.menu-v li {
  position: relative;
  margin-bottom: 0.3em;
}
.menu-v li:before {
  position: absolute;
  top: 7px;
  left: -15px;
  width: 7px;
  height: 7px;
  background: #c0b8af;
  content: "";
  border-radius: 2px;
}

#footer-page ul.menu li a {
  color: #c0b8af;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}
#footer-page ul.menu li a:hover {
  color: #ffffff;
  border-bottom: 1px dotted;
}

/********* Panel Search **********/

#panel-search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  margin-top: -50px;
  transition: 0.5s ease-in-out;
}
#panel-search.panel-visible .search-form {
  margin-top: 0px;
}

.search-field {
  font-family: "Noto Sans";
  appearance: none;
  width: 400px;
  max-width: 70vw;
  font-size: 2em;
  color: white;
  background-color: inherit;
  padding: 20px 0px;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--tw-color-primary);
  transition:
    color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    background-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.search-submit {
  background-color: var(--tw-color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 8px 12px;
  transform: scale(1.1);
  cursor: pointer;
}
.search-submit:hover {
  background-color: var(--tw-color-primary);
}

@media screen and (max-width: 900px) {
  .menu-h ul.menu {
    flex-direction: column;
  }
  .menu-h ul.menu li:not(:last-child)::after {
    content: "";
    padding: 0 0px;
  }
}
