.listBox {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 55px;
}

@media screen and (max-width: 1000px) {
  .listBox {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .listBox {
    gap: 15px;
  }
}

@media screen and (max-width: 575px) {
  .listBox {
    flex-direction: column;
  }
}

.listBox .item {
  width: calc((100% - 55px) / 2);
  padding: 0 0 20px 15px;
  max-width: 700px;
  isolation: isolate;
  position: relative;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .listBox .item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .listBox .item {
    width: calc((100% - 15px) / 2);
  }
}

@media screen and (max-width: 575px) {
  .listBox .item {
    width: 100%;
  }
}

.listBox .item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 24px;
  top: 24%;
  bottom: 0;
  background: #eef1f7;
  z-index: -1;
  transition: all 0.3s ease;
}

.listBox .item:hover::before {
  background: #fdd100;
}

.listBox .pic {
  max-width: 610px;
  margin: 0 0 10px auto;
  position: relative;
  z-index: 1;
  text-align: center;
  background: #fff;
  aspect-ratio: 16/9;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.listBox .title {
  max-width: 610px;
  margin: 0 0 0 auto;
  position: relative;
  font-size: 1.312rem;
  font-weight: 400;
  padding: 0;
  color: #000;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .listBox .title {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .listBox .title {
    font-size: 1.125rem;
  }
}

.popup-box {
  cursor: pointer;
}

.popup-box .video-container {
  pointer-events: none;
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

.videoLightBox {
  background: white;
  padding: 0px;
  text-align: left;
  width: 50vw;
  max-height: 80vh;
  margin: 40px auto;
  position: relative;
}

@media(max-width: 767px) {
  .videoLightBox {
    width: 80vw;
  }
}

.wrapper .videoLightBox {
  display: none;
}

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*# sourceMappingURL=video.css.map */