* {
  margin: 0;
  padding: 0;
}
html,
body {
  background: #a9bb5b;
  font-family: Arial;
}
.underc {
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
}
.underc .home {
  display: block;
  width: 100%;
  max-width: 100%;
}
.underc .hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(169, 187, 91, 0.9);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.underc .hover .cnt {
  color: white;
  font-style: italic;
  font-size: 4vw;
}
html.on .underc .hover {
  opacity: 1;
}
.address {
  text-align: center;
  padding: 0 15px;
}
.address,
.address a {
  color: black;
  text-decoration: none;
}
.address p {
  margin-bottom: 8px;
}
