/* Couple */
.couple {
  padding-top: 100px;
  padding-bottom: 100px;
}
.couple .row {
  box-shadow: 0 0 20px 10px rgba(30, 30, 30, 0.35);
}
.couple .couple-thumb {
  position: relative;
}
.couple .couple-thumb .heart {
  width: 90%;
  height: 90%;
  overflow: hidden;
  /* mask heart */
  -webkit-mask: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33.8 30'> <path d='M23.6,0c-2.6,0-5,1.2-6.6,3.2C15.4,1.2,13,0,10.4,0C4.7,0,0,4.7,0,10.4 c0,11.1,16.9,19.2,16.9,19.2s16.9-8.1,16.9-19.2C33.8,4.7,29.1,0,23.6,0z' fill='white'/> </svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 33.8 30'> <path d='M23.6,0c-2.6,0-5,1.2-6.6,3.2C15.4,1.2,13,0,10.4,0C4.7,0,0,4.7,0,10.4 c0,11.1,16.9,19.2,16.9,19.2s16.9-8.1,16.9-19.2C33.8,4.7,29.1,0,23.6,0z' fill='white'/> </svg>") no-repeat center/contain;
}
.couple .couple-thumb .heart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.couple .couple-thumb .heart:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .couple {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .couple .couple-thumb {
    position: absolute;
  }
  .couple .couple-thumb .heart {
    width: 110%;
    height: 110%;
    margin-left: -5% !important;
    transform: translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .couple {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (min-width: 1400px) {
  .couple {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

/* Story */
.story {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: url(../images/data/bg-story01.png);
  background-position: left bottom;
  background-size: 200px;
  background-repeat: no-repeat;
}
.story h2 {
  position: relative;
}
.story h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  margin: 10px auto 0;
  background: url(../images/data/icon-title.png) no-repeat center/contain;
  opacity: 0.8;
  filter: invert(49%) sepia(8%) saturate(1578%) hue-rotate(284deg) brightness(92%) contrast(83%);
}
.story .horizontal-wrapper {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
}
.story .horizontal-wrapper .item {
  flex: 0 0 50vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story .horizontal-wrapper .item.intro {
  flex: 0 0 90vw;
}
.story .horizontal-wrapper .item .odd,
.story .horizontal-wrapper .item .even {
  position: relative;
  width: 50vh;
  height: 100vh;
}
.story .horizontal-wrapper .item .odd figure,
.story .horizontal-wrapper .item .even figure {
  margin: 0;
  position: absolute;
  border: 6px solid var(--primary-color);
  z-index: 99;
  top: 13%;
}
.story .horizontal-wrapper .item .odd figure img,
.story .horizontal-wrapper .item .even figure img {
  height: 50vh;
}
.story .horizontal-wrapper .item .odd figure p,
.story .horizontal-wrapper .item .even figure p {
  font-size: 0.9rem;
}
.story .horizontal-wrapper .item .odd figure::before, .story .horizontal-wrapper .item .odd figure::after,
.story .horizontal-wrapper .item .even figure::before,
.story .horizontal-wrapper .item .even figure::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 45%;
  height: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.story .horizontal-wrapper .item .odd figure::before,
.story .horizontal-wrapper .item .even figure::before {
  left: 15px;
  transform: skew(-5deg) rotate(-5deg);
}
.story .horizontal-wrapper .item .odd figure::after,
.story .horizontal-wrapper .item .even figure::after {
  right: 15px;
  transform: skew(5deg) rotate(5deg);
}
.story .horizontal-wrapper .item .odd figure:hover::before, .story .horizontal-wrapper .item .odd figure:hover::after,
.story .horizontal-wrapper .item .even figure:hover::before,
.story .horizontal-wrapper .item .even figure:hover::after {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.story .horizontal-wrapper .item .odd figure:hover::before,
.story .horizontal-wrapper .item .even figure:hover::before {
  left: 5px;
}
.story .horizontal-wrapper .item .odd figure:hover::after,
.story .horizontal-wrapper .item .even figure:hover::after {
  right: 5px;
}
.story .horizontal-wrapper .item .odd figure {
  transform: rotate(5deg);
}
.story .horizontal-wrapper .item .even figure {
  transform: rotate(-5deg);
}
.story .horizontal-wrapper .line {
  height: 100%;
  position: relative;
}
.story .horizontal-wrapper .line .timeline {
  width: 100px;
  height: 100vh;
}
.story .horizontal-wrapper .line .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vh;
  height: 5px;
  background-color: var(--primary-color);
  z-index: 1;
}
.story .horizontal-wrapper .line .icon {
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .story .horizontal-wrapper .item {
    flex: 0 0 70vh;
  }
  .story .horizontal-wrapper .item.intro {
    flex: 0 0 50vw;
  }
}/*# sourceMappingURL=our-story.css.map */