* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #262626;

  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
}

button {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0067b8;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 2px;
}

.nav-bar {
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #262626;
}

.logo {
  margin: 1px 0px 0px;
  padding: 16px 6px 16px 10px;
}

.logo img {
  max-height: 23px;
  margin: -3px 0px 0px;
}

/* second nav div */
.nav-link {
  margin-top: 0;
  width: 50%;
}

.nav-link ul {
  list-style-type: none;
  margin: 0;
  display: flex;
}

.nav-link ul>li {
  margin: 0;
  padding: 1rem 0.5rem;
}

.nav-bar li:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* third nav div */
.nav-last {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 245px;
  font-size: 13px;
}

.nav-button {
  font-size: 13px;
  font-weight: 400;
  background: #fff;
  color: #262626;
  padding: 16px 20px 16px 15px;
}

.nav-button i {
  margin-left: 4px;
}

.nav-button:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* ! Button Click */
#toggleDiv {
  display: none;
}

.navToggleDiv {
  display: flex;
  justify-content: space-between;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
  width: 90%;
  background-color: #f2f2f2;
  color: #262626;
  max-height: 600px;
  position: absolute;
  top: 60px;
  right: 90px;
  padding: 2rem;
  border-bottom: 2px solid black;
  z-index: 99;
}

.navToggleDiv ul {
  list-style-type: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navToggleDiv li {
  padding-top: 1.5rem;
}

.navToggleDiv ul>p {
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 1em;
}

.search-btn i {
  cursor: pointer;
  margin: 0px 6px 1px;
  padding: 15px 9px 30px;
}

.search-hide {
  display: none;
  position: absolute;
  text-decoration: none;
  top: 40px;
  right: 145px;
  background-color: #fff;
  border: 1px solid grey;
  padding: 2px;
  box-shadow: 2px 2px;
  z-index: 1;
}

.search-btn i:hover+.search-hide {
  display: block;
}

.cart-icon {
  cursor: pointer;
  margin: 2px 0px 0px;
  padding: 0px 5px;
}

.cart-hide {
  display: none;
  position: absolute;
  text-decoration: none;
  top: 40px;
  right: 140px;
  border: 1px solid grey;
  padding: 2px;
  box-shadow: 2px 2px;
  z-index: 1;
}

.cart i:hover+.cart-hide {
  display: block;
}

.sign-avater i {
  cursor: pointer;
  margin: 8px;
  padding: 0px 5px;
}

.sign-in {
  display: none;
  position: absolute;
  text-decoration: none;
  top: 60px;
  right: 50px;
  border: 1px solid grey;
  padding: 2px;
  box-shadow: 2px 2px;
  z-index: 1;
}

.sign-avater i:hover+.sign-in {
  display: block;

}

/* main section*/
.hero-section {
  font-size: 1rem;
  background-color: #f2f2f2;
  max-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
}

.hero-image img {
  object-fit: cover;
}

.hero-card {
  max-width: 310px;
}

.hero-card h1 {
  font-size: 29px;
  margin: 0px 0px 16px;
}

.hero-description {
  color: #000000;
  margin: 0px 0px 24px;
  font-size: 1rem;
}

.hero-primary-button button {
  width: 7em;
  padding: 10px 10px;
  margin: 8px 0px;
}

.hero-primary-button button:hover {
  cursor: pointer;
}

/* Article Part 2 */
.hero-section2 {
  font-size: 1rem;
  background-color: #c8e2fb;
  max-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.hero-image2 img {
  object-fit: cover;
}

.hero-card2 {
  padding: 48px;
}

.hero-card2 h1 {
  font-size: 29px;
  margin: 0px 0px 16px;
}

.hero-description2 {
  color: #000000;
  margin: 0px 0px 24px;
  font-size: 1rem;
}

.hero-primary-button2 .one {
  border: none;
  border-radius: 2px;
  width: 10em;
  padding: 10px 10px;
  margin: 8px 0px;
}

.six {
  background-color: #c8e2fb;
  color: #000000;
  padding: 8px 27px 8px 0px;
  margin-left: 15px;
}

.six:hover {
  text-decoration: underline;
}

.six:hover span {
  padding-left: 2px;
}

.hero-primary-button2 button:hover {
  cursor: pointer;
}

/* Article Content */
.explore-more ul {
  margin-top: 50px;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.explore-more li {
  margin: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.explore-more img {
  margin-bottom: 8px;
  width: 40px;
  height: 40px;
}

.explore-more a {
  font-size: 16px;
  font-weight: bold;
  color: #0067b8;
}

/* diagonist PC */
.diagonist-pc {
  width: 1348px;
  height: 580px;
  margin: 0px 0.015625px;
  padding: 0rem 4.21rem;
}

.hero-image3 {
  color: #fff;
  font-size: 16px;
  width: 100%;
  height: 100%;
  margin: 0;
  background-image: url(./Assets/Highlight-Hero-Windows11-GlobalLaunch_VP2-859x540.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

}

.hero-card3 {
  position: absolute;
  top: 80px;
  left: 30px;
  width: 40%;
  max-height: 225px;
  padding: 48px;
}

.hero-card3 h1 {
  font-size: 29px;
  margin: 0px 0px 16px;
}

.hero-description3 {
  margin: 0px 0px 24px;
  font-weight: 400;
}

.hero-primary-button3 .one {
  border: none;
  border-radius: 2px;
  /* width: 10em; */
  padding: 10px 10px;
  margin: 8px 0px;
}

/* More Product */
.more-product {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card {
  height: 470px;
  width: 300px;
  padding: 0px 12px;
}

.product-card img {
  width: 100%;
}

.product-card-body {
  color: #000000;
  padding: 16px 0px 0px;
}

.product-card-body h2 {
  font-size: 24px;
  margin: 0px 0px 12px;
}

.product-card-body p {
  font-size: 16px;
}

.link-group {
  margin: 8px 0px;
  font-size: 16px;
}

.link-group a {
  color: #0067b8;
  margin: 16px 0px;
  padding: 0px 27px 0px 0px;
  font-weight: 600;
  text-decoration: none;
}

.link-group a:hover {
  text-decoration: underline;
}

/* Follow Section */
.social-follow-div {
  display: flex;
  height: 32px;
  width: 90%;
  /* background-color: #c8e2fb; */
  flex-direction: row;
  align-items: center;
  margin: 0px 0.015625px;
  padding: 0px 67.4375px;
  position: relative;
}

.social-follow {
  padding: 0px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-follow h1 {
  margin: 0px 12px 0px 0px;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: lighter;
}

.social-follow img {
  width: 32px;
  height: 32px;
}

.social-follow ul {
  list-style-type: none;
  font-size: 16px;
  width: 142px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* Back to top button*/
.backButton {
  height: 64px;
}

#back:hover {
  background-color: #fff;
}

#back {
  display: block;
  padding: 10px 12px;
  background-color: rgb(226, 226, 226);
  color: #000000;
  font: size 16px;
  width: 126px;
  margin-right: 15px;
  cursor: pointer;
  position: fixed;
  bottom: 410px;
  right: 30px;
  z-index: 99;
}

#back a {
  text-decoration: none;
  color: #000000;
}

/* Footer */
.footer-content {
  margin-top: 15px;
  padding: 0px 67.4375px;
  width: 100%;
  background-color: #f2f2f2;
  max-height: 400px;
  display: flex;
  justify-content: center;
}

.footer-content ul {
  margin-top: 1.5rem;
  list-style-type: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-content li {
  padding: 8px 0px;
}

.footer-content li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer-content p {
  font-size: 0.85rem;
  font-weight: 500;
  padding-bottom: 1em;
}

.copywrite {
  height: 72px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 30px 67.475px 16px;
}

.language {
  padding-left: 2rem;
  display: flex;
}

.language span {
  margin-right: 2px;
}

.language a {
  color: #000000;
  text-decoration: none;
}

.language a:hover {
  text-decoration: underline;
}

.the-last-div {
  width: 90%;
}

.the-last-div ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.the-last-div li {
  padding-left: 5px;
  padding-right: 5px;
}

.the-last-div span {
  background-color: #7c96ab;
  padding: 4px;
  color: #fff;
}

.the-last-div span:hover {
  cursor: pointer;
}
