@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Unified Gradient Background */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.hero-bg {
  background: url(../img/hero-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Ensure the dropdown stays visible on hover */
.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Optional: Add a little delay to the hover effect for a smoother transition */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.hero-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 600;

  font-size: 68px;
}

.hero-sm-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;

  font-size: 50px;
}
.button-group {
  display: flex;
  gap: 10px;
}

.chat-button {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  padding: 10px 40px;
  font-weight: 600;
  background-color: #e30613;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
}

.call-button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 19px;
  font-weight: 600;
  padding: 10px 43px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-jersey {
  background-color: #030303;
  color: white;
}
/* Optional hover effects */
.chat-button:hover {
  background-color: #c4000f;
}

.call-button:hover {
  background-color: #f2f2f2;
}

.text-high {
  font-weight: 600;
  font-size: 30px;
}

.text-sec {
  font-size: 20px;
}

.text-design {
  font-weight: 600;
  font-size: 18px;
}

/* Logo */
.logo-img {
  max-width: 180px;
}

/* Capsule Navbar */
.dropdown-toggle::after {
  display: none !important;
}

.nav-link:focus,
.nav-link:active,
.nav-link:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:hover {
  outline: none;
  box-shadow: none;
  border: none;
}

.fa-chevron-circle-down:before,
.fa-circle-chevron-down:before {
  color: #ff3f3f;
}

.capsule-nav {
  background: black;
  border: solid #ffffff;
  border-width: 0px 2px 0px 2px;

  border-radius: 21px;
  max-width: 90%;
}

/* Base nav link style */
.nav-link {
  padding-left: 25px !important;
  font-size: 15px;
  color: white !important;
  font-weight: 600;
  position: relative;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

/* Red dropdown arrow always visible */
/* .nav-link::after {
  content: "▼";
  font-size: 0.6rem;
  color: red;
  margin-left: 6px;
  position: relative;
  top: -1px;
} */

/* Hover underline effect: black to red with glow */
.nav-link:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, black, red, black);
  box-shadow: 0 0 6px red;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  padding: 60px 0;
  color: white;
}

/* Player Image */
.player-img {
  max-height: 400px;
  object-fit: contain;
}

.features-section {
  background-color: #000;
  border-radius: 1rem;
  width: 88%;
  margin: auto;
  margin-top: -51px;
}

.features-section .feature-item i {
  color: white;
}

.features-section .small-text {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
}

.features-section .sub-text {
  font-size: 0.8rem;
  font-weight: 300;
  display: inline-block;
}

/* Category Section */
.category-main-section {
  font-family: "Oswald", sans-serif;
  background-color: #fff;
}

.category-subtitle {
  font-family: sans-serif;

  color: #444;
  margin-bottom: 30px;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.category-wrapper {
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  background-repeat: no-repeat;
}
.category-wrapper:hover {
  /* border-radius: 0; */
}
/* .category-wrapper:hover .category-box img {
  filter: brightness(0.4);
} */

.category-label {
  background-color: red;
  color: white;
  font-size: 23px;
  padding: 11px 0;
  border-radius: 0 0 12px 12px;
  margin-top: -10px;
  transition: opacity 0.3s ease;
  font-weight: 600;
}
.category-wrapper:hover .category-label {
  opacity: 0;
}

.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;

  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.3rem;
}

.category-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;

  font-weight: 500;
  color: #000;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.category-flex-item {
  width: 20%;
  padding: 12px;
  box-sizing: border-box;
}

.category-wrapper {
  transition: all 0.3s ease;
  text-align: center;
}

.category-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-box img {
  width: 100%;
  /* height: 190px; */
  display: block;
  transition: filter 0.3s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 0, 0, 0.85); /* semi-transparent red */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 15px; /* match image rounding */
  text-align: center;
}

.category-wrapper:hover .category-overlay {
  opacity: 0.85;
}

.category-overlay-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 3;
}

.category-wrapper:hover .category-label {
  opacity: 0;
}

.bottom-fade-line {
  height: 8px;
  width: 100%;
  background: linear-gradient(to right, transparent, red, transparent);
  margin-top: 40px;
}

.uniforms-hero-final {
  font-family: "Poppins", sans-serif;
  position: relative;
  /* background-image: url("../img/Second Section BG.png"), url("../img/Second Section.png");
    background-repeat: no-repeat, no-repeat;
    background-position: right top, right -70px;
    background-size: auto, cover; */
  background: url("../img/Second Section BG.png") no-repeat right top,
    url("../img/Second Section.png") no-repeat right -12px;

  /* background: url("../img/Second\ Section\ BG.png") no-repeat right top,
    url("../img/Second\ Section.png") no-repeat right center;
   */

  background-size: contain, cover;
  background-color: #fff;

  padding-bottom: 40px;
  z-index: 1;
}

.uniforms-text-content {
  position: relative;
  z-index: 2;
}

.uniforms-hero-final .container {
  padding: 63px 1px;
}

.uniforms-title {
  padding-bottom: 70px;

  color: #111;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 50px;
}

.uniforms-title span {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 68px;
  display: block;
}

.uniforms-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.8rem;
}

.uniforms-detail {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.portfolio-carousel-section {
  background: linear-gradient(to right, #007bff 0%, #005fbf 50%, #00bfff 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
}

.portfolio-heading {
  font-size: 2rem;
  font-weight: 700;
}

.portfolio-subheading {
  font-size: 22px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
}

.portfolio-slide img {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #004a99;
  transition: transform 0.3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.05);
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.portfolio-bottom-line {
  margin: 0px auto 10px;
  height: 8px;
  width: 100%;
  max-width: 600px;
  background: linear-gradient(to right, transparent, red, transparent);
  border-radius: 50px;
}

.portfolio-trusted {
  font-size: 2rem;
  padding-top: 31px;

  font-weight: 600;
}

.deals-section {
  font-family: "Poppins", sans-serif;
  background: #fff;
  padding: 60px 20px;
}

.deals-title {
  font-size: 2rem;
  font-weight: 700;
  color: #505050;
}

.deal-card {
  border: 1px solid rgb(165, 165, 255);
  padding: 8px;
  border-radius: 8px;
}

.deals-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: #444;
  max-width: 707px;
  margin: 0 auto 30px;
}

.deal-card img {
  border: 1px solid #ccc;
}

.deals-btn {
  background: radial-gradient(ellipse at bottom, #ff0000 0%, #000 80%);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 700;
  text-decoration: none;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.deals-btn:hover {
  opacity: 0.9;
}

.customize-wrapper {
  /* background: linear-gradient(135deg, #0076d7 0%, #0298df 100%); */
  background-image: url("../img/Customize\ More\ BG.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.customize-wrapper .custom-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.customize-wrapper .custom-subtitle {
  font-size: 1.25rem;
  color: #fff;
  font-style: italic;
}

.customize-wrapper .custom-subtitle em {
  font-size: 1.7rem;
}

.customize-wrapper .custom-description {
  font-size: 1.4rem;
  color: #fff;
  max-width: 600px;
}

.customize-wrapper .custom-box {
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  padding: 30px 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customize-wrapper .custom-box img {
  transform: scale(1.08);
  width: 100%;
  height: auto;
}

.customize-wrapper .custom-accessory-box {
  background-color: #fff;
  border-radius: 256px / 290px;
  min-height: 220px;
  padding: 28px 0;
  box-sizing: border-box;
}
.accessory-img {
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 10px;
}
.accessory-img span {
  font-size: 23px;
  font-weight: 700;
}
.customize-wrapper .accessory-text {
  margin-top: -72px;
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
}

.customize-wrapper .accessory-heading {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.customize-wrapper .accessory-heading span {
  font-size: 1.8rem;
}

.review-wrapper {
  background-color: #f9f9f9;
}

.review-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.review-brand .google-logo {
  height: 90px;
}

.custom-review-card {
  background: url("../img/Review Tab Box.png") no-repeat center top;
  background-size: contain;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  padding: 100px 20px 30px;
  margin: auto;
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Name pill (already part of image, so optional text only) */
.review-name {
  margin-top: -43px;

  padding-top: 25px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}

/* Main review text */
.review-text {
  padding-top: 25px;
  font-size: 1rem;

  font-style: italic;
  color: #444;
  line-height: 1.4;
  margin-bottom: 15px;
}

.google-text {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.google-text .stars {
  color: #f7941e;
  margin-left: 5px;
}

.review-slide {
  transition: all 0.4s ease;
}

.review-card {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Active Slide Enlarged */
.swiper-slide-active .review-card {
  transform: scale(1.05);
  padding: 28px 20px;
  border: 3px solid #009ce1;
}

.quote-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000;
}

.review-stars {
  font-size: 1.3rem;
  color: #fcb900;
}

/* Arrows */
.review-nav.swiper-button-prev,
.review-nav.swiper-button-next {
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.review-nav::after {
  font-size: 16px;
}

.blog-section {
  background-color: #fff;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  position: relative;
  display: inline-block;
}

.blog-card {
  text-align: left;
}

.blog-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #505050;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.blog-date {
  font-size: 0.85rem;
  color: #777;
}

.blog-view-all {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.blog-view-all:hover {
  background: #ed1c24;
  color: #fff;
}

.footer-wrapper {
  background: #fff;
  font-size: 14px;
  color: #333;
  border-top: 4px solid rgb(209, 209, 209);
}

.footer-logo {
  max-width: 160px;
}

.footer-social-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}

.footer-social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  color: #000;
  border-radius: 4px;
  width: 34px;
  height: 34px;
  font-size: 16px;
  text-decoration: none;
}

.footer-title {
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "•";
  color: #bbb;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.footer-links a {
  text-decoration: none;
  color: #505050;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  color: #505050;
}

.contact-icon {
  color: #9c9c9c;
  margin-right: 10px;
  font-size: 14px;
  width: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  background: #222;
  color: #fff;
  font-size: 13px;
}

.footer-payment img {
  height: 30px;
}

.navbar-toggler {
  color: rgb(212, 212, 212);
  border-color: rgb(212, 212, 212);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.feature-item img {
  height: 53px;
}
.swiper-pagination-bullet-active {
  background: #000000 !important;
}
.swiper-wrapper {
  padding-bottom: 40px !important;
}
.mobile-header .form-control {
  border-radius: 10px 0 0 10px;
}

.mobile-header .btn {
  border-radius: 10px;
  background: #001476;
}
.category-wrapper:hover .category-box img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature-width {
  width: 20%;
}
.btn-jersey:hover {
    background-color: #030303;
    color: white;
}
.customize-mob{
      display: none;
    }
    .fotter-contact li{
            padding-top: 6px;
    }
   
@media (max-width: 576px) {
  .header-lg {
    display: none !important;
  }
  .capsule-nav {
    background: none;
    border: none;
    border-width: 0;
    border-radius: 0;
    max-width: 100%;
  }

  .footer-payment {
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-brand .google-logo {
    height: 100%;
    width: 100%;
  }

  .logo-img {
    max-width: 125px;
  }

  .hero-sm-title {
    font-size: 36px;
    font-weight: 600;
  }

  .hero-heading {
    font-size: 45px;
    font-weight: 700;
  }
  .text-design {
    font-weight: 500;
  }
  .text-bold {
    display: none;
  }
  .button-group {
    justify-content: center;
  }
  .hero-mob {
    display: block !important;
  }
  .text-high {
    font-size: 23px;

    margin-bottom: 0;
  }

  .text-sec {
    font-size: 14px;
  }

  .features-section .small-text {
    font-size: 0.8rem;
  }

  .feature-item img {
    height: 40px;
  }

  .feature-item-last {
    width: 50% !important;
  }
  .feature-width {
    width: 33%;
  }

  .features-section .sub-text {
    font-size: 0.77em;
  }
  .category-title {
    font-size: 1.7rem;
  }
  .category-subtitle {
    font-size: 1.5rem;
  }
  .portfolio-carousel-section {
    background: linear-gradient(to right, #0071e9, #00bfff 1358%);
  }
  .portfolio-subheading {
    font-size: 1rem !important;
  }
  .portfolio-trusted {
    font-size: 21px !important;
  }
  .portfolio-trusted svg {
    width: 25px;
  }
  .uniforms-hero-final {
    background-position: left top, left 459px;
  }

  .custom-review-card {
    max-width: 100%;
    padding: 145px 73px 6px;
  }

  .review-text {
    font-size: 1rem;
    padding-top: 0px;
  }

  .review-stars {
    font-size: 1.1rem;
  }

  .quote-icon {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 50px 0;
  }
  #mobileMenu ul li {
    border-bottom: 2px solid #019eb7;
  }
  .collapse {
    width: 100%;
    background: #001476;
  }
  .uniforms-hero-final .container {
    padding: 13px 1px;
  }
}

/* Responsive for 5 to 1 items per row */
@media (max-width: 1200px) {
  .category-flex-item {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .category-flex-item {
    width: 33.3333%;
  }

  .uniforms-title {
    font-size: 2rem;
  }

  .uniforms-title span {
    font-size: 1.8rem;
  }

  .uniforms-intro {
    font-size: 1rem;
  }

  .uniforms-detail {
    font-size: 1rem;
  }

  .uniforms-hero-final {
    background-size: 60%, cover;
    background-position: right top, left 404px;
  }

  /* .custom-accessory-box img {
    padding-top: 35px;
  } */
}

@media (max-width: 768px) {
  .review-title {
    font-size: 1.5rem;
  }

  .google-logo {
    height: 30px;
  }

  .review-card {
    padding: 18px;
  }

  .swiper-slide-active .review-card {
    padding: 22px;
  }

  .customize-wrapper .custom-title {
    font-size: 2rem;
  }

  .customize-wrapper .custom-subtitle em {
    font-size: 1.1rem;
  }

  .customize-wrapper .custom-description {
    font-size: 0.8rem;
  }

  .customize-wrapper .accessory-text {
    margin-top: -50px;
    font-size: 1rem;
  }

  .customize-wrapper .accessory-heading {
    font-size: 1.2rem;
  }

  .customize-wrapper .accessory-heading span {
    font-size: 1.4rem;
  }

  .customize-wrapper .custom-box img {
    transform: scale(1.03);
  }

  .category-flex-item {
    width: 50%;
  }

  .portfolio-heading,
  .deals-subtitle {
    font-size: 1.8rem;
  }

  .portfolio-subheading,
  .portfolio-trusted,
  .deals-subtitle {
    font-size: 0.95rem;
  }

  .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .category-flex-item {
    width: 100%;
    padding: 4px;
  }

  .uniforms-title {
    font-size: 1.72rem;
    font-weight: 700;
    padding-bottom: 10px;
  }

  .uniforms-title span {
    font-size: 2.3rem;
  }

  .uniforms-hero-final {
    background-size: 100%, cover;
    padding: 40px 15px;
  }

  .category-box img {
    width: 100%;
    height: 100%;
  }
  .category-label {
    background-color: red;
    color: white;
    font-size: 25px;
    padding: 11px 0;
    border-radius: 0 0 12px 12px;
    margin-top: -8px;
    transition: opacity 0.3s ease;
    font-weight: 600;
  }

  .swiper-wrapper {
    padding-bottom: 30px;
  }
  .category-swiper {
    display: block !important;
  }
  .category-grid {
    display: none !important;
  }
  .uniforms-hero-final .button-group {
    display: none;
  }
  .swiper-wrapper {
    padding-bottom: 53px;
  }
  .portfolio-trusted {
    padding-top: 08px;
  }
  .deals-title {
    font-size: 1.3rem;
  }
  .customize-wrapper .custom-accessory-box {
    background-color: #fff;
    border-radius: 33px / 43px;
  }
  .customize-wrapper .custom-accessory-box {
    padding: 56px 0;
  }
  .review-wrapper {
    padding-bottom: 0 !important;
  }
  .deals-title {
    font-size: 1.6rem;
  }
  .deals-subtitle {
    font-size: 1rem;
  }
  .blog-card-title {
    font-size: 0.8rem;
  }
  .customize-wrapper .custom-box {
    padding: 10px;
  }
  .accessory-img {
    font-size: 14px;
  }
  .accessory-img span {
    font-size: 20px;
  }
    .category-subtitle {
        font-size: 1.1rem;
    }
      .customize-mob{
      display: block !important;
    }
    .custom-accessory-box{
      display: none;
    }
}

@media (max-width: 991.98px) {
  .nav-indicator {
    position: static;
    display: block;
    margin: 4px auto 0;
  }
}

@media (min-width: 1367px) {
  .capsule-nav {
    padding: 11px 0px !important;
  }
  .nav-link {
    font-size: 18px;
  }
  .container {
    padding: 0 39px;
    max-width: 1540px;
  }
  .hero-heading {
    font-size: 90px;
    font-weight: 700;
  }
  .hero-sm-title {
    font-size: 70px;
  }
  .text-high {
    font-size: 40px;
  }
  .text-design {
    font-weight: 400;
    font-size: 29px;
  }
  .text-sec {
    font-size: 27px;
    font-weight: 300;
  }
  .feature-width {
    width: 20%;
  }
  .features-section .small-text {
    font-size: 1.1rem;
  }

  .category-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem !important;
  }
  .uniforms-title span {
    font-size: 92px;
  }
  .uniforms-title {
    font-size: 70px;
  }
  .uniforms-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a4444;
  }
  .uniforms-detail {
    font-size: 1.36rem;
  }
  .uniforms-hero-final {
    /* background: url("../img/Second\ Section\ BG.png") no-repeat right top,
    url("../img/Second\ Section.png") no-repeat right -70px; */
    background-image: url("../img/Second Section BG.png"),
      url("../img/Second Section.png");
    background-repeat: no-repeat, no-repeat;
    background-position: right top, right -40px;
    background-size: auto, cover;
  }
  .portfolio-heading {
    font-size: 3.4rem;
  }
  .portfolio-subheading {
    font-size: 2rem;
  }
  .portfolio-carousel-section {
    background: linear-gradient(
      to right,
      #007bff 0%,
      #005fbf 50%,
      #00bfff 100%
    );
  }
  .portfolio-trusted {
    font-size: 2.7rem;
    padding-top: 0;
  }

  .swiper-wrapper {
    padding-bottom: 50px;
  }
  .deals-title {
    font-size: 3.4rem;
  }
  .deals-subtitle {
    font-size: 2rem;
    max-width: 100%;
    font-weight: 500;
  }
  .deals-btn {
    font-size: 20px;
    padding: 12px 43px;
  }
  .customize-wrapper .custom-title {
    font-size: 3.5rem;
  }
  .customize-wrapper .custom-subtitle em {
    font-size: 2rem;
  }
  .customize-wrapper .custom-description {
    font-size: 1.6rem;
  }
  .custom-review-card {
    max-width: 520px;
  }
  .review-text {
    padding: 100px 20px;
    padding-bottom: 0;
    font-size: 1.4rem;
  }
  .blog-card-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) and (max-width: 1480px) {
  .nav-link {
    font-size: 14px;
  }
}

@media (min-width: 1900px) {
  .container {
    max-width: 1740px;
  }
  .uniforms-hero-final {
    background-position: right top, right -53px;
  }
  .uniforms-intro {
    font-size: 1.7rem;
  }
  .uniforms-detail {
    font-size: 1.7rem;
  }
  .chat-button,
  .call-button {
    font-size: 30px;
  }
  .features-section .small-text {
    font-size: 1.5rem;
  }
  .category-label {
    font-size: 33px;
  }
  .features-section .sub-text {
    font-size: 1.2rem;
  }
  .footer-links a,
  .footer-contact li {
    font-size: 18px;
  }
  .contact-icon {
    padding-top: 8px;
  }
  .deal-card img {
    height: 510px;
  }
  .category-title {
    font-size: 3.4rem;
  }
      .category-label {
        font-size: 20px;
}
  .category-subtitle {
    font-size: 2rem !important  ;
  }
  .customize-wrapper .custom-title {
    font-size: 4rem;
  }
  .customize-wrapper .custom-subtitle em {
    font-size: 2.1rem;
  }
  .customize-wrapper .custom-description {
    font-size: 1.61rem;
  }
  .accessory-img span {
    font-size: 31px;
  }
  .accessory-img {
    font-size: 23px;
  }
  .nav-link {
    font-size: 24px;
  }
  .player-img {
    max-height: 684px;
    width: 825px;
  }
  .hero-heading {
    font-size: 100px;
  }
  .hero-sm-title {
    font-size: 79px;
  }
  .text-high {
    font-size: 46px;
  }
  .text-design {
    font-size: 35px;
  }
  .text-sec {
    font-size: 27px;
  }
  .feature-item {
    /* padding-right: 39px; */
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .feature-item img {
    height: 86px;
}
    .uniforms-title span {
        font-size: 100px;
    }
        .uniforms-title {
        font-size: 76px;
    }
    .uniforms-title {
    padding-bottom: 101px;
    }
    .customize-wrapper .custom-box {
    padding: 15px 28px !important;
    }
}



@media (max-width: 389px) {
    .hero-heading {
        font-size: 39px;
    }
        .hero-sm-title {
        font-size: 30px;

        }
        .chat-button {
    padding: 10px 30px;
        }
            .features-section .small-text {
        font-size: 0.7rem;
    }
          .uniforms-hero-final {
        background-size: 60%, cover;
        background-position: right top, left 473px;
    }
  }
  
  
    @media (min-width: 1380px)  and (max-width: 1680px) {
    .hero-heading {
        font-size: 84px;
    }
        .hero-sm-title {
        font-size: 67px;
        }
        .player-img {
    max-height: 100%;
        }
        .container{
          max-width: 1450px;
        }
        .uniforms-hero-final .container {
    padding: 63px 39px;
}

    .uniforms-hero-final {
        background-position: right top, right -20px;
    }
  }