/* Imports */
/* Icons */
@import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css");
@import url("https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css");
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
/* Fonts */
@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");
@font-face {
  font-family: "Ethnocentric RG";
  src: url(../fonts/ETHNOCENTRIC\ RG.OTF);
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff;
    left: -25px;
}
.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -25px;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.custom-radio .custom-control-label::before {
    border-radius: 50%;
    left: -25px;
}
/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}
:root {
  --color-primary: red;
  --color-primary-accent: #ff000020;
}
::selection {
  color: #fff;
  background: var(--color-primary);
}
a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}
a:hover,
a.active {
  color: var(--color-primary);
}
i[class^="bx"] {
  vertical-align: middle;
}
ul,
address {
  margin-bottom: 0;
}
.imgFluid {
  max-width: 100%;
}
.primary-color {
  color: var(--color-primary);
}
.section-content .subHeading {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 0.75rem;
}
.section-content .heading {
  font-size: 3.25rem;
  line-height: 1.1;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-weight: bold;
}
.section-content p {
  color: #666;
  line-height: 2;
}
.section-content span {
  font-weight: 800;
  text-transform: uppercase;
}
.themeBtn {
  width: fit-content;
  display: block;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--color-primary);
  border-radius: 8px;
  padding: 1rem 4rem 1rem 2rem;
  margin: 0.25rem 0;
  transition: all 300ms ease-in-out;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.themeBtn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.25rem;
  background: url(../images/theme-bg.png) no-repeat center center / contain;
  z-index: -1;
  width: 30px;
  height: 54px;
}
.themeBtn--full {
  width: 100%;
}
.themeBtn--center {
  margin: 0.25rem auto;
}
.themeBtn:hover {
  color: var(--color-primary);
  background: #fff;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}
/* Header */
header.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
  z-index: 10;
}
.header-logo {
    max-width:250px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.header-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-transform: capitalize;
}

.header-social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-social-icons li a {
  font-size: 20px;
  color: #fff;
}

.header-main-nav li a {
  letter-spacing: 0.5px;
  color: #fff;
}

.header-social-icons li a:hover {
  color: var(--color-primary);
}

.header-main-nav li a:hover {
  color: var(--color-primary);
}

.header-main-nav li {
  position: relative;
}

.header-main-nav li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 300ms ease-in-out;
  transform: translateY(5px);
}

.header-main-nav li:hover::before {
  width: 100%;
}

/* Search Bar */
.search-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px 0 #00000020;
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms ease-in-out;
  z-index: 10;
}
.search-bar.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-bar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.search-bar__title {
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.search-bar .closeBtn {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  cursor: pointer;
  background: var(--color-primary-accent);
  border: none;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.search-bar .closeBtn:hover {
  color: #fff;
  background: var(--color-primary);
}
.search-bar form {
  width: 100%;
  position: relative;
}
.search-bar input {
  width: 100%;
  display: block;
  font-size: 1.15rem;
  background: #f7f7f7;
  border: 1px solid transparent;
  outline: none;
  padding: 0.75rem 1rem;
}
.search-bar input:focus {
  background: var(--color-primary-accent);
  border: 1px solid var(--color-primary);
}
.search-bar form button {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  color: #000;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  transform: translateY(-50%);
}
.search-bar form button:hover {
  color: var(--color-primary);
}

/* Banner */
.banner {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11rem 0 8rem;
}
.banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner-content-heading h2 span {
  color: var(--color-primary);
  font-weight: 800;
}

.banner-content-heading h2 {
  font-size: 3.5rem;
  font-weight: 700;
  padding-right: 6rem;
  letter-spacing: 1.5px;
  color: #fff;
}
.banner-content-heading p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.9;
  padding-right: 4rem;
}

/* Banner-Category */
.banner-category {
  margin-top: -5rem;
  position: relative;
}
.banner-category-main {
  position: relative;
}
.banner-category-main:hover .banner-category-img img {
  transform: scale(1.3);
}
.banner-category-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.banner-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}

.banner-category-img:hover img {
  transform: scale(1.3);
}
.banner-category-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.banner-category-content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 27rem;
}

.banner-category-content p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: 27rem;
  line-height: 1.7;
}
/* About-Us */
.about-us {
  margin: 4rem 0 0;
  position: relative;
}
.about-img {
  width: 100%;
  height: 95%;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-content {
  padding-top: 5rem;
}

.banner-content h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.banner-content h2 span {
  color: var(--color-primary);
}

.banner-content p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: #0000008c;
  padding: 1rem 0;
  text-align: left;
  padding-right: 3rem;
}

.banner-content a.themeBtn {
  border: 2px solid transparent;
}

.banner-content a.themeBtn:hover {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.about-bottom-img {
  position: absolute;
  bottom: -7rem;
  right: 0;
}
/* Our_products */
.our-products {
  background: #f2f2f2;
  margin: 8rem 0 0;
  padding: 4rem 0 2rem;
}

.section-heading h2 {
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1.5rem 0;
}
.section-heading h2 span {
  color: var(--color-primary);
}

.our-product-img {
  width: 100%;
  height: 381px;
  overflow: hidden;
}

.our-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.our-product-desc h4 {
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.our-product-desc h4 span {
  color: var(--color-primary);
}

.our-product-desc p {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}
.our-product-desc {
  padding: 0.75rem;
}
a.our-product-content {
  border: 3px solid transparent;
  transition: all 300ms ease-in-out;
  width: 100%;
  margin-bottom: 2rem;
  display: block;
}

a.our-product-content:hover .our-product-img img {
  transform: scale(1.1);
}
a.our-product-content:hover .our-product-desc h4 span {
  text-align: center;
}
a.our-product-content:hover .our-product-desc span {
  color: #fff;
}
a.our-product-content:hover .our-product-desc {
  background: linear-gradient(45deg, red, transparent);
  text-align: center;
  color: #fff;
}

a.our-product-content:hover {
  border-color: var(--color-primary);
}
.our-products a.themeBtn {
  margin-top: 1rem;
  border: 2px solid var(--color-primary);
}

.our-products a.themeBtn:hover {
  border-color: var(--color-primary);
}
/* Sub-Banner */
.sub-banner-bg {
  background: url(../images/sub-banner-img-bg-1.png) no-repeat center center /
    cover;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.sub-banner_bg {
  background: url(../images/sub-banner-img-bg-2.png) no-repeat center center /
    cover;
  width: 100%;
  height: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.sub-banner-content h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sub-banner-content h2 span {
  color: #fff;
}
.sub-banner_bg h2 {
  color: var(--color-primary);
  padding-right: 1rem;
}
.sub-banner-content p {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.7;
}

.sub-banner-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sub-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Blog */
.blogs {
  margin: 4rem 0;
}

.section-heading h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.section-heading span {
  color: var(--color-primary);
}
.section-heading p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
  margin: 0;
  padding-bottom: 2rem;
}
.bolg-img {
  border: 5px solid transparent;
  width: 100%;
  height: 400px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  margin-bottom: 10px;
}

.bolg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.bolg-img:hover img {
  transform: scale(1.3);
}

.bolg-img:hover {
  border: 5px solid var(--color-primary);
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-right: 1rem;
  text-transform: capitalize;
}

.blog-content h3 span {
  color: var(--color-primary);
}

.blog-content p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
  margin: 0;
  padding-bottom: 0.5rem;
}

.blog-content a {
  text-transform: capitalize;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid;
}
/* Query */
.query {
  background: #000;
}
.query-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.query-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.query-img:hover img {
  transform: scale(1.5);
}
.query-form {
  padding: 4rem 2rem 0;
}

.query-form h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 1.5rem;
}

.query-form h2 span {
  display: block;
  color: var(--color-primary);
}

.query-form label {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.query-form input {
  background: transparent;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid #fff;
}

.query-form textarea {
  background: transparent;
  border: 2px solid #fff;
  resize: none;
}
.query-form textarea:focus,
.query-form input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
  border: 2px solid var(--color-primary);
}
.query-form a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: fit-content;
  display: inline-block;
  background: var(--color-primary);
  padding: 0.75rem 3rem;
  margin: 2rem 0;
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  transition: all 300ms ease-in-out;
}

.query-form a:hover {
  background: transparent;
  border-color: var(--color-primary);
}
/* NewsLetter */
.news-letter {
  background: #000;
  padding: 4rem 0 0;
}
.section-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0;
}

.section-content h2 span {
  color: var(--color-primary);
}

.section-content p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  padding: 1.5rem 0;
  margin-bottom: 0.5rem;
}
.news-letter-content {
  display: flex;
  align-items: center;
}

.news-letter-content input {
  border: 2px solid var(--color-primary);
  border-radius: unset;
  padding: 0.75rem;
}

.news-letter-content button {
  border: 2px solid var(--color-primary);
  padding: 0.75rem 2rem;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--color-primary);
  transition: all 300ms ease-in-out;
}

.news-letter-content button:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.news-letter-content input:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid var(--color-primary);
}

.news-letter-bottom-img ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Footer */
.footer {
  background: #590000;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}
.footer__logo {
    max-width:250px;
}
.footer__about a {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}
.footer-social ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social li a {
  border: 1px solid;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.footer__about p {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}
:is(.footer__links, .footer__newsletter) .title {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
:is(.footer__links, .footer__newsletter) .title::after {
  content: "";
  width: 3rem;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
.footer__links a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer__links a:hover {
  color: var(--color-primary);
}
.footer__newsletter form {
  display: flex;
}
.footer__newsletter p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
}
.footer__newsletter form input {
  flex: 1;
  border: 1px solid #00000020;
  outline: none;
  padding: 0.25rem 0.5rem;
 
}
.footer__newsletter form input {
 
  width: 100%;
}
.footer__newsletter form button {
  padding: 0.5rem;
  margin: 0;
  border: none;
  background: #000;
  color: #fff;
}
.footer__copyright {
  color: #fff;
  text-align: center;
  border-top: 2px solid #fff;
  padding: 1rem;
  margin-top: 1rem;
}
.footer-bottom-img {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: -1;
}
/* Page-Title */
.page-title {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 110px;
}

.page-title-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-title-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.page-title-content h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 1.5px;
}
/* About Page Css */
.banner-content h4 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin: 0;
  padding: 0.5rem 0;
}

.banner-content h4 span {
  color: var(--color-primary);
}

.about-bottom-content {
  margin: 1rem 0;
}

.about-bottom-content h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.about-bottom-content p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
  line-height: 1.9;
}

.about-bottom-content h2 span {
  color: var(--color-primary);
}
/* Deal Page Css  */
button.query-button {
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  margin: 0;
  margin-top: 1rem;
  background: var(--color-primary);
  color: #fff;
}
.email-card {
  box-shadow: 0px 0px 20px 0px #00000020;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  margin: 4rem 0 0 0;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
}

.email-card span {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.email-card a {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.email-card:hover {
  background: var(--color-primary);
  color: #fff;
}

.email-card:hover a {
  color: #fff;
}
/* Reviews Page Css */
.reviews {
  margin: 4rem 0;
}

.reviews-heading h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-heading h1 span {
  color: var(--color-primary);
}

.reviews-heading p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #0000008c;
}

.testimonials-card {
  box-shadow: 0px 0px 20px 0px #00000020;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 1.5rem;
  transition: all 300ms ease-in-out;
}

.testimonials-card ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

ul.reviews {
  margin: 0;
  padding: 0.75rem 0;
}

.reviews li a {
  color: var(--color-primary);
  font-size: 20px;
}

.testimonials-card p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #0000008c;
  line-height: 1.8;
  /*text-align: justify;*/
  margin: 0;
}

.testimonials-card li span {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
ul.testimonial-bottom {
  padding: 1rem 0 0.75rem;
}

.testimonials-card:hover {
  background: var(--color-primary);
  color: #fff;
}

.testimonials-card:hover p {
  color: #fff;
}

.testimonials-card:hover a {
  color: #fff;
}

/* Product Actions */
.our-product {
  background: #f2f2f2;
  margin: 0;
  padding: 4rem 0 2rem;
}
.product-actions {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.product-actions button {
  color: #666;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  outline: none;
  padding: 0.5rem;
}
.product-actions button.active {
  color: #fff;
  background: var(--color-primary);
}
.product-actions select {
  font-size: 12px;
  border: 1px solid #00000020;
  border-radius: 0.25rem;
  padding: 0.5rem;
  margin: 0 auto 0 1rem;
}

/* Product Filter */
.product-filterWrapper {
  display: none;
  background: var(--color-primary-accent);
  padding: 2rem;
}
.product-filterWrapper.active {
  display: block;
}
.product-filter__title {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-filter__title::after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-primary);
}
.product-filter__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-filter__checkbox {
  width: fit-content;
  position: relative;
  isolation: isolate;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.product-filter__checkbox input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}
.product-filter__checkbox label {
  --icon-dimensions: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}
.product-filter__checkbox label::before,
.product-filter__checkbox label::after {
  width: var(--icon-dimensions);
  height: var(--icon-dimensions);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.15rem;
  transition: all 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.product-filter__checkbox label::before {
  content: attr(data-size);
  font-size: 1rem;
  line-height: 1;
  background: var(--bg, #fff);
  box-shadow: 1px 1px 4px 0px #00000020;
}
.product-filter__checkbox label::after {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  color: #fff;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: var(--color-primary);
  transform: translateY(-50%) scale(0);
}
.product-filter__checkbox input:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.product-filter__checkbox--lg label {
  --icon-dimensions: 40px;
}
.product-filter__checkbox--lg label::after {
  content: "";
  background: transparent;
  border-color: var(--color-primary);
}
.product-filter__checkbox--lg input:checked + label::before {
  color: var(--color-primary);
}
.product-filter__checkbox--rounded label::before,
.product-filter__checkbox--rounded label::after {
  border-radius: 50%;
}
/*Account Page Css*/
.header-bg {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.login-form {
  box-shadow: 0px 0px 20px 0px #00000020;
  padding: 4rem;
}

.login-form h3 {
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.login-form h6 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 0;
  color: #0000ff8c;
}

.login-form label {
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #000000bf;
}

.login-form input {
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.login-form form {
  border: 1px solid #00000020;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0px 0px 20px 0px #00000020;
  border-radius: 15px;
}

.login-form span {
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #000000bf;
  margin: 8px;
}
.login-form a {
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  background: #7373ff;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  color: #fff;
  margin: 0.5rem 0;
}
/* Terms Page Css */

.terms-content h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 2rem;
  border-bottom: 4px solid;
  display: inline-block;
  color: #000;
}

.terms-content h5 {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.terms-content p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
}
/* Refund Page Css */
.refund-form {
  box-shadow: 0px 0px 20px 0px #00000020;
  padding: 4rem;
  border-radius: 15px;
}

.refund-form label {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000;
}

.refund-form input {
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.refund-form textarea {
  resize: none;
  margin-bottom: 0.75rem;
}

.refund-form p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
  line-height: 1.7;
}
.refund-form input:focus,
.refund-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-color:#00000020;
}
.refund-form select {
  margin-bottom: 0.75rem;
  width: 100%;
  height: 50px;
  color: #0000008c;
  border: 1px solid #00000035;
  border-radius: 4px;
  padding: 10.5px;
}
.refund-form select:focus {
  outline: none;
  box-shadow: none;
  border-color: #00000020;
}
.refund-form a.themeBtn:hover {
  border: 2px solid var(--color-primary);
}

.refund-form a.themeBtn {
  border: 2px solid transparent;
  margin-top: 2rem;
}
.refund-form input::-webkit-file-upload-button {
  border: none;
  background: no-repeat;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #0000008c;
  transition: all 500ms ease-in-out;
}

.refund-form input::-webkit-file-upload-button:hover {
  color: var(--color-primary);
}

.our-products .section-heading {
    text-align: center;
}

.header .navbar-collapse {
    justify-content: space-between;
    padding-left: 13%;
}

.navbar-toggler {
    background-image: url(../images/001-menu.png);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center;
    border: 2px solid #fff;
}
.about-bottom-img img {
    max-width: 150px;
}
/* RESPONSIVE */

@media only screen and (max-width: 1399px) {
    .header .navbar-collapse {
    
    padding-left: 6%;
}
}
@media only screen and (max-width: 1199px) {
    .header-social-icons ul {
    gap: 1rem;
}
    ul.header-main-nav {
    gap: 1rem;
}
.banner-category-content {
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 0 25px;
}
.banner-category-content p {
    width: 100%;
}
.about-bottom-img img {
    width: 160px;
}
.sub-banner-content h2 {
    font-size: 2rem;
}
#simpletire-installer-widget .css-1qt9fqc {
    font-size: 17px;
    margin: 0;
}
.footer__about {
    text-align: center;
    margin: 0 0 20px;
}
.footer-social ul {
    justify-content: center;
}
:is(.footer__links, .footer__newsletter) .title {
    font-size: 1.3rem;
}
.header .navbar-collapse {
    padding-left: 4%;
}
.our-product-desc h4 {
    font-size: 1.5rem;
}
}
@media only screen and (max-width: 991px) {
    .navbar-collapse {
    background-color: #ffffff30;
    padding: 25px;
    border-radius: 6px;
    margin: 10px 0 0;
    backdrop-filter: blur(6px);
}

.navbar-collapse .header-main-nav {
    flex-direction: column;
    margin: 0 0 14px;
}

.navbar-collapse .header-main-nav a {
}
.navbar-collapse.collapse {
    display: none !important;
}

.navbar-collapse.collapse.show {
    display: block !important;
}
}
@media only screen and (max-width: 767px) {
    .header-logo img {
    max-width: 170px;
}
.banner-content-heading h2 {
    font-size: 3rem;
}
}
@media only screen and (max-width: 576px) {
    .banner-content-heading h2 {
    font-size: 2.5rem;
    padding-right: 0;
    text-align: center;
}
.banner-content-heading p {
    padding-right: 0;
    text-align: center;
}
.section-banner-content .themeBtn {
    margin: 0 auto;
}
.banner-category-content h2 {
    width: 100%;
    font-size: 2rem;
}
.banner-category-content {
    bottom: 15px;
}
.banner-content {
    padding-top: 3rem;
}
.banner-content h2,.section-heading h2,.section-heading h3,.query-form h2,.about-bottom-content h2,.reviews-heading h1 {
    font-size: 2.5rem;
}

.banner-content p {
    padding-right: 0;
}
.about-bottom-img {
    bottom: -9rem;
}
.sub-banner_bg {
    padding: 1rem;
}
#simpletire-installer-widget {
    margin: 30px 0 0;
}
#simpletire-installer-widget .css-8x0jzl {
    padding: 0 15px;
    text-align: center;
    margin: 14px 0 0;
}
.bolg-card {
    margin-bottom: 30px;
}

.news-letter-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin: 0 0 24px;
}

.news-letter-content input {
    text-align: center;
}

.footer__about img {
    max-width: 180px;
    margin: 0 0 20px;
}

.footer {
    background: #590000;
    padding-top: 3rem;
}

.footer__links {
    text-align: center;
    margin: 0 0 20px;
}

:is(.footer__links, .footer__newsletter) .title::after {
    left: 50%;
    transform: translatex(-50%);
}

.footer__newsletter .title {
    text-align: center;
}


.footer__newsletter p {
    text-align: center;
}


.footer__copyright {
    font-size: 14px;
}
.sub-banner-bg {
    padding: 1rem;
}
.page-title-content h1 {
    font-size: 2.5rem;
}
.about-bottom-content {
    margin: 1rem 0;
}
.email-card {
    padding: 1rem;
}
.email-card span {
    font-size: 2rem;
}
.about-bottom-content-deals {
    margin-top: 1rem;
}
.our-product {
    padding: 1rem 0 2rem;
}
.product-actions {
    flex-wrap: wrap;
    gap: 5px;
}

.product-actions button[data-toggle-btn="filter"] {
    padding-left: 0;
}
}
@media only screen and (max-width: 480px) {
    
}