@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

body {
  margin: 0;
  padding: 0;
}

.navAll {
  width: 100%;
  height: 100px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 100;
}

.logos {
  width: 200px;
  height: auto;
  margin-left: 50px;
  z-index: 100;
}

.naviLinks {
  width: auto;
  height: auto;
  /* background-color: rgb(233, 194, 143); */

  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 100;
}

.naviLinks a {
  text-decoration: none;
  color: rgb(97, 97, 97);
  margin: 0 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.naviLinks a:hover {
  color: #fc0102 !important;
  font-weight: 700 !important;
}

.active {
  color: #fc0102 !important;
  font-weight: 700 !important;
}

.naviLinks i {
  margin-left: 3px;
}

/* Nav Drop down On Hover */

.prd-drop-dwn {
  list-style: none;
  background-color: rgb(106, 96, 116);
  padding-left: 0;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  top: 62px;
  right: 380px;
  height: auto;
  width: 150px;
  display: none;
}

.prd-drop-dwn li {
  margin-bottom: 10px;
}

.naviLinks .products:hover + .prd-drop-dwn {
  display: block;
}

.prd-drop-dwn:hover {
  display: block;
}

.prd-drop-dwn a {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.prd-drop-dwn a:hover {
  color: rgb(255, 255, 255) !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* */

.socialIcons {
  width: auto;
  height: auto;
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  margin-left: 30px;
  margin-right: 50px;
}

.socialIcons i {
  font-size: 24px;
  margin: 0 10px;
  color: #7b7b7b;
  cursor: pointer;
  z-index: 100;
}

.hambrugerIcon {
  color: #817f7f;
  font-size: 24px;
  display: none;
}

/* Navigation Responsive */

@media (max-width: 991.98px) {
  .naviLinks {
    display: none;
  }

  .active {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .socialIcons {
    margin-left: auto;
    margin-right: 20px;
  }

  .hambrugerIcon {
    color: #757575;
    font-size: 28px;
    display: block;
    z-index: 100;
    margin-right: 30px;
  }

  .logos {
    width: 160px;
    height: auto;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(106, 96, 116);
    padding-top: 100px;
    padding-bottom: 10px;
    width: 100vw;
    height: auto;
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: 0.5s ease-in-out;
  }

  .dropdown-content a {
    color: rgb(207, 192, 222);
    padding: 10px 16px 5px 16px;
    text-decoration: none;
    display: block;
    text-align: end;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }

  .dropdown-content a:hover {
    color: #ffffff !important;
  }

  .show {
    display: block;
  }

  /* Nav Drop down On Hover Responsive */

  .prd-drop-dwn {
    background-color: rgba(106, 96, 116);
    position: relative;
    right: -80%;
    top: 0;
    height: auto;
    display: none;
  }

  .prd-drop-dwn a {
    color: rgb(196, 196, 196) !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    cursor: pointer;
  }

  .prd-drop-dwn a:hover {
    color: rgb(255, 255, 255) !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
  }

  .prd-drop-dwn li {
    margin-bottom: 5px;
  }
}

@media (max-width: 500px) {
  .navAll {
    height: 80px;
  }

  .logos {
    width: 150px;
  }

  .socialIcons i {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px #504e4e;
  }

  .hambrugerIcon {
    text-shadow: 1px 1px 3px #ffffff;
  }

  .prd-drop-dwn {
    background-color: transparent;
    position: relative;
    right: -230px;
    top: -22px;
    height: auto;
    /* display: none; */
  }
}

/* About Banner */

.abtBanner {
  width: 100%;
  height: auto;
  position: relative;
}

.abtBanner h2 {
  position: absolute;
  top: 50%;
  left: 40%;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #6f6f6f;
  transition: 0.5s ease-in-out;
}

.abtBanner h2:hover {
  transform: scale(1.1);
  color: #504e4e;
}

/* All Products Display */

.all-uniforms {
  width: 100%;
  height: auto;
  /* background-color: #504e4e; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.uniform-left-right {
  width: 90%;
  height: 90%;
  /* background-color: #757575; */
  display: flex;
  flex-direction: row;
  align-items: start;
}

.uniformsleft {
  width: 30%;
  height: 100%;
  /* background-color: #f0a1a1; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
}

.lft-txt {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.catogeries {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
}

.lft-txt h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 2vw;
  margin-bottom: 10px;
  padding-left: 8px;
}

.lft-txt a {
  text-decoration: none;
  color: #504e4e;
  width: 90%;
  height: auto;
  padding: 3px 3px 3px 15px;
  background-color: rgba(244, 244, 244, 0.482);
  margin-bottom: 0.8vw;
  /* border-bottom: 1px solid #6f6f6f;
  border-right: 1px solid #6f6f6f; */
  border: none;
  box-shadow: 1px 1px 5px rgba(111, 111, 111, 0.408);

  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 1.2vw;
  transition: 0.3s ease-in-out;
}

.lft-txt a:hover {
  background-color: #f80000;
  color: #ffffff !important;
}

.uniformsright {
  width: 70%;
  height: 100%;
  /* background-color: #926060; */
  margin-top: 5vw;
}

/* Right Products Display */

.prdDisplay {
  background-color: #ffffffbb !important;
}

.flex {
  max-height: 1500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* background-color: #6f6f6f; */
  overflow-y: auto;
  overflow-x: hidden;
}
.content {
  height: 320px;
  width: 22%;
  color: #fff;
  font-size: 24px;
  line-height: 100px; /* centering text just for view */
  text-align: center;
  background-color: rgb(255, 255, 255);
  margin: 10px;
  border: 1px solid lightgrey;
  display: none;
  box-shadow: 1px 1px 9px rgba(111, 111, 111, 0.47);
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.content img {
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.content img:hover {
  transform: scale(1.05);
  overflow: hidden;
}

.content h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.4vw;
  margin-top: 20px;
  color: #4d4c4c;
  word-wrap: break-word;
  transition: 0.5s ease-in-out;
}

.content h3:hover {
  color: #f80000;
}

#load-more-btn {
  width: 200px;
  color: #fff;
  display: block;
  text-align: center;
  margin: 20px auto;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: blue;
  transition: 0.3s;
}
#load-more-btn:hover {
  color: blue;
  background-color: #fff;
  border: 1px solid blue;
  text-decoration: none;
}
.noContent {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}

.active {
  display: block;
}

@media (max-width: 1900px) {
  .content {
    height: 370px;
  }
}

@media (max-width: 1700px) {
  .content {
    height: 340px;
  }
}

@media (max-width: 1440px) {
  .content {
    height: 290px;
  }
}

@media (max-width: 1200px) {
  .content {
    height: 250px;
  }
  .flex {
    max-height: 1200px;
  }
}

@media (max-width: 1050px) {
  .content {
    height: 210px;
  }
}

@media (max-width: 950px) {
  .content {
    height: 200px;
  }

  .flex {
    max-height: 1000px;
  }
}

@media (max-width: 768px) {
  .content {
    height: 30vw;
    width: 33%;
  }

  .lft-txt a {
    font-size: 2.5vw;
    margin-bottom: 18px;
  }

  .lft-txt h2 {
    font-size: 3vw;
    background-color: #f80000;
    color: #ffffff;
  }

  .flex {
    max-height: 1500px;
  }
}

@media (max-width: 600px) {
  .content {
    height: auto;
    padding: 0;
    width: 33%;
    overflow: hidden;
  }

  .content h3 {
    font-size: 2vw;
    padding-bottom: 10px;
    margin-top: 4px;
  }

  .content img {
    margin-top: -10px;
  }

  .abtBanner h2 {
    font-size: 6vw;
    top: 40%;
    left: 30%;
  }
}

@media (max-width: 480px) {
  .content {
    height: 55vw;
    width: 60%;
    overflow: hidden;
  }

  .content h3 {
    font-size: 4vw;
    padding-bottom: 10px;
    margin-top: 4px;
  }

  .content img {
    margin-top: 0px;
    overflow: hidden;
  }

  .abtBanner h2 {
    font-size: 6vw;
    top: 40%;
    left: 30%;
  }

  .lft-txt a {
    font-size: 3vw;
    margin-bottom: 15px;
  }

  .lft-txt h2 {
    font-size: 3vw;
    background-color: #f80000;
    color: #ffffff;
  }

  .flex {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 1500px;
  }
}

@media (max-width: 390px) {
  .content {
    height: 30vw;
    width: 33%;
    overflow: hidden;
  }

  .content img {
    margin-top: -28px;
    overflow: hidden;
    margin-bottom: 0;
  }

  .content h3 {
    font-size: 1.6vw;
    padding-bottom: 10px;
    margin-top: 0px;
  }
}

/* Footer */

.footerr {
  width: 100%;
  height: auto;
  background-color: rgb(244, 248, 250);
  padding-top: 50px;
  /* padding-bottom: 50px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerRow {
  width: 90%;
  height: auto;
  margin-bottom: 30px;
}

.logoCol {
  padding: 10px;
  /* background-color: #603c3c; */
  padding-left: 30px;
  padding-right: 20px;
}

.footerCol {
  padding-left: 20px;
}

.logoCol img {
  width: 80%;
  height: auto;
}

.quickLinksCol {
  display: flex;
  flex-direction: column;
}

.quickLinksCol h3 {
  color: #6f6f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.quickLinksCol a {
  text-decoration: none;
  color: #797878;
  margin: 5px 5px;
}

.socialLinksCol h3 {
  color: #6f6f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.socialLinksCol i {
  color: #797878;

  font-size: 24px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footerLine {
  width: 95%;
  height: 1px;
  background-color: rgba(252, 1, 1, 0.3);
}

.footerTags {
  width: 100%;
  height: auto;
  padding: 0 40px;
  /* background-color: #ffffff; */
  display: flex;
  flex-direction: column;

  margin-top: 10px;
}

.footerTags h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6f6f6f;
}

.footerTags a {
  text-decoration: none;
  color: #878787;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.bottomFootr {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 20px;
  color: #706f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
