.location {
  position: relative;
}

.location .castle {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.info {
  z-index: 100;
  background-color: rgba(75,75,75,0.6);
  color: white;
  width: 60%;
  height: auto;
  position: absolute;
  border-color: 1px solid black;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  padding: 2rem;
  left: 1%;
  bottom: 1%;
  font-size: 1rem;
  min-width: 320px;
  max-width: 500px;
}

.address {
  display: flex;
  flex-direction: row;
  margin: 0;
  margin-top: 1rem;
  background-color: transparent;
  border: 0;
  color: white;
  justify-content: flex-start;
  cursor: pointer;
  flex: 1;
}

.address-details {
  flex: 1;
  text-align: left;
  width: 100%;
}

.address img {
  height: 2rem;
  margin-top: 0.5rem;
}

@media (max-width: 500px) {
  .info {
    width: calc(100vw - 2vh);
  }
}

.info img {
  width:  2rem;
  color: white;
}

.info .row {
  display: flex;
  flex-direction: row;
}

.info .row-1 {
  flex: 1;
}

.info a {
  color: white;
}

.info h1 {
  font-size: 2rem;
  line-height: 2rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .address {
    display: block;
  }
}