* {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1 {
  display: none;
}

.delighter.fadein.started {
  opacity: 1;
}

.delighter.fadein {
  opacity: 0;
  -webkit-transition: all .75s ease-out;
  transition: all .75s ease-out;
}

.delighter.fadeLeft.started {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.delighter.fadeLeft {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.delighter.fadeRight.started {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.delighter.fadeRight {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.delighter.fadeTop.started {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.delighter.fadeTop {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.hide {
  display: none;
}

.main-title {
  position: relative;
  z-index: 10;
  font-size: 32px;
  font-weight: bold;
  color: #14e7e1;
  text-align: center;
  padding: 10% 0 10%;
  text-transform: uppercase;
  line-height: 1;
}

@media (min-width: 996px) {
  .main-title {
    font-size: 55px;
    padding: 5% 0 3%;
  }
}

.main-text {
  font-size: 17px;
  color: #fff;
}

.cardBox {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  background: #fff;
}

.cardBox .cardBox__img {
  position: relative;
  margin: 0;
}

@media (min-width: 1300px) {
  .cardBox .cardBox__img {
    height: 260px;
  }
}

.cardBox .cardBox__img .card__img {
  width: 80%;
  margin: 0 auto;
  vertical-align: text-top;
  -o-object-fit: cover;
     object-fit: cover;
}

.cardBox .cardBox__content {
  padding: 15px;
  text-align: center;
}

.cardBox .cardBox__content .card-pdLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray-600);
  font-size: var(--text-xs);
}

.cardBox .cardBox__content .card-title {
  color: var(--color-gray-800);
  font-size: var(--title-sm);
  font-weight: bold;
  margin: 0;
  text-align: center;
  padding: 0 25px;
}

.cardBox .cardBox__content .card-btn {
  color: #fff;
  background: #0067b8;
  display: inline-block;
  padding: 5px 25px;
  margin-top: 15px;
  border-radius: 5px;
}

.hatch-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
  z-index: 20;
  width: 20px;
  opacity: 0.8;
}

@media (min-width: 996px) {
  .hatch-prev {
    left: -3%;
    width: 30px;
  }
}

.hatch-prev:hover {
  cursor: pointer;
  opacity: 1;
}

.hatch-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: -25px;
  z-index: 20;
  width: 20px;
  opacity: 0.8;
}

@media (min-width: 996px) {
  .hatch-next {
    right: -3%;
    width: 30px;
  }
}

.hatch-next:hover {
  cursor: pointer;
  opacity: 1;
}

.hatch-prev-gallery {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
  left: 4%;
  width: 40px;
}

@media (min-width: 996px) {
  .hatch-prev-gallery {
    left: -1.5%;
    width: 45px;
  }
}

.hatch-prev-gallery:hover {
  cursor: pointer;
}

.hatch-prev-gallery img {
  width: 100%;
}

.hatch-next-gallery {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
  right: 4%;
  width: 40px;
}

@media (min-width: 996px) {
  .hatch-next-gallery {
    right: -1.5%;
    width: 45px;
  }
}

.hatch-next-gallery:hover {
  cursor: pointer;
}

.hatch-next-gallery img {
  width: 100%;
}

.onlyDesktop {
  display: none;
}

@media (min-width: 996px) {
  .onlyDesktop {
    display: block;
  }
}

.onlyMobile {
  display: block;
}

@media (min-width: 996px) {
  .onlyMobile {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

.msiFooter {
  position: relative;
  z-index: 10;
}

.project {
  position: relative;
  overflow: hidden;
  background: #0f0f10;
}

.project img {
  display: block;
}

.project figure {
  margin: 0;
  padding: 0;
}

.project .containerBox {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
}

@media (min-width: 996px) {
  .project .containerBox {
    padding: 0;
  }
}

.project .transition-text-prompt {
  position: fixed;
  top: 0;
  left: -30%;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  width: 110%;
  z-index: 0;
}

.project .transition-text-prompt img {
  width: 100%;
}

.project .transition-text-magician {
  position: fixed;
  bottom: 0;
  right: -40%;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  width: 130%;
  z-index: 0;
}

.project .transition-text-magician img {
  width: 100%;
}

.project .kv {
  width: 100%;
  position: relative;
  background: #fff;
}

.project .kv img {
  width: 100%;
}

.project .kv #bouncy-canvas {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px;
  margin: 0 auto;
  background-color: aqua;
  overflow: hidden;
}

.project .kv #bouncy-canvas .bouncy-object {
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 100;
}

.project .kv__mainBox {
  position: relative;
}

.project .kv__mainBox-maskImg {
  position: relative;
}

.project .kv__mainBox-content {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

@media (min-width: 768px) {
  .project .kv__mainBox-content {
    width: auto;
  }
}

.project .kv__mainBox-content .kv-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  font-family: 'DINPro-Black', sans-serif;
  line-height: 1;
}

@media (min-width: 768px) {
  .project .kv__mainBox-content .kv-title {
    font-size: 45px;
  }
}

@media (min-width: 996px) {
  .project .kv__mainBox-content .kv-title {
    font-size: 3.2vw;
  }
}

.project .kv__mainBox-content .inputBox {
  background: #fff;
  border: 1px solid #9fa0a0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  margin-top: 15%;
  width: 80%;
  margin: auto;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .project .kv__mainBox-content .inputBox {
    width: auto;
    margin-top: 15%;
  }
}

.project .kv__mainBox-content .inputBox span {
  position: relative;
  font-size: 12px;
  pointer-events: none;
  letter-spacing: 1px;
  color: #000;
}

@media (min-width: 768px) {
  .project .kv__mainBox-content .inputBox span {
    font-size: 14px;
  }
}

@media (min-width: 996px) {
  .project .kv__mainBox-content .inputBox span {
    font-size: 0.9vw;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes type {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.project .kv__mainBox-content .inputBox img {
  height: 15px;
  padding-left: 10px;
  -webkit-filter: contrast(0.5);
          filter: contrast(0.5);
  width: auto;
}

@media (min-width: 996px) {
  .project .kv__mainBox-content .inputBox img {
    padding-left: 20px;
  }
}

.project .kv__subTitle {
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'DINPro-Black', sans-serif;
  position: absolute;
  top: 10%;
  right: 1%;
  -webkit-text-stroke: 1px #666;
  line-height: 0.9;
}

@media (min-width: 768px) {
  .project .kv__subTitle {
    line-height: 0.8;
    top: 10%;
    right: 1%;
  }
}

@media (min-width: 996px) {
  .project .kv__subTitle {
    right: 19%;
  }
}

.project .kv__subTitle-topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  color: #fff;
}

.project .kv__subTitle-topBox .txtBox1 {
  font-size: 12px;
  margin-right: 10px;
  line-height: 1;
}

@media (min-width: 768px) {
  .project .kv__subTitle-topBox .txtBox1 {
    font-size: 16px;
  }
}

@media (min-width: 996px) {
  .project .kv__subTitle-topBox .txtBox1 {
    font-size: 1.3vw;
  }
}

.project .kv__subTitle-topBox .txtBox2 {
  font-size: 32px;
}

@media (min-width: 768px) {
  .project .kv__subTitle-topBox .txtBox2 {
    font-size: 40px;
    padding-bottom: 5px;
  }
}

@media (min-width: 996px) {
  .project .kv__subTitle-topBox .txtBox2 {
    font-size: 3.3vw;
  }
}

.project .kv__subTitle-bottomBox {
  font-size: 32px;
  color: #1cdbdd;
}

@media (min-width: 768px) {
  .project .kv__subTitle-bottomBox {
    font-size: 40px;
  }
}

@media (min-width: 996px) {
  .project .kv__subTitle-bottomBox {
    font-size: 3.3vw;
  }
}

.project .kv__pdImg {
  position: absolute;
  left: 0;
  bottom: -8%;
  width: 23%;
  z-index: 200;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-animation: sway 1.5s ease-in-out infinite;
          animation: sway 1.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .project .kv__pdImg {
    left: 5%;
    bottom: 5%;
    width: 20%;
  }
}

@media (min-width: 996px) {
  .project .kv__pdImg {
    left: 20%;
    bottom: 5%;
    width: 10%;
  }
}

@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes sway {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

.project .prompt {
  position: relative;
  z-index: 10;
}

.project .prompt__wrapper .main-title {
  color: #c574ff;
}

.project .prompt__wrapper .prompt-text {
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}

.project .prompt__wrapper .prompt-text span {
  background: #890be3;
}

.project .prompt__wrapper .prompt-video img {
  margin: 5% auto;
  max-width: 600px;
  width: 100%;
}

.project .prompt__wrapper .prompt-video img:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.project .prompt__wrapper-dialogBox {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 5% 2%;
  margin: 5% 0;
}

.project .prompt__wrapper-dialogBox .inputBox {
  background: #890be3;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  width: 70%;
}

@media (min-width: 996px) {
  .project .prompt__wrapper-dialogBox .inputBox {
    width: 50%;
  }
}

.project .prompt__wrapper-dialogBox .inputBox img {
  height: 15px;
  padding-left: 10px;
}

@media (min-width: 996px) {
  .project .prompt__wrapper-dialogBox .inputBox img {
    padding-left: 20px;
  }
}

.project .prompt__wrapper-dialogBox .outputBox__item {
  background: #fff;
  color: #000;
  display: inline-block;
  border-radius: 5px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3%;
  width: 70%;
}

@media (min-width: 996px) {
  .project .prompt__wrapper-dialogBox .outputBox__item {
    width: 50%;
  }
}

.project .prompt__wrapper-dialogBox .outputBox__item img {
  width: 50%;
  margin: 0 auto;
}

.project .nvidia-block {
  position: relative;
  background: #000;
  margin-top: 50px;
}

@media (min-width: 996px) {
  .project .nvidia-block {
    padding: 10% 50px 15%;
    background-image: url(https://storage-asset.msi.com/event/2024/CN/ai-art-prompt-magician/images/nvidia-img.jpg);
    background-position: center;
    background-size: 95%;
    background-repeat: no-repeat;
  }
}

@media (min-width: 1600px) {
  .project .nvidia-block {
    padding: 12% 50px 12%;
  }
}

@media (min-width: 1930px) {
  .project .nvidia-block {
    padding: 16% 50px 16%;
  }
}

.project .nvidia-block__wrapper {
  position: relative;
  padding: 20px 25px;
  color: #fff;
  text-align: center;
}

@media (min-width: 996px) {
  .project .nvidia-block__wrapper {
    margin-top: 0;
    text-align: left;
  }
}

.project .nvidia-block__wrapper-titleBox h3 {
  font-size: 28px;
  text-shadow: 0 0 10px #000;
}

@media (min-width: 996px) {
  .project .nvidia-block__wrapper-titleBox h3 {
    font-size: 45px;
  }
}

@media (min-width: 1600px) {
  .project .nvidia-block__wrapper-titleBox h3 {
    font-size: 100px;
  }
}

.project .nvidia-block__wrapper-titleBox h5 {
  font-size: 20px;
  text-shadow: 0 0 10px #000;
}

@media (min-width: 996px) {
  .project .nvidia-block__wrapper-titleBox h5 {
    font-size: 24px;
  }
}

@media (min-width: 1600px) {
  .project .nvidia-block__wrapper-titleBox h5 {
    font-size: 58px;
  }
}

.project .nvidia-block__wrapper-textBox {
  font-size: 16px;
  margin: 15px 0;
  text-shadow: 0 0 10px #000;
}

@media (min-width: 996px) {
  .project .nvidia-block__wrapper-textBox {
    width: 25%;
    margin: 30px 0;
  }
}

@media (min-width: 1600px) {
  .project .nvidia-block__wrapper-textBox {
    font-size: 38px;
    width: 58%;
  }
}

.project .nvidia-block__wrapper figure img {
  margin: 0 auto;
  width: 120px;
}

@media (min-width: 996px) {
  .project .nvidia-block__wrapper figure img {
    margin: 0;
    width: 180px;
  }
}

@media (min-width: 1600px) {
  .project .nvidia-block__wrapper figure img {
    width: 250px;
  }
}

@media (min-width: 996px) {
  .project .nvidia-block #nv-img {
    display: none;
  }
}

.project .nvidia-block #nv-img img {
  width: 100%;
}

.project #dialogue-main {
  background: #1a1a1a;
  border: 2px solid #890be3;
  border-radius: 5px;
  padding: 5% 2%;
  margin: 5% 0;
  min-height: 550px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media (min-width: 996px) {
  .project #dialogue-main {
    min-height: 700px;
  }
}

.project #dialogue-main .bubble-line {
  width: 100%;
  margin: 0px;
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project #dialogue-main .bubble-line.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.project #dialogue-main .bubble-line.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.project #dialogue-main .bubble-line.right .bubble-content {
  color: #fff;
  background: #890be3;
}

.project #dialogue-main .bubble-content {
  display: inline-block;
  background: #fff;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 20px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-animation: appearEffect 0.3s ease-out;
          animation: appearEffect 0.3s ease-out;
  width: 100%;
}

@media (min-width: 996px) {
  .project #dialogue-main .bubble-content {
    width: auto;
  }
}

.project #dialogue-main .type-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project #dialogue-main .type-div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: -3px;
}

.project #dialogue-main .type-div > div > div {
  width: 8px;
  height: 8px;
  background-color: #AAA;
  border-radius: 4px;
}

.project #dialogue-main .type-div img {
  margin: 0 auto;
}

.project #dialogue-main .dot-1 > div {
  -webkit-animation: typeingEffect 1.2s infinite;
          animation: typeingEffect 1.2s infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.project #dialogue-main .dot-2 > div {
  -webkit-animation: typeingEffect 1.2s infinite;
          animation: typeingEffect 1.2s infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.project #dialogue-main .dot-3 > div {
  -webkit-animation: typeingEffect 1.2s infinite;
          animation: typeingEffect 1.2s infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes typeingEffect {
  0% {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
  50% {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #888;
  }
  100% {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
}

@keyframes typeingEffect {
  0% {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
  50% {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #888;
  }
  100% {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
}

@-webkit-keyframes appearEffect {
  0% {
    padding: 0px;
  }
  100% {
    padding: 20px;
  }
}

@keyframes appearEffect {
  0% {
    padding: 0px;
  }
  100% {
    padding: 20px;
  }
}

.project .steps {
  position: relative;
  z-index: 10;
  margin: 5% 0 0;
}

@media (min-width: 996px) {
  .project .steps__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.project .steps__wrapper-item {
  width: 100%;
  margin: 10px 0;
  text-align: center;
  background: #fff;
  padding: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 996px) {
  .project .steps__wrapper-item {
    width: 28%;
    margin: 0 10px;
    padding: 2%;
  }
}

.project .steps__wrapper-item .steps-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 5%;
}

@media (min-width: 996px) {
  .project .steps__wrapper-item .steps-title {
    font-size: 45px;
  }
}

.project .steps__wrapper-item .steps-text {
  padding: 5% 25px;
}

.project .steps__wrapper-item .steps-text span {
  color: #890be3;
  font-weight: bold;
}

.project .steps__wrapper-item .steps-text span b {
  background: #890be3;
  color: #fff;
}

.project .steps__wrapper-item figure img {
  margin: 0 auto;
  height: 100px;
}

.project .steps__wrapper-item:nth-child(2) figure img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .project .steps__wrapper-item:nth-child(2) figure img {
    width: auto;
    height: 60px;
  }
}

.project .tc {
  position: relative;
  z-index: 10;
  text-align: center;
}

.project .tc a {
  background: #890be3;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 15px 25px;
  margin: 5% 0;
}

@media (min-width: 996px) {
  .project .tc a {
    font-size: 26px;
  }
}

.project .date {
  position: relative;
  z-index: 10;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0 25px;
}

@media (min-width: 996px) {
  .project .date {
    font-size: 80px;
  }
}

.project .date sup {
  font-size: 16px;
}

@media (min-width: 996px) {
  .project .date sup {
    font-size: 50px;
  }
}

.project .transitionTxt {
  padding: 5% 0;
}

.project .transitionTxt figure {
  width: 60%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.project .transitionTxt__item01 {
  margin-left: auto;
}

.project .prize {
  position: relative;
  padding: 0 0 5%;
  z-index: 10;
  padding: 10% 0 0;
}

@media (min-width: 996px) {
  .project .prize {
    padding: 5% 0 0;
  }
}

.project .prize img {
  width: 100%;
}

.project .prize__wrapper {
  position: relative;
}

.project .prize__wrapper-dec .dec-epic {
  position: absolute;
  top: 3%;
  left: 18%;
  width: 18%;
}

@media (min-width: 996px) {
  .project .prize__wrapper-dec .dec-epic {
    top: 10%;
    left: 30%;
    width: 10%;
  }
}

.project .prize__wrapper-dec .dec-love {
  position: absolute;
  top: 0;
  right: 22%;
  width: 8%;
}

@media (min-width: 996px) {
  .project .prize__wrapper-dec .dec-love {
    top: 3%;
    right: 36%;
    width: 4.5%;
  }
}

.project .prize__wrapper h2 {
  color: #fff;
  position: relative;
  z-index: 20;
  text-shadow: 0 0 10px #000;
}

@media (min-width: 996px) {
  .project .prize__wrapper-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 2%;
  }
}

.project .prize__wrapper-card .prizeBox {
  width: 100%;
  margin: 10px 0;
  text-align: center;
  color: #fff;
  padding: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#305b92));
  background: linear-gradient(#000, #305b92);
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox {
    width: 28%;
    margin: 0 10px;
    padding: 2%;
  }
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox:nth-child(2) {
    width: 50%;
  }
}

.project .prize__wrapper-card .prizeBox__title {
  font-size: 28px;
  font-weight: bold;
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox__title {
    font-size: 40px;
  }
}

.project .prize__wrapper-card .prizeBox__num {
  font-size: 20px;
  font-weight: bold;
  color: #7caeff;
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox__num {
    font-size: 32px;
  }
}

.project .prize__wrapper-card .prizeBox__pd {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox__pd {
    font-size: 24px;
  }
}

@media (min-width: 996px) {
  .project .prize__wrapper-card .prizeBox .prize-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.project .socialMedia {
  padding: 10% 0 0;
}

@media (min-width: 996px) {
  .project .socialMedia {
    padding: 10% 0 0;
  }
}

.project .weapons {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 10% 0 0;
}

@media (min-width: 996px) {
  .project .weapons {
    padding: 5% 0 0;
  }
}

.project .weapons img {
  width: 100%;
}

.project .weapons__wrapper {
  padding: 0 25px 3%;
  position: relative;
}

.project .weapons__wrapper-dec .dec-rtx-super {
  position: absolute;
  top: 10%;
  left: 0;
  width: 20%;
}

@media (min-width: 996px) {
  .project .weapons__wrapper-dec .dec-rtx-super {
    top: 9%;
    left: 18%;
    width: 10%;
  }
}

@media (min-width: 1600px) {
  .project .weapons__wrapper-dec .dec-rtx-super {
    left: 20%;
  }
}

.project .weapons__wrapper-dec .dec-thumb {
  position: absolute;
  top: 2%;
  left: 34%;
  width: 8%;
}

@media (min-width: 996px) {
  .project .weapons__wrapper-dec .dec-thumb {
    top: 4%;
    left: 32%;
    width: 4%;
  }
}

.project .weapons__wrapper h2 {
  color: #fff;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 10px #000;
}

@media (min-width: 996px) {
  .project .weapons__wrapper-slider {
    margin: 20px 0;
  }
}

.project .weapons__wrapper-slider .cardItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  text-align: left;
  background: #fff;
  margin-bottom: 5%;
  padding: 30px 0;
}

@media (min-width: 996px) {
  .project .weapons__wrapper-slider .cardItem {
    margin: 0 10px 0;
    padding: 50px 0;
  }
}

.project .weapons__wrapper-slider .slick-list {
  margin-bottom: 5%;
}

@media (min-width: 996px) {
  .project .weapons__wrapper-slider .slick-list {
    margin-bottom: 3%;
  }
}

.project .guest {
  position: relative;
  padding: 5% 0;
  z-index: 10;
}

.project .guest__wrapper h2 {
  color: #fff;
  position: relative;
  z-index: 10;
}

.project .guest__wrapper figure {
  width: 90%;
  margin: 0 auto;
}

.project .guest__wrapper figure img {
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 996px) {
  .project .guest__wrapper figure img {
    width: auto;
  }
}

.project .gallery__btn {
  text-align: center;
  margin: 20px;
}

.project .gallery__btn a {
  position: relative;
  z-index: 10;
  background: #03f;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 15px 25px;
  margin: 5% 0;
}

@media (min-width: 996px) {
  .project .gallery__btn a {
    font-size: 26px;
  }
}

.project .gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
}

.project .gallery__wrapper-item img {
  border-radius: 15px;
  padding: 0 6px;
  width: 100%;
}

.project .gallery .slick-initialized .slick-slide {
  text-align: center !important;
}

.project .discover {
  position: relative;
  text-align: center;
  z-index: 10;
}

.project .discover img {
  width: 100%;
}

.project .discover img:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.project .discover__wrapper {
  padding: 0 25px 3%;
  position: relative;
}

.project .discover__wrapper h2 {
  color: #fff;
  position: relative;
  z-index: 10;
}

@media (min-width: 996px) {
  .project .discover__wrapper-slider {
    margin: 20px 0;
  }
}

.project .discover__wrapper-slider .cardItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  text-align: left;
  background: #fff;
  margin-bottom: 5%;
  padding: 0;
}

@media (min-width: 996px) {
  .project .discover__wrapper-slider .cardItem {
    margin: 0 10px 0;
    padding: 0;
  }
}

.project .discover__wrapper-slider .cardItem .cardBox__img {
  height: auto;
}

.project .discover__wrapper-slider .cardItem .cardBox__img .card__img {
  width: 100%;
}

.project .discover__wrapper-slider .cardItem .cardBox__content {
  padding: 30px 15px;
}

.project .discover__wrapper-slider .cardItem .cardBox__content .card-title {
  text-align: left;
}

.project .discover__wrapper-slider .slick-list {
  margin-bottom: 5%;
}

@media (min-width: 996px) {
  .project .discover__wrapper-slider .slick-list {
    margin-bottom: 3%;
  }
}

.project .videobox {
  margin: 5% 0;
}

.project .videobox__wrapper {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .project .videobox__wrapper {
    width: 100%;
  }
}

.project .videobox__wrapper-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.project .videobox__wrapper-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=main.css.map */