.container {
  height: 100vh;
  max-width: 1920px;
  background-color: #f8f8f8;
  padding: 1%;
}

.container h1 {
  text-align: center;
  font-size: 35px;
  padding: 10px;
  background-color: #f8f8f8;
  color: #12293d;
  text-shadow: 0 0 0.009em #12293d;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}

#map {
  min-height: 50%;
  width: 100%;
  border-radius: 10px;
  z-index: 0;
}


#image-container {
  display: none;
  height: 50%;
  width: 100%;
  padding: 20px;
  bottom: -100px;
  position: relative;
}

#image-container h2 {
  background-color: transparent;
  color: #12293d;
  text-shadow: 0 0 0.009em #12293d;
}


#border {
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}



.card {
  height: 100%;
  width: 35%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  transition: transform 0.8s ease;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.8s ease-out;
}

#image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.image-info {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 50px;
  transition: transform 0.8s ease-out;
  background-color: #f8f8f8;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.info {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.card:hover .image-wrapper {
  transform: translateX(-100%);
}

.card:hover .image-info {
  transform: translateX(0);
}

.card:hover .info {
  display: block;
}