* {
  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;
}

html.is-popup-open,
body.is-popup-open {
  overflow: hidden;
}

.main-title {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  z-index: 50;
}
@media (min-width: 996px) {
  .main-title {
    font-size: 50px;
  }
}

.subTitle {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 996px) {
  .subTitle {
    font-size: 36px;
  }
}

.main-text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
@media (min-width: 996px) {
  .main-text {
    font-size: 17px;
  }
}

.btnSty {
  display: inline-block;
  padding: 10px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#e8070a), to(#f44701));
  background: linear-gradient(to right, #e8070a, #f44701);
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 20px;
}
@media (min-width: 996px) {
  .btnSty {
    font-size: 16px;
  }
}
.btnSty:hover {
  background: -webkit-gradient(linear, left top, right top, from(#f44701), to(#e8070a));
  background: linear-gradient(to right, #f44701, #e8070a);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.fixed {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 200;
  display: none;
}
.fixed .activeBtn a {
  display: block;
  color: #fff;
  font-size: 13px;
  text-align: center;
  background: url(../images/giveaway-icon.png) no-repeat;
  background-size: cover;
  padding: 15px 30px;
  -webkit-filter: drop-shadow(0 0 0 #6a80ff);
          filter: drop-shadow(0 0 0 #6a80ff);
  -webkit-animation: float 2s linear infinite;
          animation: float 2s linear infinite;
}
@media (min-width: 768px) {
  .fixed .activeBtn a {
    font-size: 17px;
  }
}
.fixed .activeBtn a:hover {
  text-shadow: 0 0 5px #6a80ff;
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.slick-dots {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: -7%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
}
@media (min-width: 996px) {
  .slick-dots {
    bottom: -10%;
  }
}
.slick-dots li {
  margin: 0 10px;
}
.slick-dots li button {
  background: #999;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  font-size: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.slick-dots li button:before {
  content: none;
}
.slick-dots li.slick-active button {
  width: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#a42c10), to(#4552d6));
  background: linear-gradient(to right, #a42c10, #4552d6);
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.popup {
  display: none;
}

.moreInfo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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%;
    max-width: 1000px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
  }
}
.moreInfo-popup__wrapper-content {
  position: relative;
  --cut-size: clamp(50px, 3vw, 40px);
  color: #fff;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  border: 2px solid rgb(0, 0, 0);
  background: linear-gradient(120deg, #912708, #000 80%);
  overflow: scroll;
  max-height: 90vh;
  scrollbar-width: none;
  clip-path: polygon(0 0, calc(100% - var(--cut-size)) 0, 100% var(--cut-size), 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .moreInfo-popup__wrapper-content {
    --cut-size: clamp(85px, 3vw, 40px);
  }
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-content {
    --cut-size: clamp(80px, 3vw, 40px);
  }
}
.moreInfo-popup__wrapper .innerWrapper {
  position: relative;
  padding: 20px 20px 40px;
  overflow: hidden;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper {
    padding: 20px 50px 60px;
  }
}
.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%;
  z-index: -1;
}
.moreInfo-popup__wrapper .innerWrapper__block {
  margin-top: 20px;
}
.moreInfo-popup__wrapper .innerWrapper__block ul.textBox {
  padding-left: 20px;
  margin: 20px 0;
}
.moreInfo-popup__wrapper .innerWrapper__block ul.textBox b {
  display: block;
}
.moreInfo-popup__wrapper .innerWrapper__block ul.textBox li {
  list-style: disc;
  text-align: left;
  margin-bottom: 10px;
}
.moreInfo-popup__wrapper .innerWrapper .popup-top__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-top__block {
    gap: 15px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-top__icon {
  width: 25%;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-top__icon {
    width: 12%;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-top__icon img {
  width: 100%;
}
.moreInfo-popup__wrapper .innerWrapper .popup-top__txt {
  width: 70%;
  text-align: left;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-top__txt {
    width: 80%;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-title {
    font-size: 30px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-text {
    font-size: 17px;
    margin: 10px 0 30px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-note {
  color: #fff;
  font-size: 12px;
  margin: 20px 0 10px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-note {
    font-size: 13px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-bottom-gap: 20px;
}
.moreInfo-popup__wrapper .innerWrapper .popup-middle__card {
  text-align: center;
  width: 50%;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-middle__card {
    width: 50%;
  }
}
.moreInfo-popup__wrapper .innerWrapper .featureBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .featureBlock {
    margin-bottom: 50px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .featureBlock__item {
  text-align: center;
  width: calc((100% - 32px) / 2);
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .featureBlock__item {
    width: calc((100% - 32px) / 3);
  }
}
.moreInfo-popup__wrapper .innerWrapper .featureBlock__item h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .featureBlock__item h6 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-middle.marginSty {
  margin-bottom: 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-middle.marginSty {
    margin-bottom: 50px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-middle__card.fullWidthSty {
  width: 100%;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-middle__card.fullWidthSty {
    width: 80%;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-tag {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  background: #fff;
  color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff3f7a), to(#4966ff));
  background-image: linear-gradient(to right, #ff3f7a, #4966ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  border-radius: 2px;
  padding: 8px 14px;
  margin-bottom: 20px;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper .innerWrapper .popup-tag {
    display: inline-block;
    width: auto;
    min-width: 280px;
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.moreInfo-popup__wrapper .innerWrapper .popup-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.moreInfo-popup__wrapper .innerWrapper .popup-img img {
  width: 100%;
}
.moreInfo-popup__wrapper .innerWrapper .popup-bottom {
  text-align: center;
  margin-top: 10px;
}
.moreInfo-popup__wrapper-closebox {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  margin-left: auto;
  width: 11%;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 996px) {
  .moreInfo-popup__wrapper-closebox {
    width: 7%;
  }
  .moreInfo-popup__wrapper-closebox span {
    font-size: 40px;
  }
}
.moreInfo-popup__wrapper-closebox:hover {
  cursor: pointer;
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.project {
  position: relative;
  overflow: hidden;
}

img {
  display: block;
}

figure {
  margin: 0;
  padding: 0;
}

.kv {
  width: 100%;
  position: relative;
}

.x36-sub-group {
  max-width: 1280px;
  margin: 50px auto 0;
  color: #fff;
  padding: 0 10px;
  background: #525252;
}
@media (min-width: 996px) {
  .x36-sub-group {
    padding: 0 20px;
  }
}

.sub-feature-nav {
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 991px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sub-feature-nav li {
  cursor: pointer;
  border: 1px solid #444;
  font-weight: 700;
  background: #111;
  text-transform: uppercase;
  color: #ddd;
  padding: 10px 16px;
  min-width: 180px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  font-size: 16px;
}
@media (min-width: 996px) {
  .sub-feature-nav {
    font-size: 18px;
  }
}
.sub-feature-nav.active::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e81f76;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sub-feature {
  display: none;
}
.sub-feature {
  display: block;
}

.msiText {
  line-height: 1.7;
  font-size: 12px;
  margin: 15px 0;
}
@media (min-width: 996px) {
  .msiText {
    font-size: 14px;
  }
}

.hdrCustomization,
.ownColor,
.ultrawide {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.hdrCustomization__txtbox,
.ownColor__txtbox,
.ultrawide__txtbox {
  max-width: 980px;
  margin: 0 auto 20px;
}

.hdrCustomization__btn a {
  background: #cd26f9;
  color: #fff;
  padding: 6px 28px 10px;
  display: inline-block;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.hdrCustomization__btn a:hover {
  -webkit-filter: drop-shadow(0 0 5px #cd26f9);
          filter: drop-shadow(0 0 5px #cd26f9);
}

.hdrCustomization__flex {
  margin: 28px auto 0;
}
@media (min-width: 996px) {
  .hdrCustomization__flex {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }
}

.hdrCustomization__flex div {
  margin-bottom: 30px;
}
@media (min-width: 996px) {
  .hdrCustomization__flex div {
    margin-bottom: 0;
  }
}

.hdrCustomization__flex-title {
  margin: 0 0 8px;
}

.hdrCustomization video {
  width: 100%;
  margin: 16px auto;
}

.hdrCustomization figure img,
.ownColor__main img,
.ultrawide__img img {
  width: 100%;
  height: auto;
}

.ownColor__main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

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

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ultrawide__img {
  margin-top: 30px;
  position: relative;
}

figure {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}
figure.base {
  z-index: 1;
}
figure.width {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-animation: fadeInOut 3s ease-in-out infinite;
          animation: fadeInOut 3s ease-in-out infinite;
}
figure figcaption {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 3%;
  color: #cd26f9;
  font-size: 24px;
}

.hdrCustomization__flex {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}/*# sourceMappingURL=uniform-uminance.css.map */