* {
  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 0.75s ease-out;
  transition: all 0.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 0.5s ease-out;
  transition: all 0.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 0.5s ease-out;
  transition: all 0.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 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.main-title {
  font-size: var(--title-xl);
  padding-bottom: 10px;
  text-align: center;
  color: var(--color-white);
}

p {
  color: var(--color-white);
}

.btnSty {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}
.btnSty img {
  height: 50px;
}
.btnSty__middle {
  background-image: url(../images/btn-bg-middle.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.btnSty__middle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--color-white);
  font-weight: 500;
  display: inline-block;
  border-radius: 6px;
  letter-spacing: 1px;
  z-index: 10;
  width: 90%;
  text-align: center;
}
.btnSty:hover {
  text-shadow: 0 0 10px #044670;
  -webkit-filter: drop-shadow(0 0 10px #044670);
          filter: drop-shadow(0 0 10px #044670);
}

.hatch-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2%;
  z-index: 20;
  width: 30px;
  opacity: 0.8;
  -webkit-filter: drop-shadow(0 0 5px #f3f3f3);
          filter: drop-shadow(0 0 5px #f3f3f3);
}
@media (min-width: 996px) {
  .hatch-prev {
    left: 0%;
    width: 50px;
  }
}
.hatch-prev:hover {
  cursor: pointer;
  opacity: 1;
}

.hatch-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 2%;
  z-index: 20;
  width: 30px;
  opacity: 0.8;
  -webkit-filter: drop-shadow(0 0 5px #f3f3f3);
          filter: drop-shadow(0 0 5px #f3f3f3);
}
@media (min-width: 996px) {
  .hatch-next {
    right: 0%;
    width: 50px;
  }
}
.hatch-next:hover {
  cursor: pointer;
  opacity: 1;
}

.mainarea__block-05 {
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.99;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
  }
}
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.99;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
  }
}
@-webkit-keyframes verticle-flow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
@keyframes verticle-flow {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
#moreInfo-popup-modal01, #moreInfo-popup-modal02, #moreInfo-popup-modal03, #moreInfo-popup-modal04, #moreInfo-popup-modal05, #moreInfo-popup-modal06 {
  display: none;
}

.moreInfo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.moreInfo-popup__wrapper {
  width: 90%;
  max-width: 1280px;
  top: 44%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  margin: 50px auto;
  max-height: 90%;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
  }
}
.moreInfo-popup__wrapper .innerWrapper {
  position: relative;
}
.moreInfo-popup__wrapper .innerWrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 99.5%;
  height: 99.7%;
  background: -webkit-gradient(linear, left top, left bottom, from(#031626), color-stop(40%, #000));
  background: linear-gradient(#031626, #000 40%);
  z-index: -1;
}
.moreInfo-popup__wrapper-content {
  position: relative;
  color: #fff;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(#031626), color-stop(18%, #000));
  background: linear-gradient(#031626, #000 18%);
  overflow: scroll;
  max-height: 90vh;
  scrollbar-width: none;
}
.moreInfo-popup__wrapper-content .item .item-subTitle {
  font-size: 14px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .item .item-subTitle {
    font-size: 18px;
  }
}
.moreInfo-popup__wrapper-content .item .item-title {
  font-size: 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .item .item-title {
    font-size: 24px;
  }
}
.moreInfo-popup__wrapper-content .item .item-text {
  font-size: 16px;
}
.moreInfo-popup__wrapper-content .item__contentBox-block {
  margin-bottom: 15px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(1) {
  text-align: center;
  margin: 50px 0;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(1) {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(1) figure {
  width: 35%;
  margin: 0 auto 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(1) figure {
    width: 22%;
    margin: 0 50px 0 0;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(2) {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(2) .item-subTitle {
  margin-bottom: 5px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(2) .item-title {
  margin-bottom: 15px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(2) .item__contentBox {
  padding: 0 10px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(2) .item__contentBox {
    padding: 0;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) {
  position: relative;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) {
    margin: 0;
    display: block;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item {
  padding-top: 50px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item__contentBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item__contentBox {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 38%;
    padding: 0;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item__contentBox .item-subTitle {
  margin-bottom: 5px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item__contentBox .item-title {
  margin-bottom: 15px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(1) .item:nth-child(3) .item__imgBox {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) {
  background-image: url(https://storage-asset.msi.com/event/2025/GNP/new-gen/images/moreInfo-popup-modal-bg.jpg);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) {
    background-size: cover;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(1) {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(1) .item-subTitle {
  margin-bottom: 5px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(1) .item-title {
  margin-bottom: 15px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(1) .item__imgBox {
  width: 60%;
  margin: 20px auto 0;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) {
  position: relative;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) {
    margin: 0;
    display: block;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) .item__contentBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  padding: 0 10px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) .item__contentBox {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 38%;
    padding: 0;
  }
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) .item__contentBox .item-subTitle {
  margin-bottom: 5px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) .item__contentBox .item-title {
  margin-bottom: 15px;
}
.moreInfo-popup__wrapper-content .innerWrapper__block:nth-child(2) .item:nth-child(2) .item__imgBox {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.moreInfo-popup__wrapper-closebox {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  margin-left: auto;
  width: 25px;
  z-index: 100;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-closebox {
    width: 30px;
  }
}
.moreInfo-popup__wrapper-closebox img {
  width: 100%;
  -webkit-filter: contrast(0.5);
          filter: contrast(0.5);
}
.moreInfo-popup__wrapper-closebox img:hover {
  cursor: pointer;
  -webkit-filter: contrast(0);
          filter: contrast(0);
}

#moreInfo-popup-modal02 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal03 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal04 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal05 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal06 .moreInfo-popup__wrapper-content .item__contentBox {
  max-width: 750px;
  margin: 50px auto;
  text-align: center;
  padding: 0 10px;
}
@media (min-width: 996px) {
  #moreInfo-popup-modal02 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal03 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal04 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal05 .moreInfo-popup__wrapper-content .item__contentBox, #moreInfo-popup-modal06 .moreInfo-popup__wrapper-content .item__contentBox {
    padding: 0;
  }
}
#moreInfo-popup-modal02 .moreInfo-popup__wrapper-content .item__contentBox .item-subTitle, #moreInfo-popup-modal03 .moreInfo-popup__wrapper-content .item__contentBox .item-subTitle, #moreInfo-popup-modal04 .moreInfo-popup__wrapper-content .item__contentBox .item-subTitle, #moreInfo-popup-modal05 .moreInfo-popup__wrapper-content .item__contentBox .item-subTitle, #moreInfo-popup-modal06 .moreInfo-popup__wrapper-content .item__contentBox .item-subTitle {
  margin-bottom: 5px;
}
#moreInfo-popup-modal02 .moreInfo-popup__wrapper-content .item__contentBox .item-title, #moreInfo-popup-modal03 .moreInfo-popup__wrapper-content .item__contentBox .item-title, #moreInfo-popup-modal04 .moreInfo-popup__wrapper-content .item__contentBox .item-title, #moreInfo-popup-modal05 .moreInfo-popup__wrapper-content .item__contentBox .item-title, #moreInfo-popup-modal06 .moreInfo-popup__wrapper-content .item__contentBox .item-title {
  margin-bottom: 15px;
}

html {
  scroll-behavior: smooth;
}

.project {
  position: relative;
  overflow: hidden;
  background: #000;
}
.project img {
  display: block;
}
.project figure {
  margin: 0;
  padding: 0;
}
.project .contentScope {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70.8vw;
  height: 39vw;
  z-index: 100;
}
.project .hideSty {
  display: none;
}
.project .kv {
  position: relative;
}
.project .kv img {
  width: 100%;
}
.project .kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.project .kv__bg figure {
  width: 100%;
}
.project .kv__bg-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: blink 1s linear infinite alternate;
          animation: blink 1s linear infinite alternate;
}
.project .kv__pd {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.project .kv .mainarea__block {
  position: relative;
  height: 250px;
}
@media (min-width: 768px) {
  .project .kv .mainarea__block {
    height: 400px;
  }
}
@media (min-width: 996px) {
  .project .kv .mainarea__block {
    height: auto;
  }
}
.project .kv .mainarea__block::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: linear-gradient(to top, #000, transparent);
  z-index: 10;
}
@media (min-width: 996px) {
  .project .kv .mainarea__block::before {
    bottom: 0;
  }
}
.project .kv .mainarea__block .mainarea__block-01, .project .kv .mainarea__block .mainarea__block-02, .project .kv .mainarea__block .mainarea__block-03, .project .kv .mainarea__block .mainarea__block-04, .project .kv .mainarea__block .mainarea__block-05 {
  width: 100%;
}
.project .kv__nvLogo {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 25%;
  z-index: 20;
}
@media (min-width: 996px) {
  .project .kv__nvLogo {
    top: 10%;
    right: 14%;
    width: 10%;
  }
}
@media (min-width: 996px) {
  .project .kv__content {
    margin-top: 0;
  }
}
.project .kv__content-title {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  z-index: 10;
}
@media (min-width: 996px) {
  .project .kv__content-title {
    width: 55%;
    position: absolute;
    top: 65%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 0;
  }
}
.project .kv__content-title h2, .project .kv__content-title h5 {
  color: var(--color-white);
}
.project .kv__content-title h2 {
  font-family: var(--fontA);
  font-size: 24px;
  text-shadow: 0 0 10px #044670;
  -webkit-filter: drop-shadow(0 0 10px #044670);
          filter: drop-shadow(0 0 10px #044670);
}
@media (min-width: 996px) {
  .project .kv__content-title h2 {
    font-size: 2.4vw;
  }
}
.project .kv__content-title h5 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (min-width: 996px) {
  .project .kv__content-title h5 {
    font-size: 1vw;
  }
}
.project .kv__content-intro {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 996px) {
  .project .kv__content-intro {
    position: absolute;
    top: 75%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 1600px) {
  .project .kv__content-intro {
    width: 55%;
  }
}
.project .kv__content-intro h4, .project .kv__content-intro p {
  color: var(--color-white);
}
.project .kv__content-intro h4 {
  font-family: var(--fontA);
  font-size: 12px;
  padding-bottom: 10px;
  text-shadow: 0 0 10px #044670;
  -webkit-filter: drop-shadow(0 0 10px #044670);
          filter: drop-shadow(0 0 10px #044670);
}
@media (min-width: 996px) {
  .project .kv__content-intro h4 {
    font-size: 1.4vw;
    padding-bottom: 20px;
  }
}
.project .features {
  position: relative;
  padding: 50px 0;
  background: url("/images/features-bg.jpg");
  background-size: cover;
  background-position: initial;
  background-repeat: no-repeat;
  word-break: break-word;
}
@media (min-width: 996px) {
  .project .features {
    padding: 100px 0;
    background-position: center;
  }
}
.project .features__wrapper .main-text {
  width: 100%;
  text-align: center;
}
@media (min-width: 1600px) {
  .project .features__wrapper .main-text {
    width: 55%;
    margin: 0 auto;
  }
}
.project .features__wrapper-content {
  position: relative;
  margin: 50px auto;
  width: 80%;
}
@media (min-width: 768px) {
  .project .features__wrapper-content {
    width: 50%;
  }
}
@media (min-width: 996px) {
  .project .features__wrapper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.project .features__wrapper-content .cardItem {
  padding: 0 0 10px;
  width: 100%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#031626), color-stop(80%, #000));
  background: linear-gradient(#031626, #000 80%);
  -o-border-image: linear-gradient(#898989, #ffffff, #898989, #ffffff, #898989) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#898989), color-stop(#ffffff), color-stop(#898989), color-stop(#ffffff), to(#898989)) 1;
     border-image: linear-gradient(#898989, #ffffff, #898989, #ffffff, #898989) 1;
  border-width: 1px;
  border-style: solid;
}
@media (min-width: 996px) {
  .project .features__wrapper-content .cardItem {
    margin: 0 5px;
    width: 18%;
  }
}
.project .features__wrapper-content .cardItem:hover {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 15px #0089ff;
  box-shadow: inset 0 0 15px #0089ff;
}
.project .features__wrapper-content .cardItem p {
  text-align: center;
  color: #898989;
}
.project .features__wrapper-content .cardItem__tag {
  padding-top: 20px;
}
.project .features__wrapper-content .cardItem__MainImg {
  padding: 20px 0;
}
.project .features__wrapper-content .cardItem__MainImg img {
  width: 100%;
}
.project .features__wrapper-content .cardItem__title {
  font-size: 16px;
}
.project .features__wrapper-content .cardItem__openIcon {
  width: 20px;
  margin: 0 auto;
  padding-top: 15px;
}
@media (min-width: 996px) {
  .project .features__wrapper-content .cardItem:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    height: -webkit-fill-available;
  }
}
@media (min-width: 996px) {
  .project .features__wrapper-content .cardItem:nth-child(6) {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    height: -webkit-fill-available;
  }
}
.project .features__wrapper-content .cardItem:nth-child(2) {
  -webkit-box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.85);
          box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.85);
  z-index: 10;
}
.project .features__wrapper-content .cardItem:nth-child(2):hover {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 20px #0089ff;
  box-shadow: inset 0 0 20px #0089ff;
}
.project .features__wrapper-content .cardItem:nth-child(5) {
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.85);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.85);
  z-index: 10;
}
.project .features__wrapper-content .cardItem:nth-child(5):hover {
  cursor: pointer;
  -webkit-box-shadow: inset 0 0 20px #0089ff;
  box-shadow: inset 0 0 20px #0089ff;
}
.project .features__wrapper-content .cardItem:nth-child(3), .project .features__wrapper-content .cardItem:nth-child(4), .project .features__wrapper-content .cardItem:nth-child(5) {
  z-index: 10;
}
.project .features__wrapper-content .cardItem__bottomBox {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.project .seriesIntro {
  position: relative;
  padding: 50px 0;
}
.project .seriesIntro__wrapper {
  color: rgba(255, 255, 255, 0.5);
}
.project .seriesIntro__wrapper-nav {
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.project .seriesIntro__wrapper-nav .item {
  text-align: center;
}
.project .seriesIntro__wrapper-nav .item:hover {
  cursor: pointer;
}
.project .seriesIntro__wrapper-nav .slick-current {
  color: rgb(255, 255, 255);
}
.project .seriesIntro__wrapper-nav .slick-current .item {
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
  width: 100%;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-nav .slick-current .item {
    width: auto;
  }
}
.project .seriesIntro__wrapper-content .slick-list {
  overflow: initial;
}
.project .seriesIntro__wrapper-content .block {
  width: 100%;
}
.project .seriesIntro__wrapper-content .block .slick-dots {
  bottom: -5%;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block .slick-dots {
    bottom: 10%;
  }
}
.project .seriesIntro__wrapper-content .block .slick-dots li {
  margin: 0 5px;
}
.project .seriesIntro__wrapper-content .block .slick-dots li button {
  background: #000;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block .slick-dots li button {
    width: 15px;
    height: 15px;
  }
}
.project .seriesIntro__wrapper-content .block .slick-dots li button:hover {
  -webkit-box-shadow: 0 0 10px #19a6ff;
          box-shadow: 0 0 10px #19a6ff;
  -webkit-filter: drop-shadow(0px 0px 10px #19a6ff);
          filter: drop-shadow(0px 0px 10px #19a6ff);
  -webkit-box-shadow: 0 0 15px #00fffa;
          box-shadow: 0 0 15px #00fffa;
}
.project .seriesIntro__wrapper-content .block .slick-dots li button::before {
  content: "";
}
.project .seriesIntro__wrapper-content .block .slick-dots li.slick-active button {
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 10px #19a6ff;
          box-shadow: 0 0 10px #19a6ff;
  -webkit-filter: drop-shadow(0px 0px 15px #19a6ff);
          filter: drop-shadow(0px 0px 15px #19a6ff);
}
.project .seriesIntro__wrapper-content .block__item {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item {
    display: block;
  }
}
.project .seriesIntro__wrapper-content .block__item-pd {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item-pd {
    width: 100%;
    margin-left: 0;
  }
}
.project .seriesIntro__wrapper-content .block__item-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
  }
}
.project .seriesIntro__wrapper-content .block__item .innerWrapper {
  width: 100%;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item .innerWrapper {
    width: 40%;
    padding: 0 25px;
  }
}
@media (min-width: 1600px) {
  .project .seriesIntro__wrapper-content .block__item .innerWrapper {
    padding: 0;
  }
}
.project .seriesIntro__wrapper-content .block__item .iconBox {
  width: 50%;
  margin: 0 auto;
}
.project .seriesIntro__wrapper-content .block__item .txtBox {
  position: relative;
  text-align: center;
  margin: 10px 0 30px;
  background: url(https://storage-asset.msi.com/event/2025/GNP/new-gen/images/series-intro-title-bg.png);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item .txtBox {
    margin: 30px 0;
  }
}
.project .seriesIntro__wrapper-content .block__item .txtBox h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item .txtBox h3 {
    font-size: 24px;
  }
}
.project .seriesIntro__wrapper-content .block__item .txtBox p {
  font-size: 16px;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.project .seriesIntro__wrapper-content .block__item .btnBox .btnSty {
  margin: 10px 0;
}
@media (min-width: 996px) {
  .project .seriesIntro__wrapper-content .block__item .btnBox .btnSty {
    margin: 20px 0;
  }
}
.project .seriesIntro__wrapper-content #lightning-series .btnBox, .seriesIntro__wrapper-content #inspire-series .btnBox, .project .seriesIntro__wrapper-content #ventus-series .btnBox, .project .seriesIntro__wrapper-content #shadow-series .btnBox {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.project .seriesIntro__wrapper .hatch-prev, .project .seriesIntro__wrapper .hatch-next {
  top: 30%;
  z-index: 100;
}
.project .campaign {
  position: relative;
  padding: 50px 0;
  background: url("https://storage-asset.msi.com/event/2025/GNP/new-gen/images/campaign-bg.jpg");
  background-size: cover;
  background-position: initial;
  background-repeat: no-repeat;
  word-break: break-word;
}
@media (min-width: 996px) {
  .project .campaign {
    padding: 100px 0;
    background-position: center;
  }
}
.project .campaign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: linear-gradient(to top, #000, transparent);
  z-index: 0;
}
@media (min-width: 1930px) {
  .project .campaign::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #000), to(transparent));
    background: linear-gradient(to bottom, #000 30%, transparent);
  }
}
.project .campaign__text {
  position: relative;
  z-index: 1;
}
.project .campaign__text-box {
  margin-bottom: 50px;
}
.project .campaign__text-box h5 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
}
@media (min-width: 996px) {
  .project .campaign__text-box h5 {
    font-size: 22px;
  }
}
.project .campaign__text-box p {
  text-align: center;
}
@media (min-width: 996px) {
  .project .campaign__text-box p span {
    display: block;
  }
}
.project .campaign__text-box p b {
  color: #89f9fd;
  font-weight: bold;
}
.project .campaign__text-box .date {
  color: #89f9fd;
}
.project .campaign .prizes {
  padding: 50px 0 0;
}
.project .campaign .prizes__imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.project .campaign .prizes__imgBox figure {
  width: 33%;
  margin: 0 10px;
  opacity: 0.8;
  overflow: hidden;
  display: block;
}
@media (min-width: 996px) {
  .project .campaign .prizes__imgBox figure {
    margin: 0 20px;
  }
}
.project .campaign .prizes__imgBox figure:nth-child(2) {
  margin: 0;
}
@media (min-width: 996px) {
  .project .campaign .prizes__imgBox figure:nth-child(2) {
    margin: 0 10px;
  }
}
.project .campaign .prizes__imgBox figure:hover {
  opacity: 1;
  text-shadow: 0 0 10px #044670;
  -webkit-filter: drop-shadow(0 0 10px #044670);
          filter: drop-shadow(0 0 10px #044670);
}
.project .campaign .prizes__imgBox figure:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.project .campaign .prizes__imgBox figure img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.project .campaign .prizes .note {
  display: block;
  font-size: var(--note-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  text-align: center;
}
.project .campaign .prizes .note:hover {
  cursor: pointer;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.5);
}
.project .campaign__video {
  z-index: 1;
}
.project .campaign__video-item {
  width: 100%;
}
.project .campaign__video-item .videobox-wrapper {
  width: 90%;
  margin: 0 auto;
}
.project .campaign__video-item .videobox-wrapper__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.project .campaign__video-item .videobox-wrapper__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project .contact {
  position: relative;
  padding: 50px 0;
  background: url("https://storage-asset.msi.com/event/2025/GNP/new-gen/images/form-bg.jpg");
  background-size: cover;
  background-position: initial;
  background-repeat: no-repeat;
}
@media (min-width: 996px) {
  .project .contact {
    padding: 100px 0;
    background-position: center;
  }
}
.project .contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #000), to(transparent));
  background: linear-gradient(to bottom, #000 60%, transparent);
}
.project .contact__text p {
  text-align: center;
}
.project .contact #ems-form-uid {
  color: var(--color-white);
}
.project .contact #ems-form-uid .ems__form {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.project .contact #ems-form-uid .ems__form .ems__item {
  width: 90%;
}
@media (min-width: 996px) {
  .project .contact #ems-form-uid .ems__form .ems__item {
    width: calc(50% - 20px);
  }
}
.project .contact #ems-form-uid .ems__send {
  padding: 0 0 40px;
}
@media (min-width: 996px) {
  .project .contact #ems-form-uid .ems__send {
    padding: 20px 0 40px;
  }
}
.project .contact #ems-form-uid .ems__send button {
  border: none;
  background: none;
  color: var(--color-white);
  background-image: url(https://storage-asset.msi.com/event/2025/GNP/new-gen/images/btn-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 50px 50px;
  width: 250px;
  min-width: 250px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  word-break: break-all;
}
.project .contact #ems-form-uid .ems__send button:hover {
  text-shadow: 0 0 10px #044670;
  -webkit-filter: drop-shadow(0 0 10px #044670);
          filter: drop-shadow(0 0 10px #044670);
}
.project .contact #ems-form-uid .ems a {
  color: var(--color-red-500);
}
.project .contact #ems-form-uid .ems input {
  color: var(--color-white);
}
.project .follow {
  text-align: center;
}
.project .follow a {
  margin: 5px;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
}
.project .follow a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.project .follow img {
  height: 30px;
  -webkit-transition: 0.1s all ease-in;
  transition: 0.1s all ease-in;
}/*# sourceMappingURL=main.css.map */