.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";
}

.parallax-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 35vh;
}
@media (min-width: 996px) {
  .parallax-banner {
    min-height: 50vh;
  }
}
@media (min-width: 1930px) {
  .parallax-banner {
    min-height: 40vh;
  }
}
.parallax-banner__media {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: -1;
}
@media (min-width: 1930px) {
  .parallax-banner__media {
    top: -10%;
  }
}
.parallax-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(0%);
}

.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;
  }
}
.YouTubePopUp-Wrap {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.6);
  animation: 0.5s YouTubePopUp;
}
.YouTubePopUp-Content {
  position: relative;
  padding: 2px;
  top: 50%;
  left: 50%;
  max-width: 1400px;
  transform: translate(-50%, -50%);
}
.YouTubePopUp-Content iframe, .YouTubePopUp-Content object, .YouTubePopUp-Content embed {
  width: 100%;
  max-width: 100%;
  height: 220px;
  border: none;
}
@media (min-width: 768px) {
  .YouTubePopUp-Content iframe, .YouTubePopUp-Content object, .YouTubePopUp-Content embed {
    height: 320px;
  }
}
@media (min-width: 996px) {
  .YouTubePopUp-Content iframe, .YouTubePopUp-Content object, .YouTubePopUp-Content embed {
    height: 788px;
  }
}
.YouTubePopUp-Close {
  position: fixed;
  right: calc(50% - 25px);
  bottom: 20px;
  z-index: 5;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: var(--color-white);
  border: var(--color-gray-400) 1px solid;
}
.YouTubePopUp-Close:hover {
  border-color: var(--color-red-400);
  color: var(--color-red-400);
}
.YouTubePopUp-Close::before {
  content: "\ea02";
  font-family: "msi-icons";
}
.YouTubePopUp-Hide {
  animation: 0.5s YouTubePopUpHide;
}

a.youtube {
  position: relative;
}
a.youtube::after {
  content: "\ea18";
  font-family: "msi-icons";
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  font-size: 40px;
  color: var(--color-gray-200);
}
a.youtube:hover:after {
  color: var(--color-red-400);
}

@keyframes YouTubePopUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes YouTubePopUpHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.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;
}
.kv__title-sub {
  display: block;
  overflow: hidden;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gray-600);
  font-weight: normal;
  padding-left: 3px;
}

.intro {
  padding: var(--article-borderPadding) 0;
}
.intro p strong {
  font-weight: normal;
}

.history {
  position: relative;
  padding: var(--article-borderPadding) 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/story-bg-xs.webp") bottom right no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .history {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/story-bg.webp") bottom right no-repeat ;
    background-size: cover;
    --article-borderPadding: 0px;
    overflow: hidden;
    margin-top: -60px;
  }
  .history::before {
    content: "";
    position: absolute;
    bottom: 93%;
    left: -50%;
    width: 200%;
    height: 50%;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
  }
  .history::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 93%;
    left: -50%;
    width: 200%;
    height: 50%;
    border-radius: 50%;
    background: #fff;
  }
}
.history__bg {
  display: none;
}
@media (min-width: 996px) {
  .history__bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .history__bg--1 {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/story-bg-spotlight-1.webp") bottom right no-repeat ;
    background-size: cover;
    animation: spotlight 10s ease-in-out infinite;
  }
  .history__bg--2 {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/story-bg-spotlight-2.webp") bottom right no-repeat ;
    background-size: cover;
    animation: spotlight 6s ease-in-out infinite;
  }
  .history__bg--3 {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/story-bg-spotlight-3.webp") bottom right no-repeat ;
    background-size: cover;
    animation: spotlight 8s ease-in-out infinite;
  }
}
.history__item {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 25px;
  text-shadow: #fff 1px 2px 3px;
}
@media (min-width: 996px) {
  .history__item {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  .history__item:nth-child(1) {
    margin-bottom: 100px;
  }
  .history__item:nth-child(1) figcaption {
    padding-top: 140px;
  }
  .history__item:nth-child(2) {
    flex-direction: row;
  }
  .history__item:nth-child(2) figcaption {
    padding-bottom: 100px;
  }
}
@media (min-width: 996px) {
  .history__img {
    flex: 0 0 50%;
  }
}
.history__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.history__label {
  font-weight: normal;
  font-size: var(--text-md);
  color: var(--color-red-400);
  padding-bottom: 12px;
}
.history__title {
  font-size: var(--title-lg);
  padding-bottom: 25px;
}
.history p {
  font-size: var(--text-md);
  line-height: 1.6;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes spotlight {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
}
.timeline {
  padding: var(--article-borderPadding) 0;
}
@media (min-width: 996px) {
  .timeline {
    overflow: hidden;
  }
}
.timeline__list {
  position: relative;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 996px) {
  .timeline__list {
    flex-direction: row;
    width: max-content;
    padding-left: calc((100% - 1280px) / 2);
    padding-right: calc((100% - 1280px) / 2);
    margin-left: 0;
    will-change: transform;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.timeline__list::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--color-gray-300);
}
@media (min-width: 996px) {
  .timeline__list::before {
    width: 100%;
    height: 1px;
    background: var(--color-gray-300);
  }
}
.timeline__item {
  position: relative;
  padding-left: 20px;
}
@media (min-width: 996px) {
  .timeline__item {
    padding-left: 0;
    padding-top: 40px;
    flex: 0 0 clamp(220px, 18vw, 320px);
  }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--color-red-400);
}
@media (min-width: 996px) {
  .timeline__item::before {
    top: -4px;
    left: 0;
  }
}
.timeline__item h4 {
  padding: 10px 0;
}
.timeline__item p {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}
.timeline__year {
  font-weight: bold;
  font-style: italic;
  color: var(--color-gray-600);
  font-size: 28px;
}
.timeline__btn {
  padding-top: 40px !important;
  text-align: center;
}
.timeline__btn button {
  display: inline-block;
  padding: 15px 35px;
  border: var(--color-red-400) 1px solid;
  border-radius: 4px;
  color: var(--color-red-400);
  background: var(--color-white);
  font-size: var(--link-sm);
}
.timeline__btn button i {
  margin-right: 8px;
  font-weight: bold;
}
.timeline__btn button:hover {
  color: #fff;
  background: var(--color-red-400);
  border-color: var(--color-red-400);
}

.milestone {
  position: relative;
  display: none;
  padding: var(--article-borderPadding) 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/milestone-bg-xs.webp") center center no-repeat no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-shadow: #fff 1px 2px 3px;
}
@media (min-width: 996px) {
  .milestone {
    background: url("https://storage-asset.msi.com/event/msi-about-2026/images//story/milestone-bg.webp") center center no-repeat no-repeat;
    background-size: cover;
  }
}
.milestone .slick-slide__arrow--prev,
.milestone .slick-slide__arrow--next {
  display: none;
}
@media (min-width: 996px) {
  .milestone .slick-slide__arrow--prev {
    display: block !important;
    position: absolute;
    z-index: 5;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
  }
  .milestone .slick-slide__arrow--next {
    display: block !important;
    position: absolute;
    z-index: 5;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
  }
  .milestone .slick-dots {
    display: none !important;
  }
}
.milestone__slides {
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
}

.milestone-card {
  padding: 0 25px;
}
.milestone-card__period {
  font-style: italic;
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 22px;
}
@media (min-width: 996px) {
  .milestone-card__period {
    font-size: 36px;
    color: var(--color-gray-400);
  }
}
.milestone-card__subject {
  font-size: var(--title-lg);
  color: var(--color-gray-800);
  line-height: 1.2;
  padding-bottom: 25px;
}
.milestone-card__content-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: var(--text-sm);
}
@media (min-width: 996px) {
  .milestone-card__content-flex {
    flex-direction: row;
    gap: 60px;
  }
  .milestone-card__content-flex .milestone-card__list {
    flex: 0 0 calc((100% - 300px - 110px) / 2);
  }
}
.milestone-card__list-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: var(--text-sm);
}
@media (min-width: 996px) {
  .milestone-card__list-box {
    gap: 60px;
    flex-direction: row;
  }
  .milestone-card__list-box .milestone-card__list {
    flex: 1;
  }
}
.milestone-card__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}
.milestone-card__list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px dashed var(--color-gray-300);
}
.milestone-card__list ul {
  margin-left: 0px;
}
.milestone-card__list ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.milestone-card__list ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-gray-400);
}
.milestone-card__list ul li:last-child {
  margin-bottom: 0;
}
.milestone-card__item {
  position: relative;
  padding-left: 25px;
}
.milestone-card__year {
  position: relative;
  color: var(--color-red-400);
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 20px;
}
.milestone-card__year::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--color-red-400);
  left: -28px;
  top: 7px;
}
.milestone-card__media {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 996px) {
  .milestone-card__media {
    flex: 0 0 300px;
  }
}
.milestone-card__media-flex {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px;
  gap: 30px;
  margin-top: 20px;
  border-radius: 4px;
  box-shadow: #fff 0 0 25px;
}
.milestone-card__media-flex .milestone-card__img {
  max-width: 150px;
}
.milestone-card__media-flex .milestone-card__img img {
  box-shadow: none;
}
.milestone-card__img {
  text-align: center;
}
.milestone-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  vertical-align: bottom;
  box-shadow: #fff 0 0 25px;
}
.milestone-card__img img.img--full {
  width: 100%;
  background: #fff;
  padding: 20px 50px;
}
.milestone-card__img figcaption {
  font-size: 16px;
  color: var(--color-gray-800);
  padding-top: 10px;
  text-align: center;
}

.vision {
  position: relative;
}
@media (min-width: 996px) {
  .vision::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 20%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0));
  }
}
.vision__title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 20px;
}
@media (min-width: 996px) {
  .vision__title {
    -webkit-mask: url("https://storage-asset.msi.com/event/msi-about-2026/images///story/vision-mask.png") bottom center no-repeat;
    mask: url("https://storage-asset.msi.com/event/msi-about-2026/images///story/vision-mask.png") bottom center no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-size: 100% auto;
    text-shadow: #fff 1px 2px 3px;
  }
}
.vision__box {
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 996px) {
  .vision__box {
    flex-direction: row;
    text-align: left;
    gap: 80px;
    padding: 80px 0;
  }
}
.vision__content {
  padding: 20px;
}
.vision__content h3 {
  padding-bottom: 10px;
  font-size: var(--title-lg);
}
.vision__content:last-child {
  border-top: 1px solid var(--color-gray-300);
}
.vision__content p strong {
  font-weight: normal;
}
@media (min-width: 996px) {
  .vision__content {
    flex: 1;
    line-height: 2;
    padding: 0;
  }
  .vision__content:last-child {
    border-top: none;
  }
}

.future {
  position: relative;
  padding: var(--article-borderPadding) 0;
  background: url("https://storage-asset.msi.com/event/msi-about-2026/images///story/future-bg-xs.webp") top center no-repeat no-repeat;
  background-size: cover;
}
@media (min-width: 996px) {
  .future {
    background: none;
  }
}
.future::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.future .msi__container {
  position: relative;
  z-index: 2;
}
.future__video {
  display: none;
}
@media (min-width: 996px) {
  .future__video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
}
.future p strong {
  font-weight: normal;
}
.future-subtitle {
  font-size: var(--title-lg);
  padding: 45px 0 25px;
  text-align: center;
  font-weight: bold;
}
.future__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 996px) {
  .future__box {
    flex-direction: row;
  }
}
.future__item {
  position: relative;
  text-align: center;
  padding: 25px;
}
@media (min-width: 996px) {
  .future__item {
    text-align: left;
  }
}
.future__item::before {
  content: "";
  position: absolute;
  z-index: 0;
  background: var(--color-red-400);
  width: 80%;
  height: 10%;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0.6;
}
.future__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 2px 0 0;
  background: #fff;
  border-radius: 5px;
}
.future__item h3 {
  position: relative;
  z-index: 2;
  font-size: var(--title-md);
}
.future__item p {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  line-height: 1.5;
  font-size: var(--text-md);
}

.logos {
  padding: 45px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 996px) {
  .logos {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}
