.box{
	width:100%;
	overflow:hidden;
}
img {
	overflow:hidden;
    display: block;
    transition:all 0.25s ease;
}

.box:hover img {
	transform:scale(1.25);
    -webkit-transform:scale(1.25)
}

 .img-container {
    position: relative;
    text-align: center;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.centered {
    font-size: 1.5em;
    font-weight: 800;
    font-family:  'Montserrat', sans-serif;
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.centeredd{
  font-size: 1.5em;
  font-weight: 800;
  font-family:  'Montserrat', sans-serif;
}

.centered p{
  font-size: 1em;
  text-align: center;
}

.img-responsive .img-rooms{
    margin: 10px;
}
.amm-container {
    position: relative;
    width: 100%;
    border:2px solid white;
  }
  
  .amm-image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .amm-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(000,000,000,0.5);
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  
  .amm-container:hover .amm-overlay {
    height:100%;
    transition: all 0.25s linear;
  }

  .amm-container .amm-overlay .amm-text p{
    opacity: 0;
    transition: all 0.5s linear;
  }


  .amm-container:hover .amm-overlay .amm-text p{
    opacity: 1;
    transition: all 0.5s linear;
  }
  
  .amm-text {
    color: white;
    font-size: 12px;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  @media only screen and (max-width: 600px) {
    .amm-container .amm-overlay .amm-text p{
      opacity: 1;
      transition: all 0.5s linear;
    }
  
  }