@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.4px;
  font-size: 1vw;
  background: #F5F5F5;
  overflow-x: hidden;
}
body .nav-menu-dropdown {
  padding: 3vw 6vw;
  z-index: 3;
  position: fixed;
  top: -80vh;
  height: 80vh;
  width: 100vw;
  background: white;
  transition: all 0.3s ease-in-out;
}
body .nav-menu-dropdown.open {
  top: 0;
}
body .nav-menu-dropdown .close-icon {
  display: flex;
  justify-content: space-between;
}
body .nav-menu-dropdown .close-icon span {
  font-size: 3vw;
}
body .nav-menu-dropdown .nav-toggler-close {
  cursor: pointer;
  font-size: 3vw;
}
body .nav-menu-dropdown .nav-menus {
  font-size: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body nav {
  background: #fff;
  padding: 0 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F5F5F5;
  height: 50px;
}
body nav img {
  width: 140px;
  height: 40px;
  background: #fff;
}
body nav .navs {
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  body nav .navs {
    display: none;
  }
}
body nav .navs span {
  cursor: pointer;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 0;
}
body nav .navs span:hover {
  border-bottom: 1px solid #f50514;
}
body nav .nav-toggler {
  display: none;
}
@media screen and (max-width: 768px) {
  body nav .nav-toggler {
    display: block;
  }
  body nav .nav-toggler i {
    cursor: pointer;
    font-size: 16px;
  }
}
body header {
  background: #fff;
  position: sticky;
  top: 0;
  padding: 0.8pc 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  z-index: 1;
}
body header .header-title {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  body header .header-title {
    font-size: 14px;
  }
}
body header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}
body header div span {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 768px) {
  body header div span {
    font-size: 14px;
  }
}
body header div span.active {
  color: #000;
  font-weight: 600;
}
body header div span:hover {
  color: #000;
}
body .banner-top-section {
  height: 100vh;
  background: #E2E2E2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
@media screen and (max-width: 768px) {
  body .banner-top-section {
    flex-direction: column-reverse;
    height: 60vh;
  }
}
body .banner-top-section .banner-top-left {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
body .banner-top-section .banner-top-left p {
  font-size: 3vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .banner-top-section .banner-top-left p {
    font-size: 5vw;
  }
}
body .banner-top-section .banner-top-left p:nth-child(2) {
  font-size: 2vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .banner-top-section .banner-top-left p:nth-child(2) {
    font-size: 3.5vw;
  }
}
body .banner-top-section .banner-top-right {
  position: relative;
  width: 45vw;
}
@media screen and (max-width: 768px) {
  body .banner-top-section .banner-top-right {
    width: 60vw;
  }
}
body .banner-top-section .banner-top-right img {
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .highlight-section {
  height: calc(100vh - 50px);
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body .highlight-section {
    height: 90vh;
    height: 100vh;
  }
}
body .highlight-section .title {
  font-size: 4vw;
  font-weight: 500;
  margin: 0 15vw;
  padding-bottom: 1vh;
  border-bottom: 2px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  body .highlight-section .title {
    font-size: 6vw;
    margin: 0 5vw;
  }
}
body .highlight-section .highlight-card-container {
  margin-top: 2vh;
  display: flex;
  gap: 2vw;
  padding-left: 15vw;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  body .highlight-section .highlight-card-container {
    padding-left: 5vw;
  }
}
body .highlight-section .highlight-card-container .highlight-card {
  cursor: pointer;
  height: 400px;
  width: 320px;
  background: #F5F5F5;
}
body .highlight-section .highlight-card-container .highlight-card .highlight-card-title {
  font-weight: 500;
  letter-spacing: 0.4px;
  font-size: 0.9vw;
  margin: 3vh auto;
}
@media screen and (max-width: 996px) {
  body .highlight-section .highlight-card-container .highlight-card .highlight-card-title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 576px) {
  body .highlight-section .highlight-card-container .highlight-card .highlight-card-title {
    font-size: 3vw;
  }
}
body .highlight-section .highlight-card-container .highlight-card .highlight-card-image {
  position: relative;
  height: 320px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  body .highlight-section .highlight-card-container .highlight-card .highlight-card-image {
    height: 220px;
    width: 300px;
  }
}
body .highlight-section .highlight-card-container .highlight-card .highlight-card-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
body .video-banner-section {
  overflow-x: hidden;
}
body .video-banner-section .video-banner-container {
  height: 80vh;
  width: 100vw;
  position: relative;
}
body .video-banner-section .video-banner-container video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .video-banner-section .video-banner-container .video-watch-now {
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 8%;
  left: 4%;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}
body .video-banner-section .video-banner-container .video-watch-now i {
  color: #f50514;
  font-size: 34px;
}
body .about-section {
  height: 500vh;
  background: #000;
  color: #fff;
}
body .about-section .about-main-title {
  font-size: 3.5vw;
  font-weight: 500;
  padding: 20vh 0;
  text-align: center;
}
@media screen and (max-width: 996px) {
  body .about-section .about-main-title {
    padding: 20vh 0 10vh 0;
  }
}
@media screen and (max-width: 768px) {
  body .about-section .about-main-title {
    padding: 10vh 0 5vh 0;
    font-size: 3.5vw;
  }
}
@media (max-width: 576px) {
  body .about-section .about-main-title {
    font-size: 4vw;
  }
}
body .about-section .about-details-top-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin: 0 15vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-top-container {
    flex-direction: column;
    margin: 0 0;
  }
}
body .about-section .about-details-top-container .left {
  width: 30vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-top-container .left {
    width: 60vw;
    text-align: center;
  }
}
body .about-section .about-details-top-container .left .title {
  font-size: 2.5vw;
  font-weight: 500;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-top-container .left .title {
    font-size: 3.5vw;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-top-container .left .title {
    font-size: 4vw;
  }
}
body .about-section .about-details-top-container .left span {
  font-weight: 500;
  font-size: 0.8vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-top-container .left span {
    font-size: 2vw;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-top-container .left span {
    font-size: 2.5vw;
  }
}
body .about-section .about-details-top-container .right {
  width: 40vw;
}
body .about-section .about-details-top-container .right .image-container {
  position: relative;
  width: 100%;
  height: 60vh;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-top-container .right .image-container {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-top-container .right .image-container {
    height: 20vh;
  }
}
body .about-section .about-details-top-container .right .image-container img {
  width: 80%;
  height: 80%;
}
body .about-section .about-details-top-container .right .image-container .back {
  position: absolute;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
body .about-section .about-details-top-container .right .image-container .front {
  position: absolute;
  top: 20%;
  left: 30%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-top-container .right .image-container .front {
    top: 20%;
    left: 15%;
  }
}
body .about-section .about-details-second-container {
  margin: 0 15vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-second-container {
    flex-direction: column;
    margin: 0 8vw;
  }
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-second-container {
    flex-direction: column;
    margin: 5vw 8vw;
  }
}
body .about-section .about-details-second-container .title {
  font-size: 2.5vw;
  font-weight: 500;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-second-container .title {
    font-size: 4vw;
  }
}
body .about-section .about-details-second-container span {
  font-weight: 500;
  font-size: 0.8vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-second-container span {
    font-size: 2.5vw;
  }
}
body .about-section .about-details-second-container .image-container {
  position: relative;
  width: 100%;
  height: 60vh;
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-second-container .image-container {
    height: 40vh;
  }
}
body .about-section .about-details-second-container .image-container img {
  width: 100%;
  height: 100%;
}
body .about-section .about-details-third-container {
  margin: 18vh 15vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container {
    margin: 4vw 8vw;
  }
}
body .about-section .about-details-third-container .title {
  display: block;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .title {
    font-size: 4vw;
  }
}
body .about-section .about-details-third-container .description {
  margin: auto;
  text-align: center;
  display: block;
  width: 75%;
  font-weight: 500;
  font-size: 0.8vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .description {
    font-size: 2.5vw;
  }
}
body .about-section .about-details-third-container .image-container {
  margin-top: 32px;
  position: relative;
  width: 100%;
  height: 60vh;
}
@media screen and (max-width: 576px) {
  body .about-section .about-details-third-container .image-container {
    height: 30vh;
  }
}
body .about-section .about-details-third-container .image-container .three-image-container {
  overflow: hidden;
}
@media (max-width: 1400px) {
  body .about-section .about-details-third-container .image-container .three-image-container {
    height: 160px;
  }
}
@media (max-width: 996px) {
  body .about-section .about-details-third-container .image-container .three-image-container {
    height: 160px;
  }
}
@media (max-width: 768px) {
  body .about-section .about-details-third-container .image-container .three-image-container {
    height: 120px;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-third-container .image-container .three-image-container {
    height: 100px;
  }
}
body .about-section .about-details-third-container .image-container .three-image-container .three-image-single {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-third-container .image-container .three-image-container .three-image-single {
    height: 300px;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-third-container .image-container .three-image-container .three-image-single {
    height: 200px;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .about-section .about-details-third-container .image-container .three-image-double .three-front {
  width: 60%;
  height: 60%;
}
@media (max-width: 576px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-front {
    width: 80%;
    height: 80%;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-shadow {
  width: 85%;
  height: 80%;
}
@media (max-width: 576px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-shadow {
    width: 95%;
    height: 90%;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs {
  position: absolute;
  bottom: 22%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-specs {
    bottom: 15%;
  }
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-specs {
    display: none;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .top {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .top span {
  font-size: 1.3vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-specs .top span {
    font-size: 1.8vw;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom {
  margin-top: 32px;
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom div {
  font-size: 1.3vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom div {
    font-size: 1.8vw;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom div span {
  font-size: 0.8vw;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom div span {
    font-size: 1.3vw;
  }
}
body .about-section .about-details-third-container .image-container .three-image-double .three-specs .bottom img {
  width: 200px;
  height: 50px;
}
body .about-section .about-details-fourth-container .title {
  display: block;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  margin: 5vw;
}
@media (min-width: 1400px) {
  body .about-section .about-details-fourth-container .title {
    margin-top: 30vh;
  }
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-fourth-container .title {
    font-size: 4vw;
    margin-bottom: 5vh;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-fourth-container .title {
    margin-top: 10vh;
  }
}
body .about-section .about-details-fourth-container .detail-container {
  position: relative;
}
body .about-section .about-details-fourth-container .detail-container .motherboard {
  position: relative;
  height: 55vh;
}
@media screen and (max-width: 768px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard {
    height: 25vh;
  }
}
body .about-section .about-details-fourth-container .detail-container .motherboard .motherboard-image {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 65%;
  height: 100%;
}
@media (max-width: 1400px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard .motherboard-image {
    width: 100%;
  }
}
body .about-section .about-details-fourth-container .detail-container .motherboard .sn-image {
  position: absolute;
  left: 25%;
  top: 25%;
  width: 180px;
  height: 180px;
}
@media (max-width: 1400px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard .sn-image {
    width: 200px;
    height: 200px;
    left: 38%;
    top: 21%;
  }
}
@media (max-width: 996px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard .sn-image {
    left: 38%;
    top: 25%;
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 768px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard .sn-image {
    top: 8%;
    left: 38%;
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-fourth-container .detail-container .motherboard .sn-image {
    top: 21%;
    left: 35%;
    width: 90px;
    height: 90px;
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  height: 100%;
}
@media (max-width: 1400px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container {
    top: 100%;
    left: 0%;
    width: 100%;
    padding: 0 10vw;
    height: 80%;
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container hr {
  width: 80%;
  margin: 5vh auto 4vh 0;
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-detail-title {
  font-size: 2.5vw;
  font-weight: 500;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-detail-title {
    font-size: 4vw;
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .subtilte {
  font-size: 0.9vw;
  font-weight: 500;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .subtilte {
    font-size: 2.5vw;
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container {
  margin-top: 10%;
  width: 100%;
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-deatil-bottom-desc {
  display: inline-block;
  font-size: 0.9vw;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 996px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-deatil-bottom-desc {
    font-size: 1.8vw;
  }
}
@media (max-width: 576px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-deatil-bottom-desc {
    font-size: 2vw;
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-detail-card-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  place-content: start;
  gap: 8px;
}
@media (max-width: 768px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-detail-card-container {
    grid-template-columns: repeat(1, auto);
  }
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-detail-card-container .chip-detail-card {
  width: 250px;
  height: 100px;
  padding: 16px;
  background: #222222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-detail-card-container .chip-detail-card .chip-detail-card-title {
  font-size: 1.2vw;
  font-weight: 500;
}
@media (max-width: 996px) {
  body .about-section .about-details-fourth-container .detail-container .chip-detail-container .chip-deatil-bottom-container .chip-detail-card-container .chip-detail-card .chip-detail-card-title {
    font-size: 3vw;
  }
}/*# sourceMappingURL=style.css.map */