@charset "utf-8";
/* CSS Document */





.center {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
	width:100%;
}

.wrapper {
  
  grid-gap: 1em;
  overflow: hidden;
  width: 100%;
}
.wrapper > .inner {
  display: flex;
  grid-gap: 1em;
  transition: all 1s ease-in-out;
}

.card {
	border:4px solid #ffffff;
  border-radius: 6px;
 
	width:280px;
}
.card > img {
  border-radius: 4px;
  display: block;
  width: 272px;
}
.card > .content {
  background: #000000ab;
  position: absolute;
	bottom:5%;
	width: 100%;
  padding: 12px 0px 0px 0px;;
  text-align: center;
	font-family:lato, sans-serif;
	text-transform: uppercase;
	color:#ffffff;
	font-weight:200;
}
.card >  h1, .card > .content > h3 {
  margin: 0.35em 0;
}
.card > .content > h1 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
	font-weight:200;
}
.card > .content > h3 {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 200;
}

.map {
  margin-top: 1em; width:100%
}
.map > button {
  all: unset;
  background: #a66a6a;
  cursor: pointer;
  margin: 0 0.125em;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 100%;
  height: 12px;
  width: 12px;
}
.map > button.active:after {
  background: #a66a6a;
  content: "";
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 100%;
  height: 6px;
  width: 6px;
}