* {
  margin: 0;
  padding: 0;
  outline: 0;
}
:root {
  --red: #9e0000;
  --dark: #000000;
  --white: #ffffff;
  --text1: #444444;
  --text2: #dddddd;
}
html {
  scroll-behavior: smooth;
}
html ::-webkit-scrollbar {
  width: 6px;
  background-color: #f8f8f8;
  cursor: pointer;
}
html ::-webkit-scrollbar-thumb {
  background: #ddd;
  width: 6px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: var(--red);
  cursor: pointer;
}
@font-face {
  font-family: Larsseit-Thin;
  src: url(../fonts/Larsseit-Thin.otf);
}
@font-face {
  font-family: Larsseit-Medium;
  src: url(../fonts/Larsseit-Medium.otf);
}
@font-face {
  font-family: Larsseit-Light;
  src: url(../fonts/Larsseit-Light.otf);
}
@font-face {
  font-family: Larsseit-Bold;
  src: url(../fonts/Larsseit-Bold.otf);
}
@font-face {
  font-family: Larsseit-ExtraBold;
  src: url(../fonts/Larsseit-ExtraBold.otf);
}
body {
  background: #fffffff8;
  font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
img,
span,
input,
form,
label,
.btn,
.navbar,
.navbar-brand {
  margin: 0;
  padding: 0;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
p::selection,
a::selection,
ol::selection,
ul::selection,
li::selection,
img::selection,
span::selection,
input::selection,
form::selection,
label::selection,
.btn::selection,
.navbar::selection,
.navbar-brand::selection {
  color: #fff;
  background: var(--red);
}
ol,
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  color: #db2f2f;
}
h1 {
  font-size: 50px;
  color: #111;
  font-family: Larsseit-Medium;
}
h2 {
  font-size: 40px;
  color: #111;
  font-family: Larsseit-Medium;
}
h3 {
  font-size: 35px;
  color: #111;
  font-family: Larsseit-Medium;
}
h4 {
  font-size: 30px;
  color: #111;
  font-family: Larsseit-Medium;
}
h5 {
  font-size: 25px;
  color: #111;
  font-family: Larsseit-Medium;
}
h6 {
  font-size: 18px;
  font-family: Larsseit-Medium;
}
p {
  font-size: 14px;
  font-family: 'roboto';
}
.ptb {
  padding: 70px 0px;
}
.mtb-15 {
  margin: 15px 0;
}
.container-fluid {
  padding: 0px 80px;
}
.btn {
  background: var(--red);
  padding: 7px 18px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  border: none;
  transition: 0.3s;
}
.btn:hover {
  background: #222;
  border-color: #222;
  color: #fff;
}
.btn:focus {
  background: #222;
  border-color: #222;
  color: #fff;
}
.btn-2 {
  background: #ddd;
  padding: 7px 18px;
  border-radius: 3px;
  color: #000;
  font-size: 14px;
  border: none;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-2:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}
.btn-2:focus {
  background: #333;
  border-color: #333;
  color: #fff;
}
/* --- Preloader ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: var(--red);
  border-bottom-color: var(--red);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ========= Common Heading = (START) ============================= */
.heading {
  padding-bottom: 40px;
}
.heading h4 {
  font-family: Larsseit-Bold;
  color: #333;
  font-size: 30px;
}
.heading h4 span {
  color: var(--red);
}
.divider {
  position: relative;
  display: inline-block;
  margin: 0px 0;
  width: 200px;
  text-align: center;
}
.divider:before {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, rgba(68, 171, 186, 0), #8b1111);
  content: "";
}
.divider:after {
  position: absolute;
  left: 0;
  top: -5px;
  height: 4px;
  width: 100px;
  background: linear-gradient(-90deg, rgba(68, 171, 186, 0), #8b1111);
  content: "";
}
.heading .divider:after {
  left: auto;
  right: 0;
}
/* ========= Common Heading = (END) ======================= */
/* ========= Scoll Top = (START) ============================ */
.totop {
  position: fixed;
  bottom: 0px;
  right: 10px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 5px 5px 0 0;
  line-height: 47px;
  font-size: 20px;
  text-align: center;
}
.totop:hover {
  line-height: 40px;
  color: #fff;
  background: var(--red);
  text-shadow: 0 0 5px #000;
}
/* ========= Scoll Top = (END) ========================= */
/* ========= Top Section = (START) ========================= */
.top_part {
  background: var(--red);
  padding: 5px 0;
  display: block;
}
.top_part p {
  font-size: 16px;
  color: var(--white);
  font-family: Larsseit-Medium;
}
/* ========= Top Section = (START) ================================ */
/* ========= Header = (START) ================================ */
.header_part {
  background-color: #fff;
  transition: 0.3s;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  position: fixed;
  box-shadow: 0 0 3px #ddd;
}
.header_part.scrolling {
  padding: 15px 0;
  border-bottom: 0.5px solid #aaa;
  top: 0;
  left: 0;
  transition: 0.3s;
  position: fixed;
}
.header_part img {
  height: 60px;
  transition: 0.4s;
}
.header_part .header_search {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 0px 5px;
  background: #f7f7f7;
}
.header_part .header_search input {
  border: none;
  padding: 10px;
  height: 40px;
  width: 300px;
  border-radius: 20px;
  font-size: 15px;
  background: #f7f7f7;
}
.header_part .header_search input::placeholder {
  font-size: 13px;
}
.header_part .header_search button {
  height: 35px;
  width: 35px;
  line-height: 36px;
  color: #000;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  font-size: 14px;
}
.header_part .header_search button:hover {
  background: var(--red);
  color: #fff;
}
.header_part .header_search button:focus {
  background: var(--red);
  color: #fff;
}
.header_part .dropdown {
  margin-left: 40px;
  font-size: 15px;
  font-weight: 500;
}
.header_part .dropdown i {
  font-size: 16px;
  margin-top: 3px;
}
.header_part .dropdown-toggle {
  border: none;
  background: #fff;
}
.header_part .dropdown-menu {
  min-width: 120px;
}
.header_part .dropdown-menu[data-bs-popper] {
  top: 150%;
  left: -10px;
}
.header_part .dropdown-item {
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
  text-transform: capitalize;
}
.header_part .dropdown-item i {
  margin-right: 5px;
  font-size: 15px;
}
.header_part .dropdown-item:hover {
  background: #fff;
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
  text-transform: capitalize;
}
.header_part .dropdown-item:focus {
  background: #fff;
  font-weight: 400;
  padding: 3px 12px;
  font-size: 13px;
  text-transform: capitalize;
}
.cart_sidebar_toggle {
  text-align: center;
  margin-left: 30px;
  position: relative;
}
.cart_sidebar_toggle span {
  position: absolute;
  right: -8px;
  top: -8px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  background: #fff;
  color: #000;
  text-align: center;
  z-index: 999;
  border-radius: 50%;
  font-size: 11px;
  border: 0.5px solid #aaa;
}
.cart_sidebar_toggle a i {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 50%;
  opacity: 0.9;
}
.cart_sidebar_toggle a i:hover {
  opacity: 1;
}
/*-- Navigation Menu ---*/
.navbar li {
  position: relative;
  float: left;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--red);
}
/* ---- Mobile Navigation ----- */
.toggle_icon {
  font-size: 20px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  color: #333;
  display: none;
  margin-left: 10px;
}
@media (max-width: 775px) {
  .toggle_icon {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .header_search {
    display: none;
  }
}
.navbar-mobile .cart_sidebar_toggle {
  display: none;
}
.navbar-mobile .header_search {
  display: none;
}
.navbar-mobile .dropdown {
  display: none;
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #eee;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 50px;
  left: 15px;
  background-color: #111;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 10px;
}
.navbar-mobile a {
  padding: 10px 20px;
  color: #eee;
  font-weight: 400;
}
.navbar-mobile a:hover {
  font-weight: 400;
}
.navbar-mobile > ul > li {
  padding: 0;
  background: #111;
  float: none;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  display: none;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #eee;
  background: var(--red);
  padding: 10px 20px;
}
/* ========= Header = (End) ================================ */
/* ========= Cart Sidebar = (START) =========================== */
/* ========= Sidebar = (Start) ================================ */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow: hidden;
  transition: 0.1s;
  z-index: 999;
  box-shadow: 0 0 3px #aaa;
}
.sidebar_logo {
  margin-bottom: 20px;
}
.sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 16px;
  color: #d62d2d;
  cursor: pointer;
}
.sidenav_header {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #aaa;
}
.sidenav_header h4 {
  font-size: 22px;
}
.sidenav_body {
  overflow: auto;
  height: 700px;
  padding-bottom: 140px;
}
.sidenav_body ul li {
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}
.sidenav_body ul li:hover {
  background: #f9f9f9;
}
.sidenav_body ul li img {
  height: 70px;
  width: 70px;
  border-radius: 3px;
  border: 0.5px solid #ddd;
  margin-right: 10px;
  float: left;
}
.sidenav_body ul li h6 {
  font-size: 14px;
}
.sidenav_body ul li h6:hover {
  color: var(--red);
}
.sidenav_body ul li .sidenav_product {
  position: relative;
}
.sidenav_body ul li .sidenav_product .close_product i {
  position: absolute;
  right: -8px;
  top: -5px;
  color: var(--red);
  font-size: 10px;
  height: 15px;
  width: 15px;
  line-height: 16px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}
.sidenav_body ul li .sidenav_product .close_product i:hover {
  background: var(--red);
  color: #fff;
}
.sidenav_body ul li p {
  margin-top: 5px;
  color: #666;
}
.sidenav_body ul li p b {
  color: var(--red);
  padding-left: 5px;
}
.number {
  margin-top: 5px;
  display: flex;
}
.number span {
  cursor: pointer;
}
.number .minus,
.number .plus {
  width: 20px;
  height: 20px;
  line-height: 10px;
  background: #f2f2f2;
  padding: 5px 0;
  margin: 0;
  border: 1px solid #ddd;
  display: inline-block;
  text-align: center;
}
.number .minus:hover,
.number .plus:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.number input {
  height: 20px;
  width: 40px;
  text-align: center;
  font-size: 12px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
}
.sidenav_footer {
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f6f6f6;
  border-top: 1px solid #ddd;
}
.sidenav_footer .btn {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
}
/* ========= Cart Sidebar = (END) =========================== */
/* ========= Banner = (START) =========================== */
.banner_section {
  background: url(../images/banner/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 220px 0 180px;
}
.banner_text h1 {
  font-size: 48px;
  font-family: Larsseit-ExtraBold;
}
.banner_text p {
  padding: 10px 0;
  font-size: 18px;
}
.banner_text .btn {
  margin-top: 20px;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 24px;
}
.banner_slide_img {
  padding: 5px;
}
.banner_slide_img img {
  transition: 0.5s;
  cursor: move;
}
.banner_slide_img img:hover {
  transform: translateY(-5px);
}
/* ========= Banner = (End) ================================ */
/* ==== Category  = (Start) ================================ */
.category_item {
  padding: 10px;
  background: #fff;
  border: 0.5px solid #fff;
  border-radius: 5px;
  display: block;
  transition: 0.3s;
  margin: 18px 5px;
}
.category_item:hover {
  border: 0.5px solid #f0b9b9;
}
.category_item:hover p {
  color: var(--red);
}
.category_item:focus {
  border: 0.5px solid #f0b9b9;
}
.category_item:focus p {
  color: var(--red);
}
.category_item p {
  padding-top: 8px;
  font-size: 13px;
  font-weight: 500;
}
/* ==== Category  = (End) ================================ */
/* ====  solution = (Start) ================================ */
.solution_section {
  padding: 100px 0;
  background: #f7f7f7;
}
.solution_section h4 {
  font-size: 36px;
  color: #222;
  text-align: center;
  font-family: Larsseit-Light;
  margin-bottom: 40px;
}
.solution_section h4 span {
  font-family: Larsseit-ExtraBold;
  color: var(--red);
}
.solution_item {
  padding: 15px 12px;
  border: 0.5px solid #f7f7f7;
  transition: 0.4s;
  border-radius: 5px;
  margin: 14px 0;
}
.solution_item:hover {
  border: 0.5px solid #f0b9b9;
  background: #fff;
}
.solution_item h5 {
  font-family: 'roboto';
  font-weight: 400;
  padding: 20px 0;
}
.solution_item h5 b {
  font-weight: 600;
  color: var(--red);
}
.solution_item p {
  font-size: 14px;
}
/* ==== solution  = (End) ================================ */
/* ====  Top Seller = (Start) ================================ */
.topseller_section {
  font-family: 'roboto';
}
.topseller_section .heading {
  padding-bottom: 20px;
}
.topseller_section .heading a {
  padding: 8px 25px;
  border: 1px solid #be4646;
  border-radius: 5px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
}
.topseller_section .heading a:hover {
  background: var(--red);
  color: #fff;
}
.product_items {
  margin: 5px 15px;
}
.product_items img {
  width: 100%;
  border-radius: 3px;
  border: 0.5px solid #fff;
  transition: 0.3s;
}
.product_items img:hover {
  border-color: #eba7a7;
}
.product_items h5 {
  padding: 10px 0 5px;
  font-size: 16px;
  font-family: 'roboto';
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
}
.product_items h5:hover {
  color: var(--red);
}
.product_items .review {
  padding-bottom: 5px;
}
.product_items .review i {
  color: #e4531b;
}
.product_items .review span {
  padding-left: 10px;
  font-size: 13px;
  color: #666;
}
.product_items h3 {
  font-size: 22px;
  color: var(--red);
}
.product_items h3 span {
  text-decoration: line-through;
  color: #777;
  font-size: 18px;
  font-weight: 300;
  padding-left: 5px;
}
.product_items h3 b {
  font-weight: 300;
  color: var(--red);
  font-size: 1px;
  padding-left: 10px;
}
.product_items p {
  font-size: 13px;
  color: #555;
  padding-top: 10px;
  margin-bottom: 5px;
}
.product_items .number {
  float: left;
  margin-right: 10px;
}
.product_items .number span {
  height: 32px;
  line-height: 22px;
  width: 20px;
}
.product_items .number input {
  height: 32px;
  font-size: 16px;
  width: 40px;
  border-left: none;
  border-right: none;
}
.product_items .btn {
  margin-top: 5px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
}
.product_items .btn i {
  padding-right: 5px;
}
.left_arrow {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #f7f7f7;
  transition: 0.3s;
  cursor: pointer;
  color: #555;
}
.left_arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.right_arrow {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #f7f7f7;
  transition: 0.3s;
  cursor: pointer;
  color: #555;
}
.right_arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
/* ==== Top Seller  = (End) ================================ */
/* ==== guarantee  = (End) ================================ */
.guarantee_bg {
  background: url(../images/bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 70px;
}
.guarantee_text h3 {
  font-size: 50px;
  font-family: Larsseit-ExtraBold;
  color: #fff;
  padding-top: 35px;
}
.guarantee_text h6 {
  font-family: 'roboto';
  font-size: 24px;
  color: #fff;
  padding: 10px 0 15px;
}
.guarantee_text p {
  font-size: 15px;
  color: #fff;
}
/* ====  guarantee = (Start) ================================ */
/* ==== testimonial  = (Start) ================================ */
.testimonial_section {
  background: #f3f3f3;
  padding: 100px 0;
}
.testimonial_section .heading {
  padding-bottom: 20px;
}
.testimonial_section .heading img {
  height: 22px;
  padding-right: 10px;
}
.testimonial_section p {
  font-size: 16px;
  padding-top: 8px;
}
.testimonial_item {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 6px #ddd;
  border-radius: 5px;
  margin: 10px;
  transition: 0.3s;
}
.testimonial_item:hover {
  box-shadow: 0 0 10px #bbb;
}
.testimonial_item img {
  height: 18px;
  float: left;
}
.testimonial_item span {
  text-align: right;
  float: right;
  font-size: 13px;
  padding-top: 3px;
}
.testimonial_item p {
  font-size: 14px;
  padding: 20px 0 10px;
  color: #555;
}
.testimonial_item h6 {
  font-size: 15px;
}
/* ==== testimonial  = (End) ================================ */
/* ====  Footer = (Start) ================================ */
.footer_section {
  background: #000;
  padding: 80px 0;
}
.footer_content {
  padding: 10px;
}
.footer_content h4 {
  font-size: 20px;
  color: #eee;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.footer_content p {
  font-size: 13px;
  color: #aaa;
  padding-bottom: 10px;
}
.footer_content input {
  height: 50px;
  background: #fff;
  font-weight: 500;
  color: #000;
  border-radius: 5px;
  padding: 15px;
}
.footer_content input::placeholder {
  font-size: 13px;
  color: #666;
}
.footer_content button {
  margin-top: 10px;
  height: 50px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 12px;
}
.footer_content button:hover {
  background: #0e7a56;
}
.footer_content ul li a {
  color: #aaa;
  font-size: 13px;
}
.footer_content ul li a:hover {
  color: #fff;
}
.footer_content ul li a:focus {
  color: #fff;
}
.contact_info {
  padding-top: 10px;
}
.contact_info li {
  padding-left: 33px;
  padding-bottom: 18px;
  position: relative;
}
.contact_info li:hover i {
  color: #f35151;
}
.contact_info li i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  color: #eee;
  transition: 0.3s;
}
.contact_info li h6 {
  font-size: 14px;
  color: #ddd;
}
/* ==== Footer  = (End) ================================ */
/* ====  bottom_section = (Start) ================================ */
.bottom_section {
  padding: 25px 0;
  background: #000;
  border-top: 1px solid #222;
}
.bottom_section p {
  font-size: 14px;
  color: #aaa;
}
.bottom_section p b {
  color: #ddd;
}
.bottom_section .footer_social {
  text-align: right;
}
.bottom_section a {
  text-align: right;
  color: #aaa;
  font-size: 18px;
  margin-left: 8px;
}
.bottom_section a:hover {
  color: #f35151;
}
/* ====  bottom_section = (End) ================================ */
/* ================================================================================================================================================================== */
/* ====  page title = (Start) ================================ */
.title_section {
  background: url(../images/bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  padding: 200px 0px 80px;
  position: relative;
}
.title_overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #0303037a, #00000011);
}
.title_section h1 {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 25px;
  font-family: Larsseit-ExtraBold;
  letter-spacing: 1px;
  word-spacing: 4px;
}
.title_section span {
  color: #ddd;
  font-size: 14px;
}
.title_section span .bi-chevron-double-right {
  font-size: 10px;
}
.title_section span a {
  color: #eee;
}
.title_section span a:hover {
  color: #df5656;
}
.title_section span i {
  color: #fff;
  padding: 0px 5px;
}
.title_section span i:hover {
  color: #df5656;
}
/* ====  page title = (End) ================================ */
/* ====  Product = (Start) ================================ */
.product_section {
  padding: 40px 0 60px;
}
.product_section .product_items {
  margin: 15px 0;
}
.product_section h3 {
  font-size: 25px;
}
/* ====  Product = (End) ================================ */
/* ====  category_sidenav = (Start) ================================ */
.category_open {
  background: var(--red);
  padding: 10px 15px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}
.category_open a {
  color: #fff;
}
.category_open a i {
  padding-right: 5px;
}
.category_open .close_btn {
  font-size: 14px;
  color: #fff;
  float: right;
  text-align: right;
  padding-top: 4px;
}
.category_sidenav .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 16px;
  color: #d62d2d;
  cursor: pointer;
}
.category_sidenav_content {
  background: #eee;
  margin: 5px 15px 30px;
}
.category_sidenav_content h4 {
  color: #fff;
  background: var(--red);
  padding: 10px 15px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.category_sidenav_content .accordion-button:not(.collapsed) {
  color: var(--red);
  background: #f3ebeb;
  border-bottom: 0.5px solid #d6c2c2;
}
.category_sidenav_content .accordion-button::after {
  background-image: url(../images/icon/down.svg);
  opacity: 0.5;
}
.category_sidenav_content .accordion-button:not(.collapsed)::after {
  background-image: url(../images/icon/down-red.svg);
  transform: rotate(180deg);
  opacity: 1;
}
.category_sidenav_content .accordion-button {
  padding: 10px 15px;
  box-shadow: none;
  font-weight: 500;
  color: #333;
  background: #f8f8f8;
  font-size: 15px;
}
.category_sidenav_content .accordion-button:hover {
  color: var(--red);
  background: #f3ebeb;
}
.category_sidenav_content .accordion-body {
  padding: 5px 0;
}
.category_sidenav_content .accordion-body ul li a {
  padding: 5px 15px;
  background: #fff;
  display: block;
  font-size: 14px;
  color: #333;
}
.category_sidenav_content .accordion-body ul li a:hover {
  color: var(--red);
  background: #f5f5f5;
}
/* ==== category_sidenav  = (End) ================================ */
/* ==== Product Details  = (Start) ================================ */
.product_details_section {
  padding: 130px 0 60px;
}
.xzoom-thumbs {
  margin-bottom: 10px;
  margin-top: 10px;
}
.xzoom {
  border: 0.5px solid #ddd;
  width: 500px;
  height: auto;
  box-shadow: none;
}
/* Thumbs */
.xzoom-gallery {
  border: 1px solid #cecece;
  margin-right: 6px;
  margin-bottom: 10px;
  height: 80px;
  width: 80px;
  float: left;
}
.xzoom-gallery:hover {
  border: 1px solid #bb5252;
}
/* Everything out of border is hidden */
/* Preview */
.xzoom-preview {
  border: 1px solid #a07e7e;
  background: #fff;
  box-shadow: none;
  margin-left: 5px;
}
/* Lens */
.xzoom-lens {
  border: 1px solid #555;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
}
.product_details_content {
  font-family: 'roboto';
}
.product_details_content .breadcrumb-item {
  font-size: 13px;
}
.product_details_content .breadcrumb-item a:hover {
  color: var(--red);
}
.product_details_content h1 {
  font-size: 25px;
  padding-bottom: 8px;
}
.product_details_content h3 {
  font-size: 30px;
  color: var(--red);
  font-weight: 600;
  font-family: 'roboto';
}
.product_details_content h3 span {
  font-weight: 400;
  color: #666;
  text-decoration: line-through;
  font-size: 20px;
}
.product_details_content .review {
  margin-top: 10px;
}
.product_details_content .review i {
  color: #e4531b;
}
.product_details_content .review span {
  padding-left: 10px;
  color: #666;
}
.product_details_content p {
  padding: 10px 0;
  width: 80%;
  line-height: 1.6;
}
.product_details_content table {
  margin-top: 10px;
}
.product_details_content table tr td {
  padding-bottom: 10px;
  font-size: 14px;
}
.product_details_content table tr td:first-child {
  padding-right: 25px;
  font-weight: 500;
}
.product_details_content .add_cart {
  margin-top: 10px;
}
.product_details_content .add_cart .number {
  float: left;
  margin-right: 10px;
}
.product_details_content .add_cart span {
  cursor: pointer;
}
.product_details_content .add_cart .minus,
.product_details_content .add_cart .plus {
  width: 30px;
  height: 40px;
  line-height: 30px;
  background: #f2f2f2;
  font-size: 18px;
}
.product_details_content .add_cart .minus:hover,
.product_details_content .add_cart .plus:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.product_details_content .add_cart input {
  height: 40px;
  width: 50px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
}
.product_details_content .add_cart .btn {
  height: 40px;
  margin-top: 5px;
}
.product_details_content .add_cart .btn-2 {
  height: 40px;
  margin-top: 20px;
  background: #fff;
  padding: 0;
  text-transform: capitalize;
}
.product_details_content .add_cart .btn-2 i {
  padding-right: 2px;
}
.product_details_content .add_cart .btn-2:hover {
  color: var(--red);
}
.product_details_content .add_cart .btn-2:focus {
  color: var(--red);
}
.product_details_content .product_share {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}
.product_details_content .product_share p {
  font-size: 16px;
}
.product_details_content .product_share p a {
  margin-left: 5px;
  color: #666;
}
.product_details_content .product_share p a:hover {
  color: var(--red);
}
/* ==== Product Details  = (End) ================================ */
/* ==== Products Tabs = (Start) ================================ */
.products_tabs_section nav {
  border-bottom: 1px solid #ddd;
}
.products_tabs_section nav .nav_tab {
  padding: 8px 25px;
  color: #444;
  background: #ddd;
  margin-right: 10px;
}
.products_tabs_section nav .nav_tab:hover {
  background: var(--red);
  color: #fff;
}
.products_tabs_section nav .active {
  background: var(--red);
  color: #fff;
}
.products_tabs_section .tab-pane {
  padding: 20px 15px;
  border: 0.5px solid #ddd;
}
.products_tabs_section .tab-pane h6 {
  padding-bottom: 10px;
}
.products_tabs_section .tab-pane p {
  color: #555;
  line-height: 1.6;
}
.products_tabs_section .tab-pane ul {
  padding-top: 10px;
}
.products_tabs_section .tab-pane ul li {
  color: #555;
  font-size: 14px;
  padding-bottom: 6px;
}
.products_tabs_section .tab-pane ul li i {
  padding-right: 5px;
}
.products_tabs_section .tab-pane .review_box {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.products_tabs_section .tab-pane .review_img {
  float: left;
  height: 100%;
  margin: 0 15px 15px 0;
}
.products_tabs_section .tab-pane .review_img img {
  height: 80px;
  width: 80px;
  border-radius: 3px;
}
.products_tabs_section .tab-pane .review_text h5 {
  color: #333;
  font-size: 16px;
}
.products_tabs_section .tab-pane .review_text h6 span {
  font-size: 18px;
  font-weight: 300;
  color: #444;
}
.products_tabs_section .tab-pane .review_text i {
  color: #e67b34;
  font-size: 13px;
}
.products_tabs_section .tab-pane .review_text p {
  line-height: 1.5;
  padding-top: 5px;
}
.review_form {
  padding: 20px;
  background: #eee;
  border-radius: 5px;
}
.review_form h5 {
  font-size: 20px;
  padding-bottom: 10px;
}
.review_form label {
  padding-bottom: 2px;
  padding-top: 13px;
  font-size: 13px;
}
.review_form .form-control {
  box-shadow: none;
}
.review_form .form-control::placeholder {
  font-size: 14px;
}
.review_form .btn {
  margin-top: 20px;
  padding: 10px 22px;
}
/* ==== Products Tabs  = (End) ================================ */
/* ==== Cart  = (Start) ================================ */
.cart_section h5 {
  font-size: 22px;
  padding-bottom: 10px;
}
.cart_table thead {
  background: #333;
  color: #eee;
  height: 30px;
  line-height: 30px;
  border: none;
}
.cart_table thead th {
  border-color: #ddd;
}
.cart_table tr th img {
  height: 70px;
  border: 0.5px solid #ddd;
  margin-right: 6px;
  border-radius: 3px;
}
.cart_table tr th img:hover {
  border-color: #c98e8e;
}
.cart_table tr th a:hover {
  color: var(--red);
}
.cart_table tr th a:hover img {
  border-color: #c98e8e;
}
.cart_table tr td {
  padding-top: 25px;
  font-size: 18px;
}
.cart_table tr td i {
  font-size: 10px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  background: #eee;
  border-radius: 50%;
  transition: 0.3s;
  color: #333;
}
.cart_table tr td i:hover {
  background: var(--red);
  color: #fff;
}
.cart_table tr td .number .minus,
.cart_table tr td .number .plus {
  height: 25px;
  width: 25px;
  line-height: 16px;
}
.cart_table tr td .number input {
  height: 25px;
}
.cart_table tr .sub_total {
  font-size: 20px;
  font-weight: 600;
  color: #b61919;
}
.cart_total {
  padding: 20px;
  border: 2px solid #cc7e7e;
  border-radius: 3px;
  background: #f8f7f7;
}
.cart_total h4 {
  font-size: 24px;
  padding-bottom: 20px;
  color: var(--red);
}
.cart_subtotal th,
.cart_subtotal td {
  font-size: 16px;
  padding: 10px 0;
  color: #444;
  font-weight: 500;
}
.cart_subtotal td {
  text-align: right;
  font-weight: 500;
}
.cart_subtotal .btn {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.grand_total th,
.grand_total td {
  font-size: 22px;
  color: #000;
}
.grand_total td {
  font-weight: 600;
  color: var(--red);
}
.coupon_code form {
  display: flex;
  margin-top: 20px;
}
.coupon_code form .form-control {
  width: 70%;
  border: 0.5px solid #aaa;
}
.coupon_code form button {
  width: 30%;
  margin-left: 10px;
}
/* ====  Cart  = (End) ================================ */
/* ====  Checkout = (Start) ================================ */
.checkout_section {
  background: #eee;
}
.checkout_form {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
}
.checkout_form h5 {
  color: var(--red);
  padding-bottom: 20px;
}
.checkout_form label {
  font-size: 14px;
  margin-top: 14px;
  padding-bottom: 3px;
}
.checkout_form .form-control {
  height: 40px;
  border-radius: 0;
  box-shadow: none;
  color: #000;
}
.checkout_form .form-control::placeholder {
  font-size: 14px;
}
.checkout_form .form-control:focus {
  border-color: #c79090;
}
.checkout_form .form-control option:hover {
  background: #a55050;
  color: #fff;
}
.checkout_form textarea {
  height: 160px !important;
}
.order_details {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  border: 3px dashed #eee;
  margin: 0px 20px;
}
.order_details h5 {
  color: var(--red);
  padding-bottom: 20px;
}
.order_details table {
  background: #fff;
}
.order_details th {
  font-size: 14px;
}
.order_details tr .sub_total {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  padding-top: 30px;
}
.order_details .cart_subtotal th {
  font-size: 18px;
}
.order_details .cart_subtotal td {
  font-size: 18px;
}
.order_details .cart_subtotal .grand_total {
  text-transform: uppercase;
}
.order_details .cart_subtotal .grand_total th,
.order_details .cart_subtotal .grand_total td {
  font-size: 22px;
}
.order_details img {
  height: 40px;
}
.payments {
  padding: 20px 0;
}
.payments .form-check {
  padding-bottom: 10px;
}
.payments .form-check img {
  height: 30px;
}
.payments p {
  padding: 20px 0;
}
.payments .btn {
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
/* ====  Checkout  = (End) ================================ */
/* ====   = (Start) ================================ */
/* ====    = (End) ================================ */
