@font-face {
  font-family: "Nike Futura";
  src: url("fonts/Nike-Futura-ot-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nike Futura";
  src: url("fonts/Nike-Futura.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("fonts/HelveticaNowText.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("fonts/HelveticaNowTextMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("fonts/HelveticaNowDisplayMedium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nike Futura", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  height: 100%;
}

nav .nav-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding: 10px 55px;
}
nav .nav-1 > div:nth-child(1) i {
  font-size: 22px;
}
nav .nav-1 > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
nav .nav-1 > div:nth-child(2) h4 {
  font-weight: 500;
  font-size: 14px;
}
nav .nav-1 > div:nth-child(2) h4:not(:last-child) {
  border-right: 1px solid black;
  padding-right: 15px;
}
nav .nav-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: relative;
  padding: 8px 55px;
}
nav .nav-2 .left {
  height: 50px;
  width: 60px;
}
nav .nav-2 .left svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
nav .nav-2 .centre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav .nav-2 .centre h3 {
  font-weight: 550;
  font-size: 17px;
}
nav .nav-2 .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
nav .nav-2 .right > div:nth-child(1) {
  position: relative;
}
nav .nav-2 .right > div:nth-child(1) input {
  padding: 8px 0px;
  padding-left: 35px;
  border-radius: 20px;
  font-size: 16px;
  border: none;
  background-color: #F5F5F5;
  width: 170px;
  transition: background-color 0.3s ease;
}
nav .nav-2 .right > div:nth-child(1) input:hover {
  background-color: rgb(226, 222, 222);
}
nav .nav-2 .right > div:nth-child(1) i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #555;
}
nav .nav-2 .right > div:nth-child(2) i,
nav .nav-2 .right div:nth-child(3) i {
  font-size: 25px;
  font-weight: 400;
  color: rgb(107, 103, 103);
  padding: 5px 5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
nav .nav-2 .right > div:nth-child(2) i:hover,
nav .nav-2 .right div:nth-child(3) i:hover {
  background-color: rgb(226, 222, 222);
}

.gap {
  height: 7%;
  background-color: #F5F5F5;
}

.hero-section {
  height: 85%;
  background-image: url(assets/images/hero-img.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  padding-bottom: 100px;
}
.hero-section p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: -10px;
}
.hero-section h1 {
  font-size: 90px;
  font-family: "Anton", sans-serif;
  font-weight: 100;
}
.hero-section button {
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  font-size: 17px;
  background-color: white;
  color: black;
  transition: all ease 0.1s;
}
.hero-section button:hover {
  background-color: rgb(214, 204, 204);
}

section.girls {
  margin-top: 100px;
  height: 60%;
  width: 100%;
  padding: 0 50px;
}
section.girls h2 {
  font-size: 27px;
  padding-bottom: 25px;
  font-weight: 500;
}
section.girls .athlete-picks {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
section.girls .athlete-picks .athlete {
  display: flex;
  align-items: flex-end;
  padding: 45px 50px;
}
section.girls .athlete-picks .athlete button {
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  font-size: 17px;
  background-color: white;
  color: black;
  transition: all ease 0.1s;
}
section.girls .athlete-picks .athlete button:hover {
  background-color: rgb(214, 204, 204);
}
section.girls .athlete-picks .athlete-left {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/athlete-img-1.jpg);
  background-size: cover;
  background-position: center;
}
section.girls .athlete-picks .athlete-right {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/athlete-img-2.jpg);
  background-size: cover;
  background-position: center;
}

section.featured {
  margin-top: 130px;
  height: 100%;
  width: 100%;
  padding-bottom: 50px;
}
section.featured h2 {
  font-size: 27px;
  padding: 0 50px;
  padding-bottom: 25px;
  font-weight: 500;
}
section.featured .product {
  background-position: center;
  background-size: cover;
  color: white;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
}
section.featured .product h3 {
  font-size: 17px;
  font-weight: 500;
}
section.featured .product p {
  font-size: 23px;
}
section.featured .product button {
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  font-size: 17px;
  background-color: white;
  color: black;
  transition: all ease 0.1s;
}
section.featured .product button:hover {
  background-color: rgb(214, 204, 204);
}
section.featured .upper {
  height: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.featured .upper .product-left {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/prodcut-img-1.jpeg);
}
section.featured .upper .product-right {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/product-img-2.png);
}
section.featured .lower {
  height: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.featured .lower .product-left {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/product-img-3.png);
}
section.featured .lower .product-right {
  width: 50%;
  height: 100%;
  background-image: url(assets/images/product-img-4.png);
}

section.scroll-bar-1 {
  margin-top: 80px;
  width: 100%;
  height: 75%;
}
section.scroll-bar-1 .top {
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
section.scroll-bar-1 .top h2 {
  font-size: 27px;
  padding: 0 50px;
  padding-bottom: 25px;
  font-weight: 500;
}
section.scroll-bar-1 .top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
section.scroll-bar-1 .top .right h4 {
  font-size: 17px;
  font-weight: 500;
}
section.scroll-bar-1 .top .right i {
  padding: 15px 15px;
  border-radius: 50px;
  background-color: #E5E5E5;
  font-size: 20px;
  transition: all ease 0.2s;
}
section.scroll-bar-1 .top .right i:hover {
  background-color: rgb(202, 194, 194);
}
section.scroll-bar-1 .products-container {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  padding: 0 10px;
  overflow-x: auto;
  margin: 0 40px;
  scroll-behavior: smooth;
}
section.scroll-bar-1 .products-container .product-card {
  width: 450px;
  height: 100%;
  border-radius: 10px;
  flex-shrink: 0;
  padding: 10px 0;
}
section.scroll-bar-1 .products-container .product-card .img {
  width: 100%;
  height: 80%;
  background-size: cover;
}
section.scroll-bar-1 .products-container .product-card .img-1 {
  background-image: url(assets/images/scroll-1-img-1.jpeg);
}
section.scroll-bar-1 .products-container .product-card .img-2 {
  background-image: url(assets/images/scroll-1-img-2.png);
}
section.scroll-bar-1 .products-container .product-card .img-3 {
  background-image: url(assets/images/scroll-1-img-3.png);
}
section.scroll-bar-1 .products-container .product-card .img-4 {
  background-image: url(assets/images/scroll-1--img-4.png);
}
section.scroll-bar-1 .products-container .product-card .img-5 {
  background-image: url(assets/images/scroll-1-img-5.png);
}
section.scroll-bar-1 .products-container .product-card .img-6 {
  background-image: url(assets/images/scroll-1-img-6.png);
}
section.scroll-bar-1 .products-container .product-card .img-7 {
  background-image: url(assets/images/scroll-1-img-7.png);
}
section.scroll-bar-1 .products-container .product-card .img-8 {
  background-image: url(assets/images/scroll-1-img-8.png);
}
section.scroll-bar-1 .products-container .product-card .img-9 {
  background-image: url(assets/images/scroll-1-img-9.png);
}
section.scroll-bar-1 .products-container .product-card .img-10 {
  background-image: url(assets/images/scroll-1-img-10.png);
}
section.scroll-bar-1 .products-container .product-card .img-11 {
  background-image: url(assets/images/scroll-1-img-11.png);
}
section.scroll-bar-1 .products-container .product-card h4 {
  padding-top: 15px;
  font-size: 16px;
  font-weight: 550;
}
section.scroll-bar-1 .products-container .product-card p {
  padding-top: 7px;
  font-weight: 200;
}
section.scroll-bar-1 .products-container .product-card h3 {
  padding-top: 10px;
  font-weight: 500;
}

section.scroll-bar-2 {
  margin-top: 130px;
  width: 100%;
  height: 70%;
}
section.scroll-bar-2 .top {
  padding: 0 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
section.scroll-bar-2 .top h2 {
  font-size: 27px;
  padding: 0 50px;
  padding-bottom: 25px;
  font-weight: 500;
}
section.scroll-bar-2 .top .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
section.scroll-bar-2 .top .right h4 {
  font-size: 17px;
  font-weight: 500;
}
section.scroll-bar-2 .top .right i {
  padding: 15px 15px;
  border-radius: 50px;
  background-color: #E5E5E5;
  font-size: 20px;
  transition: all ease 0.2s;
}
section.scroll-bar-2 .top .right i:hover {
  background-color: rgb(202, 194, 194);
}
section.scroll-bar-2 .games-container {
  padding: 0 85px;
  height: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 0 40px;
}
section.scroll-bar-2 .games-container .game-card {
  width: 370px;
  height: 100%;
  flex-shrink: 0;
}
section.scroll-bar-2 .games-container .game-card .img {
  background-size: cover;
  width: 100%;
  height: 85%;
}
section.scroll-bar-2 .games-container .game-card .img-1 {
  background-image: url(assets/images/scrolll-2-img-1.png);
}
section.scroll-bar-2 .games-container .game-card .img-2 {
  background-image: url(assets/images/scroll-2-img-2.png);
}
section.scroll-bar-2 .games-container .game-card .img-3 {
  background-image: url(assets/images/scroll-2-img-3.jpg);
}
section.scroll-bar-2 .games-container .game-card .img-4 {
  background-image: url(assets/images/scroll-2-img-4.png);
}
section.scroll-bar-2 .games-container .game-card .img-5 {
  background-image: url(assets/images/scroll-2-img-5.png);
}
section.scroll-bar-2 .games-container .game-card .img-6 {
  background-image: url(assets/images/scroll-2-omg-6.png);
}
section.scroll-bar-2 .games-container .game-card h2 {
  padding-top: 25px;
  font-size: 22px;
  font-weight: 500;
}

section.shoes {
  margin-top: 150px;
  width: 100%;
  height: 45%;
}
section.shoes .top {
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
section.shoes .top h2 {
  font-size: 24px;
  font-weight: 500;
}
section.shoes .shoes-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  transition: all ease 0.3s;
}
section.shoes .shoes-container .shoes-card {
  width: 400px;
  height: 100%;
  flex-shrink: 0;
}
section.shoes .shoes-container .shoes-card .img {
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  width: 90%;
  height: 100%;
}
section.shoes .shoes-container .shoes-card .img-1 {
  background-image: url(assets/images/shoe-img-1.jpg);
}
section.shoes .shoes-container .shoes-card .img-2 {
  background-image: url(assets/images/shoe-img-2.jpg);
}
section.shoes .shoes-container .shoes-card .img-3 {
  background-image: url(assets/images/shoe-img-3.jpg);
}
section.shoes .shoes-container .shoes-card .img-4 {
  background-image: url(assets/images/shoe-img-4.jpg);
}
section.shoes .shoes-container .shoes-card .img-5 {
  background-image: url(assets/images/shoe-img-5.jpg);
}
section.shoes .shoes-container .shoes-card .img-6 {
  background-image: url(assets/images/shoe-img-6.jpg);
}
section.shoes .shoes-container .shoes-card .img-7 {
  background-image: url(assets/images/shoe-img-7.jpg);
}

footer {
  padding: 0 50px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 35px;
  padding-bottom: 60px;
}
footer h4 {
  font-weight: 200;
  font-size: 15px;
}/*# sourceMappingURL=style.css.map */