/* applications_list: industry cards (archive loop, parts/application-item.php) */
.applications_list {
  padding: 15.3rem 0 15.8rem;
  background-color: var(--bg);
}
.applications_list .head {
  max-width: 80rem;
  margin: 0 auto;
}
.applications_list .app_list {
  margin-top: 6.6rem;
}
.applications_list .more {
  text-align: center;
  margin-top: 5.4rem;
}
.applications_list .more.hide {
  display: none;
}
.app_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.1rem 2.7rem;
}
.app_list > li.hide {
  display: none;
}
.app_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid #ebeef3;
  background-color: #fff;
  transition: all 0.3s;
}
.app_list a:hover {
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.app_list .img {
  height: 23.7rem;
  flex-shrink: 0;
  border-radius: 0.96rem 0.96rem 1.2rem 1.2rem;
}
.app_list a:hover .img img {
  transform: scale(1.05);
}
.app_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 5rem 2.7rem 3rem;
}
.app_list .title {
  min-height: 5.8rem;
  color: #0b1a2e;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.9rem;
  transition: all 0.3s;
}
.app_list a:hover .title {
  color: var(--primary);
}
.app_list .desc {
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin: 1.3rem 0 auto;
}
.app_list .btn_i {
  margin: 3.9rem 0 0 0.1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .app_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .app_list .info {
    padding: 2.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .app_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .applications_list {
    padding: 50px 0 60px;
  }
  .applications_list .app_list {
    margin-top: 30px;
  }
  .applications_list .more {
    margin-top: 30px;
  }
  .app_list {
    grid-template-columns: repeat(auto-fill,minmax(min(240px,100%),1fr));
    gap: 30px 16px;
  }
  .app_list a {
    border-radius: 10px;
  }
  .app_list .img {
    height: auto;
    aspect-ratio: 324 / 237;
    border-radius: 10px;
  }
  .app_list .info {
    padding: 14px 12px 16px;
  }
  .app_list .title {
    min-height: 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .app_list .title br {
    display: none;
  }
  .app_list .desc {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .app_list .btn_i {
    margin-top: 14px;
  }
}
@media screen and (max-width: 576px) {
  .app_list .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.applications_banner {
  overflow: hidden;
  background-color: var(--dark);
}
.applications_banner > img {
  left: auto;
  right: 0px;
  width: 75.5%;
  object-position: center 100%;
}
.applications_banner::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
  width: 66.5625%;
  background-image: linear-gradient(90deg, #041222 38%, rgba(4, 18, 34, 0.88) 59%, rgba(4, 18, 34, 0.53) 80%, rgba(4, 18, 34, 0) 100%);
}
.applications_banner::after {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(4, 18, 34, 0.4);
}
.applications_banner .content {
  min-height: 91.9rem;
  padding: 29.4rem 0px 14rem;
}
.applications_banner .tcon {
  max-width: 76rem;
}
.applications_banner .tcon .subtitle {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  gap: 1.3rem;
}
.applications_banner .tcon p {
  color: #fff;
  max-width: 52.5rem;
  margin-top: 3.4rem;
}
.applications_banner .btns {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}
.applications_banner .btns .btn {
  padding: 0px 3rem 0px 4rem;
}
.applications_banner .marquee {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.applications_banner .marquee ul {
  display: flex;
  width: max-content;
  animation: applications_banner_marquee 40s linear infinite;
}
.applications_banner .marquee:hover ul {
  animation-play-state: paused;
}
.applications_banner .marquee li {
  display: flex;
  align-items: center;
  gap: 5.8rem;
  padding-right: 5.8rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 5.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.applications_banner .marquee li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
}
@keyframes applications_banner_marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 14px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 8px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0px 20px;
  }
  .applications_banner > img {
    width: 100%;
  }
  .applications_banner::before {
    width: 100%;
    background-image: linear-gradient(90deg, #041222 10%, rgba(4, 18, 34, 0.55) 100%);
  }
  .applications_banner .content {
    min-height: 0px;
    padding: 130px 20px 100px;
  }
  .applications_banner .tcon p {
    margin-top: 16px;
  }
  .applications_banner .btns {
    gap: 12px;
    margin-top: 24px;
  }
  .applications_banner .btns .btn {
    padding: 0px 20px;
  }
  .applications_banner .marquee li {
    font-size: 12px;
    line-height: 44px;
    gap: 24px;
    padding-right: 24px;
  }
  .applications_banner .marquee li::after {
    width: 5px;
    height: 5px;
  }
}
.applications_why {
  padding: 15.7rem 0px 16rem;
  background-color: #fff;
}
.applications_why .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.applications_why .tcon {
  max-width: 58rem;
}
.applications_why .tcon p + p {
  margin-top: 2.8rem;
}
.applications_why .cards {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(2, 29.3rem);
  gap: 2.6rem 3.1rem;
}
.applications_why .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 19.06rem;
  padding: 3.3rem 2.4rem 3rem;
  border-radius: 1.8rem;
  border: 1px solid #e3e8f2;
  background-color: #fff;
  transition: 0.3s;
}
.applications_why .card:hover {
  border-color: #fff;
  box-shadow: 0px 2rem 4rem rgba(208, 211, 221, 0.45);
  transform: translateY(-0.4rem);
}
.applications_why .icon {
  display: block;
  width: 5.7rem;
  height: 5.7rem;
  border-radius: 1.2rem;
  background-color: var(--primary);
}
.applications_why li:first-child .icon {
  background-color: var(--secondary);
}
.applications_why .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.applications_why .title {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
}
.applications_why .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .applications_why .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .applications_why .tcon {
    max-width: none;
  }
  .applications_why .cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .applications_why .content {
    flex-direction: column;
    align-items: flex-start;
  }
  .applications_why .tcon {
    max-width: none;
  }
  .applications_why .cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .applications_why {
    padding: 50px 0px 60px;
  }
  .applications_why .content {
    gap: 30px;
  }
  .applications_why .tcon p + p {
    margin-top: 10px;
  }
  .applications_why .cards {
    gap: 12px;
  }
  .applications_why .card {
    min-height: 0px;
    padding: 16px;
    border-radius: 12px;
  }
  .applications_why .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .applications_why .title {
    font-size: 15px;
    padding-top: 16px;
  }
}
.applications_oem {
  padding: 15.8rem 0px;
  background-color: #fff;
}
.applications_oem .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}
.applications_oem .img {
  flex-shrink: 0;
  width: 66.6rem;
  height: 64.1rem;
  border-radius: 2.4rem;
}
.applications_oem .img {
  overflow: hidden;
}
.applications_oem .img img {
  object-fit: cover;
}
.applications_oem .text {
  width: 60.6rem;
}
.applications_oem .tcon p {
  hyphens: auto;
  -webkit-hyphens: auto;
}
.applications_oem .tcon h2 {
  font-size: 4.8rem;
}
.applications_oem .points {
  margin-top: 3.4rem;
}
.applications_oem .points li {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}
.applications_oem .points li + li {
  margin-top: 3rem;
}
.applications_oem .icon {
  flex-shrink: 0;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.2rem;
  background-color: var(--primary);
}
.applications_oem .points li:nth-child(2n) .icon {
  background-color: var(--secondary);
}
.applications_oem .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.applications_oem .points h3 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.6rem;
}
.applications_oem .points p {
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 0.5rem;
}
.applications_oem .btns {
  margin-top: 4.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  .applications_oem .content {
    gap: 4rem;
  }
  .applications_oem .img {
    width: 45%;
    height: auto;
    aspect-ratio: 666 / 641;
  }
  .applications_oem .text {
    flex: 1;
    width: auto;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .applications_oem .text {
    width: 100%;
  }
  .applications_oem .img {
    height: auto;
    aspect-ratio: 666 / 641;
  }
  .applications_oem {
    padding: 50px 0px 60px;
  }
  .applications_oem .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .applications_oem .img {
    width: 100%;
    border-radius: 12px;
  }
  .applications_oem .tcon p {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .applications_oem .tcon h2 {
    font-size: 24px;
  }
  .applications_oem .points {
    margin-top: 24px;
  }
  .applications_oem .points li {
    gap: 12px;
  }
  .applications_oem .points li + li {
    margin-top: 16px;
  }
  .applications_oem .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .applications_oem .points h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .applications_oem .points p {
    font-size: 14px;
    line-height: 1.6;
  }
  .applications_oem .btns {
    margin-top: 24px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 8px;
  }
}
