@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --orange: hsl(26, 100%, 55%);
  --pale-orange: hsl(25, 100%, 94%);
  --very-dark-blue: hsl(240, 2%, 11%);
  --dark-grayish-blue: hsl(219, 9%, 45%);
  --grayish-blue: hsl(220, 14%, 75%);
  --light-grayish-blue: hsl(223, 64%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
}
body {
  font-family:  "Kumbh Sans", sans-serif;
  max-width: 1536px;
  margin: 0 auto;
}
p {
  font-size: 16px;
}
ul {
  list-style: none;
  display: none;
}
.container {
  padding: 20px 12px;
  /* border: 4px solid red; */
  max-width: 1400px;
  margin: 0 auto;
}
/* nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-section-1a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-section-2 {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
/* .nav-section-2a{
    max-width: 100%;
}
.nav-section-2a img{
    max-width: 100%;
}
.nav-section-2b{
    max-width: 20%;
}
.nav-section-2b img{
    max-width: 100%;
} */
.nav-section-2 div:last-child {
  max-width: 20%;
}
.nav-section-2 div:last-child img {
  max-width: 100%;
}
/* main */
.div-1-hero-img img {
  max-width: 100%;
}
.sneakers-div {
  position: relative;
}
.div-2 {
  position: absolute;
  bottom: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
  left: 0;
  right: 0;
}
.arrow-divs {
  background-color: white;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 19px;
}
.thumbnail-wrapper {
  display: none;
}
/* section-2 */
.section-2-div-1 h4 {
  color: var(--grayish-blue);
  font-weight: 700;
  font-size: 19px;
  /* padding-bottom: 10px; */
}
.section-2-div-1 h1 {
  font-size: 2rem;
  padding: 10px 0;
}
.section-2-div-2 > p {
  color: var(--grayish-blue);
  line-height: 1.9;
  font-size: 16px;
}
.section-2-div-2-a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.section-2-div-2-a-inner {
  display: flex;
  gap: 15px;
  align-items: center;
}
.section-2-div-2-a-inner h1 {
  font-size: 1.9rem;
}
.section-2-div-2-a-inner h5 {
  background-color: var(--black);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 8px;
}
.section-2-div-2-a p {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-grayish-blue);
  text-decoration: line-through;
}
/* add to cart */
.inc-and-dec {
  background-color: var(--light-grayish-blue);
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  margin-bottom: 15px;
  border-radius: 10px;
}
.add-to-cart-btn {
  margin-bottom: 14px;
}
.add-to-cart-btn button {
  min-width: 100%;
  background-color: var(--orange);
  border: none;
  height: 4rem;
  border-radius: 10px;
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .container {
    padding: 20px 150px;
  }
  .nav {
    /* border-bottom: 1px solid var(--pale-orange); */
    margin-bottom: 5.5rem;
  }
  ul {
    display: flex;
    gap: 20px;
    color: var(--dark-grayish-blue);
  }
  .nav-section-1 {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .nav-logo-wrapper {
    display: none;
  }
  .div-2 {
    display: none;
  }
  .section-1 {
  }
  .main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 150px;
    display: grid;
    align-items: center;
    grid-template-columns: 1.3fr 1fr;
  }
  .thumbnail-wrapper{
    display: flex;
    padding-top: 2rem;
    justify-content: space-between;
  }

  .thumbnail-wrapper img{
    border-radius: 13px;
  }

  .thumbnail-1 img{
    border: 4px solid var(--orange);

  }
  .section-1-main-div, .thumbnail-wrapper img{
    max-width: 80%;
    
  }

  .section-2, .section-1{
    padding: 0 30px;
  }

  .section-2-div-2-a{
    /* display: flex; */
    padding-top: 1rem;
    justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  }

  .div-1-hero-img img{
    border-radius: 12px;
  }

  .div-2-b{
/* display: flex; */
/* justify-content: space-between; */
display: grid;
grid-template-columns: 1fr 1.6fr;
  }

  .section-2-div-1 h4{
    font-size: 13px;
  }


.add-to-cart-btn button{
  font-family:  "Kumbh Sans", sans-serif;
  font-size: 20px;

}

}