.lp-links {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.lp-links  .row{
	overflow: hidden;
}
.lp-links  .container-fluid{
    width: 100%;
}
.p-0 {
	padding: 0;
}
.lp-links .img-container {
	width: 100%;
    height: 100vh;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease-in-out;
}
.lp-links .img-container:hover {
	transform:scale(1.05);

}
.lp-links .img-container.img-1 {
	background-image: url(../img/1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lp-links .img-container.img-2 {
	background-image: url(../img/2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lp-links .img-container .link-img {
  width: 100%;
	height: 100vh;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.lp-links .img-container:after {
  width: 100%;
  height: 100%;
}
.lp-links .img-container:hover .link-img {
  transform: rotate(3deg) scale(1.1);
}
.lp-links .detail-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, .6);
}

.lp-links .detail-container .lp-logo {
  max-width: 100px;
}
.lp-links .detail-container h2, .lp-links .detail-container h3 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.lp-links .detail-container h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.lp-links .detail-container h3 {
  font-weight: 500;
}
.lp-btn {
  border: 1px solid;
  border-radius: 2px;
  font-size: 14px;
  max-width: 100%;
  padding: 8px 15px;
  background: #deb666;
  border-color: #deb666;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all ease 0.3s;
  display: inline-block;
  line-height: 1.82857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
}
.lp-btn:hover {
  border-color: #b69854;
  background: #b69854;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .lp-links .img-container {
	height: 50vh
  }
}
@media screen and (max-width: 575px) {
  .lp-links .detail-container .lp-logo {
    max-width: 80px;
  }
  .lp-links .detail-container h3 {
    font-size: 18px;
  }
  .lp-links .detail-container h2 {
    font-size: 20px;
  }
  .lp-links .img-container {
	height: 50vh
  }
}

@media screen and (max-width: 380px) {
  .lp-links .detail-container .lp-logo {
    max-width: 50px;
  }
  .lp-links .detail-container h3 {
    margin: 10px;
    font-size: 16px;
  }
  .lp-links .detail-container h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

/* Page 2 */
.lp-links-2 .img-container {
	width: 50%;
	height: 100vh;
}