body {
  background-color: #1E1E1E;
}

.mainIntro {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.mainIntro .videoDtl {
  width: 100%;
}

main#mainContainer {
  padding-top: 192px;
  padding-bottom: 96px;
  min-height: auto;
}

main section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

main section ul li {
  position: relative;
  width: calc(50% - 16px);
  aspect-ratio: 16 / 6.825;
  border-radius: 24px;
  overflow: hidden;
}

main section ul li a{
  padding: 48px;
  display: block;
  width: 100%;
  height: 100%;
}

main section ul li.pupaStage {
  background: linear-gradient(180deg, rgba(49, 188, 239, 0.8) 0%, rgba(49, 188, 239, 0) 50%, #313131 100%);
}

main section ul li.aiAdvertising {
  background:linear-gradient(180deg, rgba(255, 89, 0, 0.8) 0%, rgba(255, 89, 0, 0) 50%);
}

main section ul li.event {
  background:
    linear-gradient(180deg, rgba(200, 173, 0, 0.8) 0%, rgba(213, 184, 0, 0) 50%),
    linear-gradient(0deg, rgba(225, 163, 37, 0) 0%, rgba(130, 87, 0, 0.2) 100%);

}

main section ul li.ad {
  background:
  linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
  linear-gradient(180deg, rgba(37, 37, 37, 0.8) 0%, rgba(42, 42, 42, 0.754495) 6.88%, rgba(57, 57, 57, 0.616) 27.82%, rgba(126, 126, 126, 0) 59.83%);

}

main section ul li p {
  display:flex;
  flex-direction: column;
  gap:8px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

main section ul li p span {
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: -0.0025em;
}
main section ul li.ad p{
  position: absolute;
  top: 48px;
  left: 48px;
  z-index: -1;
}

main section ul li.ad p span img{
  margin-top: -1px;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
}

main section ul li video {
  /* object-fit: fill; */
}

main section ul li video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -2;
}
main section ul li a > img{
  position: absolute;
  top:0;
  left:0;
  z-index: -2;
}
main section ul li.pupaStage a > img{
  z-index: 0;
}
main section ul li.pupaStage img{
  width: 21.85%;
  height: 112.2%;
  transform: translate(0, 0);
  left: auto;
  right: 21.55%;
  top: auto;
  bottom: -30.98%;
}
main section ul li.aiAdvertising img{
  width: 100%;
  height: 100%;
}


main section ul li .gifButton{
  position: absolute;
  right: 48px;
  bottom: 48px;
  padding:0 8px;
  border: 0;
  border-radius: 4px;
  background-color: rgba(18, 18, 18, 0.3);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 28px;
}
main section ul li .gifButtonM{
  position: absolute;
  right: 40px;
  bottom: 32px;
  padding:0 8px;
  border: 0;
  border-radius: 4px;
  background-color: rgba(18, 18, 18, 0.3);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 20px;
  display: none;
}

main section .ContactUsCover{
  padding-top: 64px;
  display:flex;
  align-items: center;
  justify-content: center;
  display:none;
}
main section .ContactUsCover a{
  padding: 11px 16px;
  display:flex;
  align-items: center;
  gap:8px;
  background-color: #fff;
  border-radius: 999px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0;
}

main section .ContactUsCover a img{
  width: 20px;
  height: 20px;
  margin-left: 8px;
}


.mobilePU{
  padding:0 20px;
  position: fixed;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:24px;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  display:none;
}

.mobilePU img {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.mobilePU video{
  border-radius: 8px;
}

.mobilePU a{
  padding:13px 16px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:8px;
  border-radius: 999px;
  border: 1.4px solid #fff;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}
.mobilePU a img{
  filter: invert(1);
  width: 20px;
  height: 20px;
}













/***************************** 미디어 사이즈( 반응형 ) *****************************/

/* PC 1280~ */
@media only screen and (max-width:2559px) {

  main section ul {
    gap: 24px 32px;
  }
}

@media only screen and (max-width:1919px) {

  main section ul {
    gap: 16px;
  }

  main section ul li{
    width: calc(50% - 8px);
    /* height: 320px; */
  }

  /* main section ul li.pupaStage img{
    width: 112.77px;
    height: 247px;
    right: 102px;
    bottom: -76px;
  } */
}


@media only screen and (max-width:1279px) {

  main#mainContainer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  main section ul{
    gap:32px;
  }

  main section ul li{
    width: calc(50% - 16px);
  }

  main section ul li a{
    padding: 32px;
  }

  main section ul li p{
    font-size: 2.4rem;
  }

  main section ul li p span{
    font-size: 1.6rem;
  }

  main section ul li video{
    display: none;
  }

  main section ul li.pupaStage img{
    width: 21.69%;
    height: 111.26%;
    right: 19.62%;
    bottom: -35%;
  }

  main section ul li .gifButton{
    display: none;
  }
  main section ul li .gifButtonM{
    display: block;
  }

  main section .ContactUsCover{
    display:flex;
  }
}

@media only screen and (max-width:1023px) {

  main section ul{
    flex-direction: column;
    gap:24px;
  }

  main section ul li {
    width: 100%;
  }

  main section ul li.pupaStage img{
    width: 21.99%;
    height: 112.8%;
    right: 18.3%;
    bottom: -31.71%;
  }
}

@media only screen and (max-width:767px) {

  main section ul{
    gap:16px;
  }
}

@media only screen and (max-width:599px) {

  main#mainContainer {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  main section ul{
    gap:16px;
  }

  main section ul li p{
    font-size: 1.8rem;
  }

  main section ul li p span{
    font-size: 1.4rem;
  }

  /* main section ul li.pupaStage img{
    width: 21.99%;
    height: 112.8%;
    right: 18.3%;
    bottom: -31.71%;
  } */
  main section ul li .gifButtonM{
    right: 16px;
    bottom: 16px;
  }

  main section .ContactUsCover{
    padding-top: 32px;
  }
  main section .ContactUsCover a{
    padding: 13px 16px;
    width: 100%;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 22px;
  }

}