.about {
  --article-borderPadding: 40px;
  --screen-wd: 1280px;
  --content-wd: 900px;
  --line-height-xl: 1.8;
  --line-height-lg: 1.5;
  --line-height-md: 1.2;
  --element-padding-xl: 35px;
  --element-padding-lg: 25px;
  --element-padding-md: 20px;
  font-size: 18px;
  overflow-x: hidden;
}
@media (min-width: 996px) {
  .about {
    --article-borderPadding: 120px;
  }
}
.about img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  object-fit: cover;
}
.about picture {
  display: block;
}
.about .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.about .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}
.about .mobile-only {
  display: inline;
}
@media (min-width: 996px) {
  .about .mobile-only {
    display: none;
  }
}
.about .desktop-only {
  display: none;
}
@media (min-width: 996px) {
  .about .desktop-only {
    display: inline;
  }
}
.about abbr[title] {
  text-decoration: none;
  border-bottom: none;
  cursor: inherit;
}

.common-intro {
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 0 25px;
  text-align: center;
}
.common-title {
  text-align: center;
}
@media (min-width: 996px) {
  .common-title--left {
    text-align: left;
    max-width: none;
  }
}
.common-title__subTitle {
  font-size: var(--title-md);
  color: var(--color-gray-600);
  padding-bottom: 10px;
}
.common-title__title {
  font-size: var(--title-xl);
  padding-bottom: 35px;
}
.common-title__desc {
  line-height: var(--line-height-xl);
  padding-bottom: 35px;
}
@media (min-width: 996px) {
  .common-title__desc {
    font-size: 18px;
  }
}
.common-summary {
  text-align: center;
  font-size: 17px;
  width: 100%;
  margin: 0 auto;
  max-width: var(--content-wd);
}
@media (min-width: 996px) {
  .common-summary {
    font-size: 18px;
  }
}
.common-summary p {
  padding-bottom: 25px;
  line-height: var(--line-height-xl);
}
.common-summary p:last-child {
  padding-bottom: 0;
}
.common-summary p.slogan {
  display: block;
  font-weight: bold;
  font-style: italic;
  padding-bottom: 10px;
  font-size: 20px;
}
.common-action {
  padding-top: 35px;
  text-align: center;
}
@media (min-width: 996px) {
  .common-action--left {
    text-align: left;
  }
}
.common-action-link {
  display: inline-block;
  padding: 15px 35px;
  border: var(--color-gray-300) 1px solid;
  border-radius: 4px;
  color: var(--color-gray-800);
  background: var(--color-white);
  font-size: var(--link-sm);
}
.common-action-link:hover {
  color: var(--color-red-400);
  border-color: var(--color-red-400);
}
.common-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 25px;
}
@media (min-width: 996px) {
  .common-container {
    padding: 0;
  }
}

.menu {
  position: relative;
  background: var(--color-gray-200);
}
.menu::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to left, var(--color-gray-600) 0%, var(--color-gray-600) 80%, #222);
}
.menu::after {
  content: "\ea11";
  font-family: "msi-icons";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media (min-width: 996px) {
  .menu::after {
    display: none;
  }
}
.menu__box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: var(--screen-wd);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-gray-200);
  height: 60px;
}
.menu-title {
  position: relative;
  flex: 0 0 140px;
}
.menu-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-gray-600);
}
.menu-title::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  transform: translateY(-50%);
  border-color: transparent transparent transparent var(--color-gray-600);
  border-style: solid;
  border-width: 30px 0 30px 30px;
}
.menu-title__title {
  position: relative;
  font-size: var(--title-md);
  color: var(--color-white);
  padding-left: 25px;
}
@media (min-width: 1600px) {
  .menu-title__title {
    padding: 0;
  }
}
.menu-nav {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 100%;
  z-index: 100;
  background: #fff;
  padding: 25px;
}
@media (min-width: 996px) {
  .menu-nav {
    display: block;
    position: relative;
    width: auto;
    top: auto;
    padding: 0;
    background: none;
  }
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 996px) {
  .menu-list {
    flex-direction: row;
  }
  .menu-list li.has-sub {
    position: relative;
  }
}
.menu-list li {
  padding: 10px 0;
  cursor: pointer;
}
@media (min-width: 996px) {
  .menu-list li {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 70px;
    padding: 0;
  }
}
.menu-list a, .menu-list button {
  color: var(--color-gray-600) !important;
  font-family: inherit !important;
  font-weight: bold !important;
  appearance: none;
  font-size: var(--text-md) !important;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.menu-sub-list {
  margin-left: 20px;
  padding-top: 10px;
}
@media (min-width: 996px) {
  .menu-sub-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 200%;
    margin-left: 0;
    padding-top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .menu-sub-list li {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding: 0;
    height: auto;
  }
  .menu-sub-list li a {
    display: block;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-weight: normal !important;
    font-size: var(--text-sm) !important;
  }
  .menu-sub-list li a:hover {
    background: var(--color-gray-100);
  }
}
.menu-sub-label::after {
  content: "\ea11";
  font-family: "msi-icons";
}

.filter-select {
  position: relative;
}
.filter-select__label {
  position: relative;
  padding: 5px 40px;
  border-bottom: var(--color-gray-200) 1px solid;
  width: 100%;
}
.filter-select__label::before {
  position: absolute;
  content: "\f016";
  font-family: "msi-icons";
  pointer-events: none;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-gray-600);
}
.filter-select__label::after {
  position: absolute;
  content: "\ea11";
  font-family: "msi-icons";
  pointer-events: none;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--color-gray-600);
}
.filter-select.is-open .filter-select__options {
  display: block;
}
.filter-select__options {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: var(--color-gray-300) 0 0 30px;
  text-align: center;
  border-radius: 5px;
}
.filter-select__options li {
  padding: 5px;
  cursor: pointer;
}
.filter-select__options li:hover {
  background: var(--color-gray-100);
}
.filter-select__options li.is-selected {
  font-weight: 600;
  background: var(--color-gray-100);
}

.slick-slide__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-gray-300);
  background: #fff;
  color: var(--color-gray-600);
  animation: 1s breatheArrow infinite ease-in-out;
  --borderColor: #666;
}
@media (min-width: 996px) {
  .slick-slide__arrow {
    width: 45px;
    height: 45px;
    border-radius: 45px;
  }
}
.slick-slide__arrow:hover {
  border-color: var(--color-red-400);
  color: var(--color-red-400);
  --borderColor: #f00;
}
.slick-slide__arrow::before {
  content: "";
  font-family: "msi-icons";
}
.slick-slide__arrow--prev::before {
  content: "\ea10";
}
.slick-slide__arrow--next::before {
  content: "\ea09";
}

@keyframes breatheArrow {
  0%, 100% {
    box-shadow: var(--borderColor) 0 0 10px;
  }
  50% {
    box-shadow: var(--borderColor) 0 0 20px;
  }
}
.kv {
  position: relative;
  overflow: hidden;
}
.kv__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.kv__content {
  position: absolute;
  z-index: 5;
  max-width: var(--screen-wd);
  padding: 0 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: left;
}
@media (min-width: 1600px) {
  .kv__content {
    padding: 0;
  }
}
.kv-char {
  display: inline-block;
}
.kv-word {
  display: inline-block;
}
.kv__title {
  display: block;
  font-size: var(--title-xl);
  overflow: hidden;
  color: #fff;
}
.kv__title-sub {
  display: block;
  overflow: hidden;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gray-300);
  font-weight: normal;
  padding-left: 3px;
}

.award {
  padding: var(--article-borderPadding) 0;
}
.award-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images///innovation/award-card-bg.jpg") center center no-repeat ;
  background-size: cover;
  margin: 25px auto;
  padding: 25px;
  border-radius: 5px;
}
@media (min-width: 996px) {
  .award-intro {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.award-intro__logo {
  width: 50%;
  margin: 0 auto;
  max-width: 200px;
}
@media (min-width: 996px) {
  .award-intro__media {
    flex: 1;
    padding: 0 20px;
  }
}
.award-intro__quote {
  position: relative;
  font-size: var(--text-sm);
  font-weight: bold;
  font-style: italic;
  color: var(--color-gray-600);
  line-height: var(--line-height-xl);
  padding: 0 25px;
}
.award-intro__quote::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 14px;
  left: 0px;
  top: 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images///innovation/quote.png") center center no-repeat ;
  background-size: cover;
  opacity: 0.6;
}
.award-intro__quote::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 14px;
  right: 0px;
  bottom: 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images///innovation/quote.png") center center no-repeat ;
  background-size: cover;
  transform: rotate(180deg);
  opacity: 0.6;
}
.award-intro__content {
  padding-top: 25px;
}
@media (min-width: 996px) {
  .award-intro__content {
    flex: 1;
    padding: 0 60px;
    padding-top: 0;
  }
}
.award-intro__title {
  font-size: var(--title-md);
  padding-bottom: 15px;
}
.award-intro__desc {
  font-size: var(--text-md);
  line-height: var(--line-height-lg);
}
.award-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images///innovation/award-card-bg.jpg") center center no-repeat ;
  background-size: cover;
  padding: 25px;
  border-radius: 5px;
}
.award-card__logo {
  width: 60%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .award-card__logo {
    width: 100%;
    padding: 15px 0 10px;
  }
  .award-card__logo img {
    height: 120px;
    width: auto;
  }
}
.award-card__title {
  font-size: var(--title-md);
  padding-bottom: 15px;
}
.award-card__desc {
  font-size: var(--text-md);
  line-height: var(--line-height-lg);
}
.award__box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 996px) {
  .award__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .award__box--flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    gap: 25px;
  }
}
.award__action {
  padding-top: 25px;
}

.tech {
  padding-bottom: var(--article-borderPadding);
}

.tech-dna {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 30px 25px;
  max-width: var(--screen-wd);
  margin: 0 auto;
}
@media (min-width: 996px) {
  .tech-dna {
    padding: 50px 0;
  }
}
.tech-dna__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tech-dna__img {
  width: 100%;
  height: auto;
}
.tech-dna__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 480/316;
  border-radius: 5px;
}
.tech-dna__desc {
  padding: 0 3px;
}
.tech-dna__desc h3 {
  font-size: var(--title-sm);
  padding: 15px 0 5px;
}
.tech-dna__desc p {
  font-size: var(--text-sm);
  line-height: var(--line-height-lg);
}
.tech-dna__desc strong {
  font-weight: normal;
}

.tech-explore__header {
  width: 100%;
  max-width: var(--screen-wd);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 25px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .tech-explore__header {
    padding: 20px 0 0;
    flex-direction: row;
    gap: 30px;
  }
}
.tech-explore__title {
  font-size: var(--title-lg);
}
.tech-explore__box {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 20px;
}
.tech-explore__box::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -10px;
  width: max(0px, (100vw - var(--tech-explore-wd, var(--screen-wd))) / 2);
  height: 100%;
  background: #fff;
  opacity: 0.5;
  pointer-events: none;
}
.tech-explore__box::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: -10px;
  width: max(0px, (100vw - var(--tech-explore-wd, var(--screen-wd))) / 2);
  height: 100%;
  background: #fff;
  opacity: 0.5;
  pointer-events: none;
}
.tech-explore__group {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.tech-explore__group.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tech-explore__swiper .swiper-slide {
  width: calc((var(--tech-explore-wd, var(--screen-wd)) - 60px) / 3);
  box-sizing: border-box;
}

.slick-slide__arrow {
  position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.slick-slide__arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.slick-slide__arrow--prev {
  left: max(0px, (100vw - var(--tech-explore-wd, var(--screen-wd))) / 4);
}
.slick-slide__arrow--next {
  right: max(0px, (100vw - var(--tech-explore-wd, var(--screen-wd))) / 4);
}

.tech-card {
  display: flex;
  flex-direction: column;
  border: var(--color-gray-300) 1px solid;
  padding: 25px 25px 0;
  border-radius: 5px;
  text-align: center;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images//innovation/tech-card-bg.jpg") center bottom no-repeat;
  background-size: 100% auto;
}
.tech-card:nth-child(even) {
  margin-top: 25px;
}
.tech-card__title {
  padding: 8px 0 15px;
  font-size: var(--title-sm);
}
.tech-card__desc {
  font-size: var(--text-sm);
  line-height: var(--line-height-lg);
}
.tech-card__icon img {
  height: 60px;
  width: auto;
  object-fit: cover;
  object-position: center;
}

.factory {
  padding: var(--article-borderPadding) 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images//innovation/factory-bg-xs.jpg") center top no-repeat no-repeat;
  background-size: cover;
  color: #fff;
}
@media (min-width: 996px) {
  .factory {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//innovation/factory-bg.jpg") center top no-repeat no-repeat;
    background-size: cover;
  }
}
.factory .common-title__subTitle {
  color: #fff;
  opacity: 0.8;
}
.factory__box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: var(--screen-wd);
  margin: var(--element-padding-xl) auto 0;
}
@media (min-width: 996px) {
  .factory__box {
    flex-direction: row;
    margin-top: 60px;
  }
}
.factory .factory-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  color: var(--color-gray-800);
  text-align: center;
}
@media (min-width: 996px) {
  .factory .factory-card {
    padding: 50px 25px;
  }
}
.factory .factory-card__label {
  font-size: var(--title-sm);
  font-weight: bold;
}
.factory .factory-card__value {
  position: relative;
  font-weight: bold;
  padding: 20px 0;
}
.factory .factory-card__value-number {
  font-size: 28px;
}
@media (min-width: 996px) {
  .factory .factory-card__value {
    padding: 40px;
  }
  .factory .factory-card__value-number {
    font-size: 36px;
  }
  .factory .factory-card__value-label {
    position: absolute;
    bottom: 71%;
    left: 0;
    width: 100%;
  }
}
.factory .factory-card__desc {
  font-size: var(--text-sm);
  line-height: var(--line-height-lg);
}
.factory .factory-card__desc strong {
  font-weight: normal;
}

.ally {
  padding: var(--article-borderPadding) 0;
}
.ally__box {
  padding-top: var(--element-padding-xl);
  max-width: var(--screen-wd);
  margin: 0 auto;
}
.ally__box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

