#topSec {
  padding: 140px 20px 0 20px;
  display: flex;
  flex-direction: column-reverse;
  border-bottom: 1px solid #C8C8C8;
  background-image: url("..//imgs/bg_top.png");
  background-size: cover;
  background-position: 0 center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  #topSec {
    padding-top: 140px;
    flex-direction: row;
  }
}
#topSec .deco {
  position: absolute;
  right: 30px;
  bottom: -68px;
}

.my-card {
  padding: 18px;
  border-radius: 24px;
  background-color: #EDEDED;
}
#featureSec .my-card {
  background-color: rgb(246, 245, 235);
  width: 500px;
  height: 300px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* modal popup */
.popup {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.popup img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 80vw;
}
@media (min-width: 768px) {
  .popup img {
    max-height: 80vh;
  }
}
.popup button {
  position: absolute;
  right: 30px;
  top: 30px;
  background-color: #EDEDED;
}

.js-horizontal-scroll-content .my-card {
  cursor: pointer;
}

