@import url("https://fonts.googleapis.com/css?family=Rubik+Mono+One|Roboto+Mono:400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap");
:root {
  --color-primary: #18181A;
  --color-secondary: #75757C;
  --color-dark: #364C62;
  --color-light: #F5F5F5;
  --font-family-primary: 'Roboto Mono', monospace;
  --font-family-secondary: 'Rubik Mono One', sans-serif;
  --td: 150ms;
  --te: cubic-bezier(0.215, 0.61, 0.355, 1);
}

ul, li {
  list-style: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: "Prompt", sans-serif;
  overflow-x: hidden;
  position: relative;
  background-color: #000;
  color: rgba(255, 255, 255, 0.4);
}

p, span, strong {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: calc(1.5rem + 4vmin);
  font-weight: 700;
}

p {
  line-height: 1.4;
}

a {
  font-weight: 700;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  margin: 0 auto;
  max-width: 45rem;
  padding: 1rem;
}

.page-container > * + * {
  margin-top: 1.5rem;
}

.nav-main {
  align-items: flex-start;
  display: flex;
  height: 100%;
  justify-content: center;
  left: -100%;
  position: absolute;
  top: 0px;
  z-index: 22;
  transition: left 0s calc(var(--td) * 2), transform 0s calc(var(--td) * 2);
  width: 100%;
}

.nav-main::before, .nav-main::after {
  content: '';
  background-color: var(--color-primary);
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform calc(var(--td) * 2) var(--td) var(--te);
  width: 100%;
  z-index: -100;
}

.nav-main::before {
  top: 0;
}

.nav-main::after {
  bottom: 0;
}

.nav-main .menu__item {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity var(--td) var(--te), transform var(--td) var(--te);
}

@media screen and (max-width: 1024px) {
  .nav-main {
    height: 100vh;
  }
}

[id="main-navigation-toggle"] {
  opacity: 0;
  position: fixed;
  top: -100%;
}

[id="main-navigation-toggle"] ~ label {
  cursor: pointer;
  position: fixed;
  right: 10rem;
  top: 0.7rem;
  z-index: 100;
}

[id="main-navigation-toggle"] ~ label span {
  display: block;
  height: 2rem;
  padding: 0.5rem;
  position: relative;
  transition: transform calc(var(--td) * 3) var(--te);
  width: 3rem;
}

[id="main-navigation-toggle"] ~ label span::before, [id="main-navigation-toggle"] ~ label span::after {
  background-color: #000;
  bottom: 0;
  content: '';
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transition: transform calc(var(--td) * 3) var(--te);
  top: 0;
  width: calc(100% - 1rem);
}

[id="main-navigation-toggle"] ~ label span::before {
  transform: rotate(0) translateY(-100%);
}

[id="main-navigation-toggle"] ~ label span::after {
  transform: rotate(0) translateY(100%);
}

[id="main-navigation-toggle"]:checked ~ label span {
  transform: rotate(1turn);
  background: #fff;
}

[id="main-navigation-toggle"]:checked ~ label span::before {
  transform: rotate(45deg);
}

[id="main-navigation-toggle"]:checked ~ label span::after {
  transform: rotate(-45deg);
}

[id="main-navigation-toggle"]:checked ~ .nav-main {
  left: 0;
  transition: transform 0s;
}

[id="main-navigation-toggle"]:checked ~ .nav-main::before, [id="main-navigation-toggle"]:checked ~ .nav-main::after {
  transform: translateX(0);
  transition-delay: 0s;
}

[id="main-navigation-toggle"]:checked ~ .nav-main::after {
  transition-delay: calc(var(--td) / 2);
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity calc(var(--td) * 2) var(--te), transform calc(var(--td) * 2) var(--te);
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item:nth-child(1) {
  transition-delay: calc(var(--td) * 2 * (1 * 0.25));
  z-index: -1;
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item:nth-child(2) {
  transition-delay: calc(var(--td) * 2 * (2 * 0.25));
  z-index: -2;
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item:nth-child(3) {
  transition-delay: calc(var(--td) * 2 * (3 * 0.25));
  z-index: -3;
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item:nth-child(4) {
  transition-delay: calc(var(--td) * 2 * (4 * 0.25));
  z-index: -4;
}

[id="main-navigation-toggle"]:checked ~ .nav-main .menu__item:nth-child(5) {
  transition-delay: calc(var(--td) * 2 * (5 * 0.25));
  z-index: -5;
}

.menu {
  text-align: center;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
}

.menu > .menu__item {
  font-family: var(--font-family-secondary);
  font-size: 8vmin;
}

@media screen and (max-width: 840px) {
  .menu {
    font-size: 4vmin;
  }
}

.submenu {
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(-10%);
  top: 70%;
  width: 100%;
  visibility: hidden;
  z-index: 2;
}

.submenu .menu__item {
  font-family: var(--font-family-primary);
  font-size: 3vmin;
  width: 100%;
}

.submenu .menu__link {
  color: #f0be30;
  text-shadow: 1px 1px 0 var(--color-primary), 2px 2px 0 var(--color-primary);
}

.submenu .menu__link::before, .submenu .menu__link::after {
  display: none;
}

.menu__item {
  display: block;
  position: relative;
}

.menu__item:hover .menu__link::before, .menu__item:hover .menu__link::after {
  animation: blink 1s var(--td) steps(1, end) forwards infinite;
  transform: translateX(calc(100% - 0.5rem));
  transition-duration: calc(var(--td) * 3);
}

.menu__item:hover .menu__link::after {
  transition-delay: calc(var(--td) / 2);
}

.menu__item:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  transition: transform calc(var(--td) * 2) calc(var(--td) * 3) var(--te), opacity calc(var(--td) * 2) calc(var(--td) * 3) var(--te), visibility 0s calc(var(--td) * 3);
  visibility: visible;
}

.menu__link {
  color: #f0be30;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  padding: 0.5rem 1rem 0.125rem;
  position: relative;
  text-decoration: none;
  transition: color var(--td) var(--te), opacity var(--td) var(--te), transform var(--td) var(--te);
  z-index: 1;
}

.menu__link::before, .menu__link::after {
  content: '';
  background-color: var(--color-light);
  height: 50%;
  left: 0;
  position: absolute;
  transform: translateX(-110%);
  transform-origin: 0 50%;
  transition: transform 0s var(--te);
  width: 100%;
  z-index: -1;
}

.menu__link::before {
  top: 0;
}

.menu__link::after {
  bottom: 0;
}

.menu:not(:focus-within):not(:hover) .menu__item .menu__link {
  opacity: 1;
  transform: translate(0, 0);
}

.menu__item {
  --pull: 30%;
}

.menu__item .menu__link {
  opacity: 0.25;
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, calc(var(--pull) * -1));
}

.menu__item .submenu .menu__link {
  opacity: 1;
  padding: 0px;
}

.menu__item:hover > .menu__link {
  color: var(--color-secondary);
  opacity: 1;
  transform: translate(0, 0);
}

.menu__item:hover > .menu__link:hover {
  color: var(--color-light);
  transition-delay: 0s;
}

.menu__item:hover ~ .menu__item > .menu__link {
  transition-duration: calc(var(--td) * 3);
  transform: translate(0, var(--pull));
}

@keyframes blink {
  50%, 100% {
    opacity: 0;
  }
}

@media screen and (max-width: 1040px) {
  body {
    padding-top: 50px;
  }
}

.main-header {
  display: flex;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 6;
  background: #f0be30;
  border-bottom: 3px solid #f0be30;
}

.outer-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0be30;
}

.logo {
  position: relative;
}

.logo img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .logo img {
    position: static !important;
    transform: translate(10px);
    position: relative;
    width: 40px;
  }
}

.top-links {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  padding-top: 10px;
  margin: 0 0 0 -25%;
}

.top-links li {
  margin: 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-links li a {
  color: #000;
  display: block;
  font-size: 14px;
}

.top-links li h2 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
}

.desk-logo {
  width: 125px;
}

.pro-wraper {
  text-align: center;
}

.pro-wraper h2 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 0;
}

.pro-wraper .pro-thumbnail {
  position: relative;
  height: auto;
  margin-bottom: 15px;
}

.pro-wraper .pro-thumbnail img {
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.pro-wraper .pro-thumbnail .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.pro-wraper .pro-thumbnail .overlay .text {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  z-index: 5;
  position: absolute;
  background: #f0be30;
  line-height: 18px;
  margin: 0px;
  padding: 0px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  top: 76%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.pro-wraper .pro-thumbnail .overlay .text:hover {
  background: #000;
}

.pro-wraper .pro-thumbnail .overlay .text span {
  color: #fff;
}

.pro-wraper:hover .overlay {
  height: 100%;
}

.pro-wraper:hover h2 {
  color: #f0be30;
}

.new-arrival {
  text-align: center;
  background: #000;
}

.new-arrival h4 {
  font-size: 3vw;
  text-transform: uppercase;
  color: #fff;
  padding: 25px 0;
  font-weight: 300;
}

.custom-bats-sec {
  background: url(../images/custom-bats-sec.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 60px;
  position: relative;
}

.custom-heading {
  color: #fff;
  text-align: center;
}

.custom-heading p {
  font-size: 18px;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.custom-heading h4 {
  text-transform: uppercase;
  font-size: 3vw;
  letter-spacing: 2px;
}

.mids-bats-features-container {
  display: flex;
  flex-direction: row;
  height: 410px;
  justify-content: space-around;
  align-items: flex-end;
  align-content: center;
}

.mids-bats-features-container .featutre-content {
  width: 140px;
  height: 200px;
  background: #f0be30;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}

.mids-bats-features-container .featutre-content img {
  display: block;
  margin: 5px auto;
  height: 100px;
}

.mids-bats-features-container .featutre-content h3 {
  font-size: 14px;
  color: #000;
}

.mids-bats-features-container .featutre-content a {
  text-decoration: none;
  color: #000;
  font-weight: 300;
  font-size: 12px;
}

.mids-bats-features-container .featutre-content a:hover {
  text-decoration: underline;
}

.parent-container {
  position: relative;
}

.short-aboutus {
  padding: 0px 0;
}

.short-aboutus .about-mids {
  padding: 30px 0;
}

.short-aboutus .about-mids h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.short-aboutus .about-mids h3 {
  font-size: 4vw;
  font-weight: bolder;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.short-aboutus .about-mids p {
  column-count: 2;
  -webkit-column-count: 2;
  column-gap: 40px;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 24px;
  text-align: justify;
}

.short-aboutus .mids-btn {
  padding: 10px 20px;
  background: #f0be30;
  color: #000;
  border-radius: 20px;
  border: none;
  margin: 20px 0;
  float: right;
}

.mids-categories {
  padding: 30px 0;
}

.cat-thumbnail {
  position: relative;
}

.cat-thumbnail .cat-overlay {
  position: absolute;
  top: 15px;
  left: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cat-thumbnail .cat-overlay h1 {
  font-size: 2vw;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}

@media screen and (max-width: 768px) {
  .cat-thumbnail .cat-overlay h1 {
    font-size: 20px;
  }
}

.cat-thumbnail .cat-overlay .cat-logo-icon {
  background: #fff;
  padding: 3px 5px;
  text-align: center;
  width: 80px;
  height: 110px;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.cat-thumbnail .cat-overlay .cat-logo-icon img {
  max-width: 100%;
}

.cat-thumbnail:hover .cat-logo-icon {
  background: #f0be30;
}

.cat-thumbnail:hover h1 {
  color: #f0be30;
}

.tracking-sec {
  text-align: center;
  padding: 30px 0;
  background: url(../images/scratch-bg.jpg) no-repeat top center;
  background-size: cover;
  color: #fff;
}

.tracking-sec h3 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 3vw;
}

.tracking-sec strong {
  display: block;
  font-size: 18px;
  padding: 15px 0;
  font-weight: 500;
}

.tracking-sec p {
  font-size: 16px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.gobtn {
  color: #000;
  position: absolute;
  top: 9px;
  right: 10px;
  background: #f0be30;
}

.code-field {
  background: #fff;
  border: none;
  height: 55px;
  border-radius: 10px;
  padding-right: 70px;
}

.code-fieldgroup {
  margin: 15px 0 0 0;
  position: relative;
}

.testimonial-sec {
  background: #f0be30;
}

.testimonial-sec .review-content {
  background: #f0be30;
  width: 100%;
  padding: 50px 25px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  text-align: center;
}

.testimonial-sec .review-content .review-contents {
  position: relative;
}

.testimonial-sec .review-content p {
  font-size: 24px;
}

.testimonial-sec .review-content p.review-signature {
  font-size: 18px;
}

.testimonial-sec .review-content .fa-quote-left {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 1.2rem;
}

.testimonial-sec .review-content .fa-quote-right {
  position: absolute;
  bottom: 35px;
  right: 25px;
  font-size: 1.2rem;
}

footer {
  background: #000;
  color: #6d6d6d;
  padding-top: 20px;
  border-top: 3px solid #f0be30;
}

footer .footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 15px;
}

footer .footer-container .footer-col {
  width: 20%;
}

footer .footer-container .footer-col h4 {
  color: #fff;
  border-bottom: 1px solid #6d6d6d;
  padding: 15px 0;
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
}

footer .footer-container .footer-col ul.footer-link li {
  font-size: 14px;
  line-height: 1.8rem;
}

footer .footer-container .footer-col ul.footer-link li a {
  font-weight: 400;
  color: #6d6d6d;
}

footer .footer-container .footer-col ul.footer-link li a:hover {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  footer .footer-container .footer-col {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-container .footer-col {
    width: 48%;
  }
}

@media screen and (max-width: 560px) {
  footer .footer-container .footer-col {
    width: 98%;
  }
}

footer .footer-container .footer-news-col {
  width: 20%;
}

footer .footer-container .footer-news-col h4 {
  color: #fff;
  border-bottom: 1px solid #6d6d6d;
  padding: 15px 0;
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
}

footer .footer-container .news-content-footer-logo {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 10px;
  flex-wrap: wrap;
}

footer .footer-container .news-content-footer-logo h1 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #f0be30;
}

footer .footer-container .news-content-footer-logo strong {
  display: block;
  color: #f0be30;
}

footer .footer-container .news-content-footer-logo .footer-logoimg {
  width: 80px;
  margin-bottom: 20px;
}

footer .footer-container .news-content-footer-logo address {
  margin: 0px;
}

footer .footer-container .news-content-footer-logo .footer-logo {
  margin-bottom: 10px;
}

footer .footer-container .news-content-footer-logo .footer-logo img {
  display: block;
}

.social-media {
  display: flex;
  justify-content: flex-start;
}

.social-media li {
  margin: 10px 20px 0 0;
}

.social-media li a {
  color: #fff;
  font-size: 20px;
}

.news-field-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.news-field-container .news-field {
  width: 250px;
  padding: 6px 50px 6px 10px;
  border: 1px solid #6d6d6d;
  background: transparent;
  color: #fff;
}

.news-field-container .news-field:hover {
  outline: none;
}

.news-field-container .submit {
  background: #fff;
  color: #000;
  font-weight: 400;
  border: none;
  right: 4px;
  top: 5px;
}

.news-field-container .submit:hover {
  background: #f0be30;
}

.copyright p {
  color: #fff;
  font-size: 15px;
}

.copyright p a {
  color: #f0be30;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  [id="main-navigation-toggle"] ~ label {
    cursor: pointer;
    position: fixed;
    right: 7rem;
    top: 0rem;
    z-index: 100;
  }
  .top-links {
    margin: 0 0 0 -36%;
  }
  .top-links li {
    margin: 0px 8px;
  }
  .top-links li h2 {
    font-size: 12px;
    margin-top: 3px;
  }
  .top-links li img {
    width: 24px;
    height: 25px;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-container .footer-news-col {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  footer .footer-container .footer-news-col {
    width: 100%;
  }
  .top-links {
    display: none;
  }
  .short-aboutus .about-mids p {
    column-count: 1;
  }
  [id="main-navigation-toggle"] ~ label {
    cursor: pointer;
    position: fixed;
    right: 1rem;
    top: 0.8rem;
    z-index: 100;
  }
  .menu > .menu__item {
    font-size: 4vmin;
  }
  .mids-bats-features-container .featutre-content {
    width: 100%;
    margin-top: 10px;
  }
  .mids-bats-features-container {
    flex-wrap: wrap;
    height: auto;
  }
  .testimonial-sec .review-content {
    padding: 10px 28px;
    width: 100%;
  }
  .testimonial-sec .review-content p {
    font-size: 15px;
  }
  .testimonial-sec .review-content .fa-quote-right {
    bottom: 2px;
    right: 10px;
  }
}

.whoweare {
  padding: 50px 0;
  font-weight: 400;
  background: #fff;
  text-align: left;
}

.whoweare h3 {
  font-size: 4vw;
  margin: 0 0 25px 0;
  font-weight: 300;
  color: #000;
}

.whoweare p {
  line-height: 1.8rem;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}

.hightech-mad {
  padding: 40px 15px;
  background: #f0be30;
  color: #000;
}

.hightech-mad h1 {
  text-align: right;
  font-size: 4vw;
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  .inner-pages-main-wraper {
    padding: 200px 0 0 0;
  }
}

@media screen and (max-width: 840px) {
  .inner-pages-main-wraper {
    padding: 130px 0 0 0;
  }
}

@media screen and (max-width: 560px) {
  .inner-pages-main-wraper {
    padding: 80px 0 0 0;
  }
}

.inner-pages-body {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+17,ffffff+17,ffffff+100 */
  background: #000000;
  /* Old browsers */
  background: -moz-linear-gradient(top, #000000 0%, #000000 17%, #ffffff 17%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #000000 0%, #000000 17%, #ffffff 17%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #000000 0%, #000000 17%, #ffffff 17%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
}

.inner-cats-list-contaier {
  display: flex;
  justify-content: space-between;
}

.inner-cats-list-contaier .product-cats {
  display: flex;
  justify-content: space-between;
  width: 32%;
}

.inner-cats-list-contaier .product-cats h2 {
  color: #f0be30;
  font-size: 18px;
  margin-bottom: 15px;
}

.inner-cats-list-contaier .product-cats ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.inner-cats-list-contaier .product-cats ul li a:before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 6px;
  vertical-align: 3px;
  margin-right: 10px;
}

.inner-cats-list-contaier .product-cats ul li:hover a {
  color: #f0be30;
}

.cats-list {
  display: none;
}

.center-bread-crumbs {
  width: 100%;
}

.center-bread-crumbs h1 {
  font-size: 2vw;
  text-align: center;
  color: #fff;
  margin: 15px 0 0;
  font-weight: 600;
}

.center-bread-crumbs .breadcrumbs-list {
  text-align: center;
}

.center-bread-crumbs .breadcrumbs-list ol {
  display: flex;
  justify-content: center;
}

.center-bread-crumbs .breadcrumbs-list li {
  color: #fff;
}

.center-bread-crumbs .breadcrumbs-list a {
  color: #fff;
  font-weight: 400;
}

.center-bread-crumbs .breadcrumbs-list a:hover {
  color: #f0be30;
}

.center-bread-crumbs .breadcrumbs-list .active {
  color: #f0be30;
}

.center-bread-crumbs .breadcrumbs-list .active a {
  color: #f0be30;
}

@media screen and (max-width: 560px) {
  .center-bread-crumbs {
    width: 100%;
  }
  .center-bread-crumbs h1 {
    font-size: 18px;
  }
}

.webtitle2 {
  color: #fff;
}

.heading-detail {
  font-size: 24px;
  color: #f0be30;
}

.size-guide-div b {
  color: #fff;
  text-transform: uppercase;
}

.sizes span {
  text-align: center;
  display: block;
  color: #fff;
}

.sizes input[type="radio"] {
  display: none;
}

.sizes {
  display: flex;
  margin-top: 15px;
}

.sizes label {
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;
  width: 55px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.sizes input[type="radio"]:checked + label {
  border: 2px solid #f0be30;
  width: 55px;
  height: 40px;
}

.sizes input[type="radio"] + label {
  border: 1px solid #fff;
}

.inquiry-btn {
  width: 100%;
  margin-top: 25px;
  border: 1px solid #000;
  background: #f0be30;
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
}

.inquiry-btn:hover {
  background: transparent;
  border: 1px solid #f0be30;
  color: #fff;
}

.product-main-wraper {
  padding: 30px 0;
}

.center-align {
  display: flex;
  justify-content: center;
}

.center-align .page-link {
  color: #000;
  font-weight: 300;
}

.bat-warrenty-services {
  padding: 15px 0;
  text-align: left;
}

.bat-warrenty-services article {
  margin-top: 20px;
}

.bat-warrenty-services h3 {
  color: #f0be30;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 15px;
  text-align: left;
}

.bat-warrenty-services p {
  font-size: 16px;
  color: #fff;
}

.bat-warrenty-services p span {
  color: #f0be30;
}

.bat-warrenty-services li {
  color: #fff;
  line-height: 28px;
  text-align: left;
  counter-increment: li;
}

.bat-warrenty-services li span {
  color: #f0be30;
}

.bat-warrenty-services li::before {
  content: counter(li);
  color: #f0be30;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.bat-size-guide {
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid #6d6d6d;
}

.bat-size-guide h6 {
  color: #f0be30;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
}

.bat-size-guide p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.bat-size-guide .bat-sizeguide-col {
  text-align: center;
  margin-top: 15px;
}

.bat-size-guide .bat-sizeguide-col h5 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}

.bat-size-guide .bat-sizeguide-col ul li {
  font-weight: 400;
  color: #6d6d6d;
  font-size: 14px;
}

.bat-size-guide:last-child {
  border: none;
}

.bat-weight-content {
  padding-top: 50px;
  padding-right: 20px;
}

.bat-weight-content h4 {
  font-size: 28px;
  text-transform: uppercase;
  color: #f0be30;
  margin-bottom: 15px;
  font-weight: 600;
}

.bat-weight-content p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

.bat-weight-content p span {
  color: #f0be30;
}

.bat-wieght-thumbnail {
  padding-top: 50px;
}

@media screen and (max-width: 769px) {
  .heading-detail {
    font-size: 20px;
  }
  .bat-weight-content, .bat-wieght-thumbnail {
    padding-top: 20px;
  }
  .image-slider .item-slider.has-slider .slide-items {
    z-index: 99;
    top: 15%;
  }
}

.inner-body {
  background: #fff;
}

.inner-pages-main-wraper {
  background: #000;
}

.wallpaper-list .wall-paper {
  position: relative;
}

.wallpaper-list .wall-paper img {
  height: 350px;
  max-width: 100%;
}

.wallpaper-list .wall-paper .overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.wallpaper-list .wall-paper span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: #f0be30;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.wallpaper-list .wall-paper span:hover {
  background: #000;
}

.wallpaper-list .wall-paper:hover .overlay {
  bottom: 0;
  height: 100%;
}

.brand-info h2 {
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.bio-graphy-content, .profile-content-wraper {
  padding: 20px 0;
}

.bio-graphy-content .nav-tabs .nav-link, .profile-content-wraper .nav-tabs .nav-link {
  color: #fff;
  border: 1px solid red;
}

.bio-graphy-content h4, .profile-content-wraper h4 {
  color: #f0be30;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.bio-graphy-content p, .profile-content-wraper p {
  font-size: 14px;
  line-height: 30px;
  color: #6d6d6d;
}

.bio-graphy-content ul li strong, .profile-content-wraper ul li strong {
  color: #fff;
  display: inline-block;
  margin-right: 5px;
}

.wall-paper-container .nav-tabs .nav-item.show .nav-link, .wall-paper-container .nav-tabs .nav-link {
  color: #000 !important;
  background: #fff;
}

.wall-paper-container .nav-tabs .nav-item.show .nav-link, .wall-paper-container .nav-tabs .nav-link.active {
  color: #000;
  background: #f0be30 !important;
}

.wall-paper-container .nav-tabs {
  border-color: #f0be30;
}

.swiper-container-ambassador {
  overflow: hidden;
  position: relative;
}

.swiper-button-next, .swiper-button-prev {
  color: #f0be30 !important;
}

/*Reseller style*/
.checkout-prices p, .reseller-fields-outer-container p {
  color: #6d6d6d;
  font-size: 14px;
}

.checkout-prices h4, .reseller-fields-outer-container h4 {
  font-size: 24px;
  color: #fff;
}

.reseller-fields-outer-container h4 {
  color: #fff;
}

.reseller-fields-outer-container label {
  color: #f0be30;
}

.contactus-content-container h3, .contactus-content-container h4, .contactus-content-container h5, .contactus-content-container h6, .contactus-content-container strong, .contactus-content-container label, .contactus-content-container a, .checkout-container h3, .checkout-container h4, .checkout-container h5, .checkout-container h6, .checkout-container strong, .checkout-container label, .checkout-container a {
  color: #f0be30;
}

.contactus-content-container a:hover, .checkout-container a:hover {
  color: #fff;
}

.contactus-content-container .form-control, .checkout-container .form-control {
  background: #6d6d6d;
  border: 1px solid #ced4da;
}

.contactus-content-container .btn-send, .checkout-container .btn-send {
  background: #f0be30;
  color: #000;
  width: 200px;
  margin: 0 auto;
  text-transform: uppercase;
  display: block;
}

.contactus-content-container .btn-send:hover, .checkout-container .btn-send:hover {
  background: #6d6d6d;
  color: #fff;
}

.contactus-content-container ::-webkit-input-placeholder, .checkout-container ::-webkit-input-placeholder {
  /* Edge */
  color: #fff;
}

.contactus-content-container :-ms-input-placeholder, .checkout-container :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.contactus-content-container ::placeholder, .checkout-container ::placeholder {
  color: #fff;
}

.btn-send {
  background: #f0be30;
  color: #000;
  width: 200px;
  margin: 10px 0;
  text-transform: uppercase;
  display: block;
}

.btn-send:hover {
  background: #6d6d6d;
  color: #fff;
}

.product-details ul li {
  list-style-type: disc !important;
}

/* outlets stylig*/
.offical-outlets {
  padding: 20px 0;
  color: #fff;
}

.offical-outlets h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f0be30;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}

.outlets-container h5 {
  font-weight: bold;
  color: #ddd;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 5px 0;
}

.outlets-container .address-outlet {
  min-height: 120px;
  margin-bottom:10px;
}

.outlets-container .address-outlet address {
  display: flex;
  justify-content: start;
  align-items: baseline;
}
.outlets-container .address-outlet address a {
  color:#fff;
  font-weight:400;
}
.outlets-container .address-outlet address a:hover {
  color: #f0be30;
}
.outlets-container .address-outlet i {
  color: #f0be30;
  font-size: 18px;
  margin-right: 6px;
}

.outlets-container .outlet-map {
  padding: 15px 0 0 0;
}

.outlets-heading {
  color: #f0be30;
  font-size:24px;
}
.intl-outlet {
  color:#ddd;
}