* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Open Sans, sans-serif;
}

.hotels {
  min-height: calc(100vh - 100px);
}

.hotels__row {
  display: flex;
  flex-wrap: wrap;
}

.hotel {
  flex: 1 0 100%;
  height: 25vh;
  position: relative;
  overflow: hidden;
}

.hotel:hover .hotel__image {
  transform: scale(1.5) rotate(-2deg);
  transition: transform 25s ease-out;
}

.hotel__image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center bottom;
  transition: transform 1s ease-in;
  z-index: 1;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hotel__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  z-index: 2;
}

.hotel__title {
  display: block;
  position: relative;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 24px;
  color: #fff;
}

.hotel__body {
  display: none;
  opacity: 0;
  transition: all 0.5s ease-out;
  color: #fff;
  font-size: 14px;
  text-align: center;
  transform: translateY(65px);
}

.hotel__body p {
  line-height: 1.8em;
}

.hotel__body p:first-child {
  margin-bottom: 1.2em;
}

.footer {
  height: 100px;
  width: 100%;
  color: #786a5d;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.7em;
  text-align: center;
}

.footer > div {
  width: 100%;
  flex: 1 0 100%;
}

.footer__link {
  color: #786a5d;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .hotel {
    height: calc((100vh - 100px) / 2);
    flex: 1 0 0;
  }

  .hotel__title {
    font-size: 36px;
    padding-bottom: 0.3em;
    margin-bottom: 0.3em;
    transition: all 0.5s ease-out 0.2s;
    transform: translateY(65px);
  }

  .hotel__title:after {
    display: block;
    content: "";
    margin: 10px auto 0;
    border-top: 1px solid #fff;
    width: 100px;
    opacity: 0;
    transition: all .3s ease-out;
  }
  
  .hotel:hover .hotel__title {
    transform: translateY(0);
  }
  
  .hotel:hover .hotel__title:after {    
    transition-delay: .5s;
    opacity: .5;
    width: 180px;
  }

  .hotel__body {
    display: block;
  }

  .hotel:hover .hotel__body {
    transform: translateY(0);
    opacity: 1;
  }

  .footer {
    font-size: 18px;
    text-align: center;
  }

  .footer__link {
    font-size: 20px;
  }
}



.overlay .hotel__image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.overlay--light-blue .hotel__image:before {
  background: #64b9e4;
}

.overlay--light-mint .hotel__image:before {
  background: #55efc4;
}

.overlay--light-red .hotel__image:before {
  background: rgba(134, 15, 15, 0.76);
}

.overlay--light-purple .hotel__image:before {
  background: #e056fd
}