@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
  background-color: #f4f4ec;
}

/* Header Start */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #164e46;
  box-shadow: 0 5px 15px rgb(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar.active {
  right: 0;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #f4f4ec;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #f4f4ec;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #f4f4ec;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

/* Home Page */

#hero {
  height: 100vh;
  background: linear-gradient(180deg, #f4f4ec, #f4f4ec9c 60%);
  display: flex;
  padding: 0 80px;
  align-items: center;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-left: 120px;
  line-height: 1.1;
}

.hero-left h2 {
  color: #242422;
  font-size: 26px;
  font-weight: 600;
}

.hero-left p{
  color: #242422;
  font-size: 70px;
  font-weight: 700;
}

.hero-left button, #About-head button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 310px;
  height: 70px;
  border-radius: 75px;
  margin: 30px;
  background-color: #164e46;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border:0;
}

.hero-left .btn-2 {
  background-color: #00348d
}

.hero-left .btn-3 {
  background-color: #c50019
}

button:hover {
  background-color: #164e46e5;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right img {
  mask-image: linear-gradient(
      black 80%, transparent
  );
}

#feature .fe-box {
  width: 100%;
  text-align: center;
  padding: 25px 15px;
  border-radius: 4px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fe-box img {
  margin: 15px;
  width: 100px;
  cursor: pointer;
  filter: grayscale(100%);
}

.fe-box img:hover {
  filter: grayscale(0%);
}

#product1 {
  text-align: center;

}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #164e46;
}

#product1 .pro .fa-shopping-cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  border: 1px solid#cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/*Footer*/

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background: #164e46;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 50px;
  color: white;
  font-size: 20px;
}

.footer-links li {
  cursor: pointer;
}

.footer-social-icon {
  display: flex;
  gap: 20px;
}

.footer-icons-container {
  padding: 10px;
  padding-bottom: 6px;
}

.footer-icons-container a {
  color: white;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-area: 30px;
  width: 100%;
  margin-bottom: 30px;
  color: white;
  font-size: 20px;
}

.footer-copyright hr {
  width: 80%;
  border: none;
  border-radius: 10px;
  height: 3px;
  background-color: #c7c7c7;
}

footer p {
  color: white;
}

/* Shop Page */

#page-header, #page-header-2, #page-header-3, #page-header-4 {
  background-image: url(Assets/banner_combos.png);
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header-2 {
 background-image: url(Assets/Banner_Juegos_NS.png);
}

#page-header-3 {
  background-image: url(Assets/banner_reseller.png);
}

#page-header-4 {
  background-image: url(Assets/Banner_Juegos_PS4-PS5.png);
}

#pagination {
  text-align: center;
}

#pagination a {
  color: #fff;
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 600;
}

#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

/* Singel Product */

#prodetails {
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-details {
  width: 50%;
  padding-top: 30px;
}

#prodetails .single-pro-details h4 {
  padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2 {
  font-size: 26px;
}

#prodetails .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#prodetails .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}

#prodetails .single-pro-details input:focus {
  outline: none;
}

#prodetails .single-pro-details button{
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 310px;
  height: 70px;
  border-radius: 75px;
  margin: 30px;
  background-color: #164e46;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border:0;
}

#prodetails .single-pro-details span {
  line-height: 25px;

}

#prodetails .single-pro-image {
  width: 40%;
  margin-right: 50px;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

/*Blog Page*/

/*Contact*/

#title {
  height: 80vh;
  background: linear-gradient(180deg, #f4f4ec, #f4f4ec9c 60%);
  display: flex;
  padding: 0 80px;
  align-items: center;
}

.sub-title {
  text-align: center;
}

.fa-solid, .fa-regular, .fa-brands {
  color:#164e46;
}


footer .fa-solid, .fa-regular, .fa-brands {
  color: white;
}

.hero-left .fa-solid, #About-head button .fa-solid {
  color: white;
}

.hero-left a, #About-head a {
  text-decoration: none;
}

.contact-icon .fa-solid, .fa-brands {
  color: #164e46;
}

/*About*/

#About-head {
  display: flex;
  align-items: center;
}

#About-head img{
  width: 50%;
  height: auto;
}

#About-head div {
  padding-left: 40px;
}

/*Start media Query*/

#mobile {
  display: none;
  align-items: center;
}

#mobile i, a{
  color: white;
}

#close {
  display: none;
}

#close i {
  color: white;
}

@media (max-width:1280px) {
  .hero-left{
    padding-left: 100px;
  }
  .hero-left h2 {
    font-size: 22px;
  }
  .hero-left p {
    font-size: 60px;
  }
  #hero-latest-btn {
    gap: 10px;
    width: 350px;
    height: 60px;
    margin-top: 20px;
    font-size: 18px;
  }
  .hero-right img {
    width: 500px;
  }
  #page-header, #page-header-2 {
    height: 20vh;
  }
}

@media (max-width:1024px) {
  .hero-left{
    padding-left: 80px;
  }
  .hero-left h2 {
    font-size: 20px;
  }
  .hero-left p {
    font-size: 50px;
  }
  #hero-latest-btn {
    width: 220px;
    height: 50px;
    font-size: 16px;
  }
  .hero-right img {
    width: 400px;
  }
  #page-header, #page-header-2, #page-header-3, #page-header-4 {
    height: 20vh;
  }
}

@media (max-width:800px) {
  .hero-left{
    padding-left: 30px;
  }
  .hero-left h2 {
    font-size: 16px;
  }
  .hero-left p {
    font-size: 40px;
  }
  #hero-latest-btn {
    width: 250px;
    height: 40px;
    font-size: 13px;
  }
  .hero-right img {
    width: 300px;
  }
  #feature {
    justify-content: center;
  }
  #feature .fe-box {
    margin: 15px 15px;
  }
  .section-p1 {
    padding: 40px 40px;
  }
  #product1 .pro-container {
    justify-content: center;
  }
  #product1 .pro {
    margin: 15px;
  }
}

@media (max-width:900px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #164e46;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }
  #navbar li {
    margin-bottom: 25px;
  }
  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i {
    font-size: 24px;
    padding-left: 20px;
  }
  #close {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 24px;
    display: initial;
  }
  #lg-bag {
    display: none;
  }
  #hero , #title {
    flex-direction: column;
    text-align: center;
  }
  .hero-left{
    padding-left: 30px;
  }
  .hero-left h2 {
    font-size: 16px;
  }
  .hero-left p {
    font-size: 40px;
  }
  #hero-latest-btn {
    width: 250px;
    height: 40px;
    font-size: 13px;
  }
  .hero-right img {
    width: 300px;
  }
  footer ul {
    flex-direction: column;
    text-align: center;
  }
  footer p {
    margin: 20px;
    text-align: center;
  }

  #prodetails {
    display: flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .single-pro-details {
    width: 100%;
  }
  #page-header, #page-header-2, #page-header-3, #page-header-4 {
    height: 15vh;
  }
}

@media (max-width:500px) {
  #hero , #title{
    flex-direction: column;
  }
  .hero-right {
    display: none;
  }
  .hero-left h2 {
    font-size: 18px;
  }
  .hero-left p {
    font-size: 50px;
  }
  .hero-latest-btn, #prodetails .single-pro-details button, #About-head button {
    align-items: center;
    width: 200px;
    height: 45px;
    font-size: 14px;
  }
  #prodetails {
    display: flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .single-pro-details {
    width: 100%;
  }
  #page-header, #page-header-2, #page-header-3, #page-header-4 {
    height: 12vh;
  }
}

@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }
  #header {
    padding: 10px 30px;
  }
  h2 {
    font-size: 32px;
  }
  h1 {
    font-size: 38px;
  }
  #feature .fe-box {
    margin: 0 0 15px 0;
  }
  #product1 .pro {
    width: 100%;
  }

  /*single product*/

  #prodetails {
    display: flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .single-pro-details {
    width: 100%;
  }
  #page-header, #page-header-2, #page-header-3, #page-header-4 {
    height: 10vh;
  }

  /* About Page */

  #About-head {
    flex-direction: column;
  }
  #About-head img{
    width: 100%;
    margin-bottom: 20px;
  }
  #About-head div {
    padding-left: 0px;
  }
}