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

html {
  scroll-behavior: smooth;
}

.project {
  position: relative;
  overflow: hidden;
}
.project img {
  display: block;
}
.project figure {
  margin: 0;
  padding: 0;
}
.project .kv {
  width: 100%;
  position: relative;
}
.project .kv__content {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75%;
}
@media (min-width: 996px) {
  .project .kv__content {
    top: 50%;
    left: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 25%;
  }
}
.project .kv__content h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .project .kv__content h2 {
    font-size: 32px;
  }
}
@media (min-width: 996px) {
  .project .kv__content h2 {
    font-size: 3vw;
  }
}
.project .kv__content p {
  font-size: 16px;
  color: #000;
}
@media (min-width: 768px) {
  .project .kv__content p {
    font-size: 20px;
  }
}
@media (min-width: 996px) {
  .project .kv__content p {
    font-size: 1.1vw;
  }
}
.project .formBox {
  position: relative;
  padding: 30px 0;
  background-image: url("https://storage-asset.msi.com/event/2025/TW/employee-purchase-program/images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.project .formBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 996px) {
  .project .formBox {
    padding: 50px 0;
  }
}
.project .formBox__wrapper {
  padding: 50px 25px 0;
  border-radius: 10px;
  background: #fff;
  width: 90%;
  -webkit-box-shadow: 0 0 20px #e8e8e8;
          box-shadow: 0 0 20px #e8e8e8;
}
@media (min-width: 996px) {
  .project .formBox__wrapper {
    padding: 50px 0 5px;
    width: 100%;
  }
}
@media (min-width: 996px) {
  .project .formBox__wrapper .ems__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.project .formBox__wrapper .ems__form .ems__item {
  padding-bottom: 20px;
}
@media (min-width: 996px) {
  .project .formBox__wrapper .ems__form .ems__item {
    width: calc(50% - 20px);
  }
}
.project .formBox__wrapper .ems-form--checkbox li label {
  display: block;
}
@media (min-width: 996px) {
  .project .formBox__wrapper .ems-form--checkbox li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.project .formBox__wrapper .ems__tc a {
  margin: 0 5px;
}
.project .formBox__wrapper .radioBox li {
  padding: 0 0 8px;
  width: 100%;
}
.project .formBox__wrapper .ems-form--radio label {
  display: inline-block;
}
.project .popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.project .popup__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  text-align: center;
  -webkit-box-shadow: 0 0 10px #e8e8e8;
          box-shadow: 0 0 10px #e8e8e8;
}
@media (min-width: 996px) {
  .project .popup__wrapper {
    width: 50%;
    padding: 50px;
  }
}
.project .popup__wrapper h2 {
  margin-bottom: 20px;
}
.project .popup__wrapper button {
  margin: 20px 0 0;
  color: #fff;
  border: 1px solid #999999;
  background: #999999;
  padding: 10px 30px;
  border-radius: 5px;
}
.project .popup__wrapper button:hover {
  background: transparent;
  color: #656565;
  border: 1px solid #656565;
}/*# sourceMappingURL=main.css.map */