@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", sans-serif;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input,
textarea,
select {
  width: 100%;
  outline: none;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h4,
h3,
h5 {
  font-weight: 800;
  color: #253d4e;
  font-family: "Quicksand", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

input[type=number] {
  /* Reset specific properties */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.lg_heading {
  font-size: 64px;
  color: #253d4e;
}

.md_heading {
  font-size: 32px;
  color: #253d4e;
}

.sm_heading {
  font-size: 24px;
  color: #253d4e;
  font-weight: 700;
}

.product_heading {
  font-size: 16px;
  color: #253d4e;
  font-weight: 700;
}
.product_heading:hover {
  color: #3577f0;
}

.sub_heading {
  font-size: 24px;
  color: #7e7e7e;
  margin: 15px 0px 30px;
}

.container {
  max-width: 1640px;
  width: 99%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container {
    width: 90%;
  }
  .lg_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .sub_heading {
    font-size: 14px;
  }
  .featured_shop_item {
    margin-bottom: 30px;
  }
  p,
  a {
    font-size: 12px !important;
  }
}
.section_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.section_title ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.section_title ul li a {
  font-weight: 600;
  color: #253d4e;
  font-size: 18px;
}
.section_title ul li a.active {
  color: #3577f0;
}

.random_gap {
  padding: 80px 0 30px;
}

.footer_title {
  font-size: 24px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .section_title ul {
    flex-wrap: wrap;
  }
  .section_title ul li a {
    font-size: 14px;
  }
}
.section_gap {
  padding: 80px 0;
}

.section_top_gap {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .section_top_gap {
    padding-top: 50px;
  }
  .section_gap {
    padding: 50px 0;
  }
}
.shop_btn {
  padding: 5px 10px;
  background-color: #3577f0;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.shop_btn:hover {
  background-color: #fdc040;
}
.shop_btn:hover::after {
  margin-left: 10px;
}
.shop_btn::after {
  content: "\f061";
  font-family: "fontAwesome";
  display: inline-block;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

a {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
a.all_btn {
  border-radius: 5px;
  border: 1px solid #3577f0;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}
a.all_btn:hover {
  color: #fff;
  background-color: #3577f0;
}
a.support_btn {
  border: 2px solid #3577f0;
  padding: 10px 20px;
  border-radius: 20px;
  color: #253d4e;
}
a.support_btn::before {
  content: "\f2a0";
  display: inline-block;
  font-family: "fontAwesome";
  margin-right: 15px;
  color: #253d4e;
  transition: all 0.3s ease-in-out;
}
a.support_btn:hover {
  background-color: #3577f0;
  color: #fff;
}
a.support_btn:hover::before {
  color: #fff;
  transform: scale(1.1);
}
a.reply_btn {
  color: #3577f0;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: block;
  text-align: right;
}
a.view_btn {
  padding: 10px 20px;
  border: 1px solid #3577f0;
}
a.view_btn:hover {
  background-color: #3577f0;
  color: #fff;
}
a.checkout_btn {
  padding: 10px 20px;
  background-color: #3577f0;
  color: #fff;
}
a.checkout_btn:hover {
  background-color: #fdc040;
}
a.read_btn {
  background-color: #3577f0;
  color: #fff;
  padding: 10px 20px;
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
}
a.read_btn:hover {
  box-shadow: 6px 6px 0 #1b2129;
}
a.learn_btn {
  color: #3577f0;
  font-weight: 700;
}
a.learn_btn::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #3577f0;
  transition: all 0.5s ease-in-out;
}
a.learn_btn:hover::after {
  width: 100%;
}

.submit_btn {
  background-color: #3577f0;
  color: #fff;
  font-weight: 500;
  width: 100%;
  padding: 10px 0;
}

.rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  color: #fdc040;
  font-size: 12px;
  margin: 10px 0 5px;
}

button.cart_btn {
  background-color: #b6ccf7;
  padding: 5px 10px;
  border-radius: 5px;
  color: #3577f0;
  transition: all 0.3s ease-in-out;
}
button.cart_btn::before {
  content: "\f07a";
  font-family: "fontAwesome";
  margin-right: 8px;
  color: inherit;
}
button.cart_btn:hover {
  background-color: #3577f0;
  color: #fff;
}

table {
  width: 100%;
  margin-bottom: 30px;
}

.product_content_01 {
  display: none;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.header .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.header .topbar p {
  margin: 0;
}
.header .topbar ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.header .topbar ul li a {
  color: #7e7e7e;
}
.header .topbar ul li a:hover {
  color: #253d4e;
}
.header .topbar ul li:not(:last-child) {
  border-right: 1px solid #ececec;
  padding-right: 8px;
}
.header .topbar_right a {
  color: #3577f0 !important;
  font-weight: 600;
}
.header .central_menu {
  padding: 15px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .central_menu .logo {
  width: 180px;
  height: 64px;
}
.header .central_menu_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.header .central_menu_right li {
  cursor: pointer;
  color: #7e7e7e;
  position: relative;
  z-index: 1;
}
.header .central_menu_right li sup {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #3577f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  top: -4px;
  left: 9px;
  color: #fff;
}
.header .central_menu_right li::before {
  display: inline-block;
  font-family: "fontAwesome";
  margin-right: 10px;
  color: #253d4e;
  font-weight: 800;
}
.header .central_menu_right li.wishlist_icon::before {
  content: "\f004";
}
.header .central_menu_right li.cart_icon {
  position: relative;
  z-index: 2;
}
.header .central_menu_right li.cart_icon::before {
  content: "\f07a";
}
.header .central_menu_right li.cart_icon:hover .mini_cart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .central_menu_right li.cart_icon .mini_cart {
  border: 1px solid #ececec;
  background-color: #fff;
  padding: 30px 15px 15px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
}
.header .central_menu_right li.cart_icon .mini_cart ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.header .central_menu_right li.cart_icon .mini_cart ul li .image {
  min-width: 80px;
  height: 80px;
}
.header .central_menu_right li.cart_icon .mini_cart ul li .text a {
  color: #3577f0;
  font-weight: 500;
  display: block;
}
.header .central_menu_right li.cart_icon .mini_cart ul li .text span {
  font-size: 14px;
}
.header .central_menu_right li.cart_icon .mini_cart ul:not(:last-child) {
  border-bottom: 1px solid #ececec;
}
.header .central_menu_right li.cart_icon .mini_cart .checkout_box {
  padding: 15px 0 0;
}
.header .central_menu_right li.cart_icon .mini_cart .checkout_box span.title {
  font-weight: 700;
}
.header .central_menu_right li.cart_icon .mini_cart .checkout_box span.price {
  font-weight: 700;
  color: #3577f0;
}
.header .central_menu_right li.cart_icon .mini_cart .checkout_box span.price::before {
  content: "Rs.";
  margin-right: 5px;
}
.header .central_menu_right li.account::before {
  content: "\f007";
}
.header .menu_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ececec;
  padding: 15px 0;
  margin-bottom: 15px;
}
.header .menu_box .browser_btn {
  position: relative;
  z-index: 2;
}
.header .menu_box .browser_btn button {
  background-color: #3577f0;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}
.header .menu_box .browser_btn button::after {
  content: "\f107";
  font-family: "fontAwesome";
  display: inline-block;
  margin-left: 15px;
  color: #fff;
}
.header .menu_box .browser_btn button::before {
  content: "\f468";
  font-family: "fontAwesome";
  display: inline-block;
  margin-right: 15px;
  color: #fff !important;
}
.header .menu_box .browser_btn .browsed_items {
  min-width: 400px;
  transform: translateY(-50px);
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
}
.header .menu_box .browser_btn .browsed_items.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .menu_box .browser_btn .browsed_items ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #3577f0;
  border-radius: 5px;
  padding: 15px;
}
.header .menu_box .browser_btn .browsed_items ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-basis: 49%;
  border: 1px solid #ececec;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.header .menu_box .browser_btn .browsed_items ul li:hover {
  border-color: #3577f0;
  color: #3577f0;
}
.header .menu_box .browser_btn .browsed_items ul li .icon {
  max-width: 30px;
  height: 30px;
}
.header .menu_box .menu_items {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
}
.header .menu_box .menu_items > li {
  margin-right: 15px;
}
.header .menu_box .menu_items > li.active > a {
  color: #3577f0;
}
.header .menu_box .menu_items > li a {
  color: #253d4e;
  font-weight: 600;
}
.header .menu_box .menu_items > li.dropdown {
  position: relative;
  z-index: 4;
}
.header .menu_box .menu_items > li.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .menu_box .menu_items > li.dropdown::after {
  content: "\f107";
  display: inline-block;
  margin-left: 10px;
  font-family: "fontAwesome";
  position: absolute;
  top: 0;
  right: -15px;
}
.header .menu_box .menu_items > li > ul {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  min-width: 200px;
  background-color: #fff;
  padding: 15px 0 0;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}
.header .menu_box .menu_items > li > ul a {
  padding: 8px 0 8px 15px;
  display: block;
}
.header .menu_box .menu_items > li > ul a:hover {
  color: #fff;
  background-color: #3577f0;
}
.header .menu_box .menu_items .canvas_top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header .menu_box .menu_items .canvas_top .canvas_logo {
  max-width: 120px;
}
.header .menu_box .menu_items .canvas_top .close_menu {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.header .menu_box .menu_items .canvas_top .close_menu::before {
  content: "";
  border-radius: 50%;
  background-color: rgba(53, 119, 240, 0.8784313725);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.header .menu_box .menu_items .canvas_search_box {
  background-color: #f2f3f4;
  border-radius: 5px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 30px;
  width: 100%;
}
.header .menu_box .menu_items .canvas_search_box input {
  border: none;
  background-color: transparent;
}
.header .menu_box .menu_items .canvas_contact_box {
  padding: 30px;
  border: 1px solid #ececec;
  width: 100%;
}
.header .menu_box .menu_items .canvas_contact_box li {
  line-height: 2;
}
.header .menu_box .menu_items .canvas_contact_box li::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  font-family: "fontAwesome";
  color: #3577f0;
}
.header .menu_box .menu_items .canvas_contact_box li.location::before {
  content: "\f3c5";
}
.header .menu_box .menu_items .canvas_contact_box li.call::before {
  content: "\f095";
}
.header .menu_box .menu_items .canvas_contact_box li.account::before {
  content: "\f007";
}
.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999999;
  background-color: white;
}
.header.sticky .topbar,
.header.sticky .central_menu {
  display: none;
}
.header.sticky .menu_box {
  margin: 0;
}
.header .burger {
  width: 32px;
  height: 25px;
  position: relative;
  z-index: 1;
}
.header .burger .burger_icon {
  width: 100%;
  height: 2px;
  background-color: #253d4e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header .burger .burger_icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #253d4e;
  position: absolute;
  top: -10px;
  left: 0;
}
.header .burger .burger_icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #253d4e;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (max-width: 1199px) {
  .header .central_menu form {
    flex-basis: 70%;
  }
  .header .central_menu form .select_box {
    flex-basis: 25%;
  }
  .header .central_menu form .text-area {
    flex-basis: 68%;
  }
}
@media (max-width: 991px) {
  .header .topbar {
    position: relative;
    z-index: 1;
    justify-content: center !important;
    overflow: hidden;
  }
  .header .topbar p {
    color: #fff;
  }
  .header .topbar_center {
    text-align: center;
  }
  .header .topbar::before {
    position: absolute;
    left: -999px;
    right: -999px;
    top: 0;
    bottom: 0;
    background-color: #3577f0;
    content: "";
    z-index: -1;
  }
  .header .menu_box {
    border: none;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
  }
  .header .menu_box.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .header .menu_box::-webkit-scrollbar {
    width: 3px;
  }
  .header .menu_box::-webkit-scrollbar-thumb {
    width: 100%;
    background-color: #f2f3f4;
  }
  .header .menu_box::-webkit-scrollbar-thumb {
    width: 100%;
    background-color: #3577f0;
  }
  .header .menu_box .browser_btn,
  .header .menu_box .support {
    display: none;
  }
  .header .menu_box .menu_items {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    background-color: #fff;
    min-width: 300px;
    height: 100vh;
    padding: 50px 30px 0;
    overflow-y: scroll;
  }
  .header .menu_box .menu_items > li {
    width: 100%;
    border-bottom: 1px solid #ececec;
    padding-bottom: 10px;
  }
  .header .menu_box .menu_items > li.dropdown::after {
    right: 0;
  }
  .header .menu_box .menu_items > li.dropdown ul {
    position: initial;
    display: none;
    padding: 0;
  }
  .header .menu_box .menu_items > li.dropdown.active ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 600px) {
  .container {
    width: 99%;
  }
  .header .central_menu .logo {
    width: 120px;
  }
}
.banner {
  overflow: hidden;
}
.banner_item {
  position: relative;
  z-index: 1;
  height: 450px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.banner_content {
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
}
.banner_slider {
  overflow: hidden;
}

@media (max-width: 991px) {
  .banner_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
  }
  .banner_item img {
    -o-object-position: right;
       object-position: right;
  }
}
.banner_layout_02 .banner_bg {
  background: url(../imgs/banner/banner-10.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  padding: 50px 0 0 80px;
  position: relative;
  z-index: 1;
}
.banner_layout_02_image {
  max-width: 400px;
  -o-object-position: bottom;
     object-position: bottom;
  position: absolute;
  right: 50px;
  bottom: 0;
}

button.slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f2f3f4 !important;
  color: #253d4e !important;
  z-index: 9;
  position: absolute;
}
button.slick-arrow:hover {
  background-color: #3577f0 !important;
  color: #fff !important;
}
button::before {
  color: #253d4e !important;
}
button.slick-next {
  right: 20px;
}
button.slick-next::before {
  content: "\f105";
  font-family: "fontAwesome";
}
button.slick-prev {
  left: 20px;
}
button.slick-prev::before {
  content: "\f104";
  font-family: "fontAwesome";
}

.slick-dots {
  position: absolute;
  bottom: 10px;
}
.slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #253d4e;
}
.slick-dots li.slick-active button {
  background-color: #3577f0;
  border-color: #3577f0;
}

.page_banner_content {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ececec;
}
.page_banner_content a {
  color: #3577f0;
  font-weight: 700;
  white-space: nowrap;
}
.page_banner_content a::after {
  font-family: "fontAwesome";
  content: "\f105";
  display: inline-block;
  margin-left: 10px;
  color: #7e7e7e;
  font-size: 12px;
}
.page_banner_content a.home::before {
  content: "\f015";
  font-family: "fontAwesome";
  display: inline-block;
  margin-right: 10px;
  color: #3577f0;
  font-size: 16px;
}

.fixed_banner {
  background: url(../imgs/electric/34.jpg) fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.fixed_banner .section_title {
  justify-content: center;
  margin-bottom: 30px;
}
.fixed_banner .section_title h1 {
  color: #fff !important;
}
.fixed_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.fixed_banner_content h1 {
  color: #fff;
  text-transform: uppercase;
}
.fixed_banner_content a.submit_btn {
  display: inline-block;
  width: auto;
  padding: 15px;
}
.fixed_banner_item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
}
.fixed_banner_item i {
  font-size: 65px;
}
.fixed_banner_item span {
  text-transform: uppercase;
  font-family: 600;
}

@media (max-width: 992px) {
  .fixed_banner {
    padding: 80px 0;
    height: auto;
  }
  .fixed_banner .row > div {
    margin-bottom: 15px;
  }
}
.page_banner_02 {
  background: url(../imgs/electric/33.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_banner_02_content {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.page_banner_02_content a {
  color: orangered;
  font-weight: 500;
}
.page_banner_02_content a::after {
  content: "\f105";
  font-family: "fontAwesome";
  display: inline-block;
  margin-left: 10px;
}
.page_banner_02 span {
  color: #fff;
}

form.newsletter .input_box {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
form.newsletter .input_box::before {
  content: "\f1d8";
  font-family: "fontAwesome";
  color: #7e7e7e;
  padding: absolute;
  left: 5px;
  top: 5px;
}
form.newsletter .input_box input {
  border: none;
  background-color: transparent;
}
form.newsletter .submit_btn {
  background-color: #3577f0;
  padding: 15px;
  border-radius: 15px;
  color: #fff;
  font-weight: 500;
  top: 0;
  right: 0;
}
form.search_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 2px solid #3577f0;
  border-radius: 5px;
  flex-basis: 55%;
  padding: 15px;
}
form.search_form .select_box {
  flex-basis: 20%;
  position: relative;
  border-right: 1px solid #ececec;
  margin-right: 10px;
  z-index: 1;
}
form.search_form .select_box select {
  cursor: pointer;
  padding: 10px;
  z-index: -1;
}
form.search_form .select_box select > option:hover {
  background-color: #3577f0;
  color: #fff;
}
form.search_form .select_box::after {
  content: "\f107";
  font-family: "fontAwesome";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
form.search_form .text-area {
  flex-basis: 78%;
}
form.search_form .search_icon {
  flex-basis: 2%;
  cursor: pointer;
}
form.search_form input,
form.search_form select,
form.search_form button {
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
}
form.search_form select {
  font-weight: 700;
}
form.book_form input,
form.book_form textarea {
  border: 1px solid #f2f3f4;
  border-radius: 5px;
  padding: 10px 20px;
}
form.book_form input:focus,
form.book_form textarea:focus {
  border-color: #3577f0;
}
form.book_form input {
  margin-bottom: 10px;
}
form.comment_form {
  margin: 50px 0;
}
form.comment_form_title h1.sm_heading {
  padding: 0;
}
form.comment_form label {
  color: #f2f3f4;
}
form.comment_form input,
form.comment_form textarea,
form.comment_form select {
  background-color: #eee;
  width: 100%;
  border-radius: 5px;
  padding: 8px 15px;
  margin-bottom: 15px;
  border: none;
}
form.comment_form input[type=checkbox],
form.comment_form textarea[type=checkbox],
form.comment_form select[type=checkbox] {
  width: auto;
  margin-right: 8px;
}
form.comment_form input select,
form.comment_form textarea select,
form.comment_form select select {
  color: #f2f3f4;
  -webkit-appearance: none;
}

.quote_form {
  background-color: #fff;
  width: 50%;
  height: auto;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}
.quote_form .close_form {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  background-color: #3577f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.quote_form .comment_form {
  margin: 0;
  padding: 30px 15px;
}
.quote_form.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991px) {
  form.newsletter .input_box {
    padding: 0 0 0 5px;
  }
  form.newsletter .submit_btn {
    padding: 15px 5px;
    display: inline-block;
  }
}
.aside_form {
  background-color: #ddd;
  border-radius: 5px;
  padding-bottom: 30px;
}
.aside_form h1 {
  background: linear-gradient(45deg, #739ff6, #011878 90%);
  text-align: center;
  color: #fff;
  padding: 10px;
  margin-bottom: 15px;
}
.aside_form p {
  color: #3577f0;
  line-height: 1;
  font-size: 14px;
  text-align: center;
  padding: 15px;
}
.aside_form .input_field {
  text-align: center;
}
.aside_form .input_field:not(:last-child) {
  margin: 0 15px;
}
.aside_form .submit_btn {
  background: linear-gradient(to bottom, #739ff6 50%, #3577f1 50%);
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.featured {
  overflow: hidden;
}
.featured .category__tab__content {
  display: none;
}
.featured_slider_item {
  padding: 30px 0;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
}
.featured_slider_item img {
  max-width: 50px;
  max-height: 60px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.featured_slider_item:hover {
  border-color: #3577f0;
}
.featured_slider_item:hover img {
  transform: scale(1.05);
}
.featured_slider_text span {
  display: block;
}
.featured_slider_text span.category_name {
  font-size: 14px;
  color: #253d4e;
  font-weight: 600;
}
.featured_slider_text span.quantity {
  font-size: 12px;
}
.featured_slider_text span.quantity::after {
  content: "items";
  display: inline-block;
}
.featured_shop {
  margin-top: 50px;
}
.featured_shop_item {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  height: 300px;
}
.featured_shop_item_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 50px;
}
.featured_shop_item_content h1 {
  transition: all 0.3s ease-in-out;
}
.featured_shop_item_content:hover h1 {
  transform: translateY(-10px);
}

@media (max-width: 820px) {
  .featured .slick-track {
    grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .featured_shop_item {
    margin-bottom: 30px;
  }
}
.bg_01 {
  background-color: #f2fce4 !important;
}

.bg_02 {
  background-color: #fffceb !important;
}

.bg_03 {
  background-color: #ecffec !important;
}

.bg_04 {
  background-color: #feefea !important;
}

.bg_05 {
  background-color: #fff3eb !important;
}

.bg_06 {
  background-color: #fff3ff !important;
}

.bg_07 {
  background-color: #f2fce4 !important;
}

.bg_08 {
  background-color: #feefea !important;
}

.bg_09 {
  background-color: #fffceb !important;
}

.bg_10 {
  background-color: #feefea !important;
}

.bg_11 {
  background-color: #ecffec !important;
}

.product_box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
.product_item {
  border: 1px solid #ececec;
  padding: 50px 15px 30px;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.product_item .abs_box {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 25px 0 25px 0;
  padding: 5px 20px;
  color: #fff;
}
.product_item .abs_box.discount {
  background-color: #f59758;
}
.product_item .abs_box.new {
  background-color: #3bb77e;
}
.product_item .abs_box.sale {
  background-color: #67bcee;
}
.product_item .abs_box.hot {
  background-color: #f74b81;
}
.product_item_content span.product_category {
  display: block;
  color: #7e7e7e;
  font-size: 12px;
}
.product_item_content .store_name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #7e7e7e;
}
.product_item_content .store_name span {
  color: #3577f0;
  font-size: 14px;
  font-weight: 500;
}
.product_item_hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #3577f0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.product_item_hover li {
  color: #3577f0;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.product_item_hover li:not(:last-child) {
  border-right: 1px solid #3577f0;
  padding-right: 20px;
}
.product_item_hover li a {
  display: inline-block;
  padding: 10px;
}
.product_item_hover li:hover a {
  color: #fdc040;
}
.product_item:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border-color: #3577f0;
}
.product_item:hover .product_item_hover {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.product_action {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product_action span,
.product_action del {
  font-weight: 800;
}
.product_action span::before,
.product_action del::before {
  content: "Rs.";
  display: inline-block;
  margin-right: 5px;
}
.product_action span {
  color: #3577f0;
}
.product_action del {
  color: #7e7e7e;
  font-size: 12px;
}
.product_image {
  position: relative;
  z-index: 1;
}
.product_image img {
  width: 100%;
  height: 200px;
}
.product_banner {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 100%;
}
.product_banner .banner_content {
  position: absolute;
  top: 35%;
  left: 0;
  padding: 0 30px;
}
.product_banner .banner_content h1 {
  margin-bottom: 50px;
}

.active_list .product_box {
  grid-template-columns: repeat(2, 1fr);
}
.active_list .product_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.tab_content,
.tab_content_01,
.detail_tab_content {
  display: none;
}

.columns .section_title {
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.columns .section_title::after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #3577f0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.columns_items > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.columns_items > li:not(:first-child) {
  margin-top: 15px;
}
.columns_items > li .product_thumb {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
.columns_items > li .product_content .product_action {
  justify-content: flex-start;
  gap: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .row > div {
    margin-bottom: 30px;
  }
}
.deal_item_image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.deal_item .product_item_content {
  position: relative;
  z-index: 3;
  background-color: #fff;
  width: 90%;
  margin: -50px auto 0;
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 991px) {
  .deal_item {
    margin-bottom: 30px;
  }
}
.services {
  background: url(../imgs/bg/04.jpg), #7e7e7e;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services_item {
  text-align: center;
  background-color: #fff;
  padding: 60px 40px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
}
.services_item_image {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.service {
  padding: 0 0 30px;
}
.service_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.service_items li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  background-color: #f4f6fa;
  padding: 15px 30px;
  border-radius: 5px;
}
.service_items li h5 {
  font-size: 16px;
}
.service_items li p {
  font-size: 14px;
}
.service_image {
  max-width: 50px;
}

.footer.section_gap {
  padding: 80px 0 0;
}
.footer_logo {
  max-width: 180px;
  margin-bottom: 15px;
}
.footer ul li {
  line-height: 2;
}
.footer ul li p,
.footer ul li a {
  font-weight: 500;
}
.footer ul li a:hover {
  color: #3577f0;
}
.footer ul li span {
  font-weight: 700;
  margin-right: 5px;
}
.footer ul li::before {
  display: inline-block;
  font-family: "fontAwesome";
  margin-right: 5px;
  color: #3577f0;
}
.footer ul li.address::before {
  content: "\f3c5";
}
.footer ul li.call::before {
  content: "\f095";
}
.footer ul li.email::before {
  content: "\f1d8";
}
.footer ul li.hours::before {
  content: "\f017";
}
.footer ul.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.footer ul.socials li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: #3577f0;
  display: grid;
  place-items: center;
}
.footer .copyright_wrapper {
  background-color: #3577f0;
}
.footer .copyright {
  margin-bottom: -50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #3577f0;
  margin-top: 50px;
  padding: 15px 0;
}
.footer .copyright p {
  margin: 0;
  color: #fff;
}
.footer .copyright .footer_title {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

@media (max-width: 991px) {
  .footer .row > div {
    margin-bottom: 30px;
  }
}
.detail .category,
.detail p a,
.detail p span {
  color: #3577f0;
  font-weight: 500;
}
.detail p {
  color: #253d4e;
  margin: 0;
}
.detail p.hero_text {
  font-weight: 600;
  font-size: 18px;
}
.detail_header {
  padding: 0 50px;
}
.detail_header h1 {
  margin: 15px 0;
}
@media (max-width: 991px) {
  .detail .detail_header {
    padding: 0 15px;
  }
}
.detail .blog_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.detail ul {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.detail ul.update_box {
  justify-content: flex-start;
}
.detail ul.update_box li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.detail ul.update_box li img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail ul.share {
  justify-content: flex-end;
}
.detail ul.share li {
  color: #7e7e7e;
}
.detail ul.share li.active {
  color: #fdc040;
}
.detail ul.star {
  gap: 0;
}
.detail ul.star li {
  font-size: 12px;
  color: #7e7e7e;
}
.detail ul.star li.active {
  color: #fdc040;
}
.detail ul.comment_list {
  flex-direction: column;
}
.detail ul.comment_list > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 15px;
}
.detail ul.comment_list > li.reply {
  margin-left: 30px;
}
.detail ul.comment_list > li .comment_profile {
  text-align: center;
}
.detail ul.comment_list > li .comment_profile img {
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail ul.comment_list > li .comment_profile .name {
  color: #3577f0;
  font-weight: 700;
}
.detail ul.comment_list > li:not(:last-child) {
  margin-bottom: 30px;
}
.detail ul.comment_list > li:hover .reply_btn {
  opacity: 1;
  visibility: visible;
}
.detail ul.comment_info {
  justify-content: space-between;
}
.detail_featured {
  height: 380px;
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
}
.detail_content {
  border-bottom: 1px solid #ececec;
  margin-bottom: 30px;
}
.detail_content > div,
.detail_content > .quote {
  margin-bottom: 30px;
  display: block;
}
.detail_content > div > .row,
.detail_content > .quote > .row {
  margin-bottom: 30px;
}
.detail_content_box p,
.detail_content_box h5 {
  margin-bottom: 15px;
}
.detail_content img {
  height: 250px;
}
.detail_content .quote {
  background-color: #f2f3f4;
  padding: 50px;
  font-size: 20px;
  color: #7e7e7e;
  width: 70%;
  margin: 0 auto 30px;
}
.detail .blog_info_02 {
  padding-bottom: 30px;
  gap: 20px;
}
.detail .blog_info_02 ul:not(:last-child) li {
  background-color: #3577f0;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.detail .blog_info_02 ul:not(:last-child) li:hover {
  background-color: #fdc040;
  transform: translateY(-5px);
}
.detail .blog_info_02 ul:last-child li {
  color: #7e7e7e;
}
.detail .blog_info_02 ul:last-child li h6 {
  margin: 0;
}
.detail_form {
  margin-bottom: 50px;
}
.detail_form input,
.detail_form textarea {
  border: 1px solid #ececec;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 10px 20px;
}
.detail_form_header {
  margin-bottom: 30px;
}
.detail_form .submit_btn {
  background-color: #3577f0;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}

.author {
  border: 1px solid #ececec;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.author_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.author_header .profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.author_about li {
  color: #7e7e7e;
}

@media (max-width: 991px) {
  .detail .quote {
    width: 100%;
  }
}
.product_detail .image_slider .image {
  width: 100%;
  height: 450px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.product_detail .image_slider .image img {
  border-radius: 5px;
}
.product_detail .image_slider_nav {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.product_detail .image_slider_nav a {
  width: 80px;
  height: 80px;
  border: 1px solid #ececec;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.product_detail .image_slider_nav a:hover {
  border: 1px solid #3577f0;
}
.product_detail .image_slider_nav a img.active {
  border: 1px solid #3577f0;
}
.product_detail .about_product span.category {
  padding: 5px 8px;
  border-radius: 5px;
  background-color: rgba(53, 119, 240, 0.8784313725);
  color: #3577f0;
}
.product_detail .about_product .product_price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.product_detail .about_product .product_price .price {
  font-weight: 600;
  display: block;
}
.product_detail .about_product .product_price .price::before {
  content: "RS.";
  display: inline-block;
  margin-right: 5px;
}
.product_detail .about_product .product_price .price:first-child {
  font-size: 64px;
  color: #3577f0;
}
.product_detail .about_product .product_price .percent {
  color: #fdc040;
}
.product_detail .about_product ul,
.product_detail .about_product .product_cart_option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.product_detail .about_product ul input,
.product_detail .about_product .product_cart_option input {
  display: inline-block;
  width: auto;
  border: none;
  color: #253d4e;
}
.product_detail .about_product ul input[type=number]::-webkit-outer-spin-button,
.product_detail .about_product ul input[type=number]::-webkit-inner-spin-button,
.product_detail .about_product .product_cart_option input[type=number]::-webkit-outer-spin-button,
.product_detail .about_product .product_cart_option input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.product_detail .about_product ul .reset input[type=number]::-webkit-outer-spin-button,
.product_detail .about_product ul .reset input[type=number]::-webkit-inner-spin-button,
.product_detail .about_product .product_cart_option .reset input[type=number]::-webkit-outer-spin-button,
.product_detail .about_product .product_cart_option .reset input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: spinner-textfield;
}
.product_detail .about_product .cart_btn,
.product_detail .about_product .detail_btn {
  padding: 10px 15px;
  border: 1px solid #ececec;
  color: #7e7e7e;
  border-radius: 5px;
}
.product_detail .about_product .product_number {
  position: relative;
  z-index: 1;
  border: 2px solid #3577f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
.product_detail .about_product .product_number button {
  display: block;
  cursor: pointer;
  color: #3577f0;
}
.product_detail .about_product .cart_btn {
  background-color: #3577f0;
  color: #fff;
}
.product_detail .about_product .cart_btn::before {
  content: "\f07a";
  font-family: "fontAwesome";
  display: inline-block;
  margin-right: 8px;
  color: #fff;
}
.product_detail .about_product .product_cart_option {
  gap: 10px;
}
.product_detail .about_product .product_key {
  flex-wrap: wrap;
  width: 50%;
  margin-top: 30px;
}
.product_detail .about_product .product_key li {
  flex-basis: 49%;
}
.product_detail .about_product .product_key li span {
  color: #3577f0;
}
.product_detail .about_product .detail_btn:hover {
  color: #fff;
  background-color: #3577f0;
}
.product_detail .tab_box {
  margin-top: 50px;
  padding: 50px;
  border: 1px solid #ececec;
}
.product_detail .tab_box .content_box,
.product_detail .tab_box .key_points {
  margin-bottom: 30px;
}
.product_detail .tab_box p,
.product_detail .tab_box li {
  color: #7e7e7e;
}
.product_detail .tab_box .product_nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
.product_detail .tab_box .product_nav li a {
  padding: 10px 30px;
  border: 1px solid #ececec;
  border-radius: 25px;
  color: #7e7e7e;
  font-weight: 600;
}
.product_detail .tab_box .product_nav li a:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.product_detail .tab_box .product_nav li a.active {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  color: #3577f0;
}
.product_detail .tab_box .key_points {
  max-width: 50%;
}
.product_detail .tab_box .key_points li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  position: relative;
  z-index: 1;
  line-height: 2;
  padding-left: 30px;
}
.product_detail .tab_box .key_points li::before {
  content: "\f111";
  position: absolute;
  font-family: "fontAwesome";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 8px;
}
.product_detail .tab_box .key_points li span {
  flex: 0 0 160px;
}
.product_detail ul.comment_list, .product_detail ul.star, .product_detail ul.comment_info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.product_detail ul.comment_list {
  flex-direction: column;
}
.product_detail ul.comment_list > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 15px;
}
.product_detail ul.comment_list > li.reply {
  margin-left: 30px;
}
.product_detail ul.comment_list > li .comment_profile {
  text-align: center;
}
.product_detail ul.comment_list > li .comment_profile img {
  min-width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_detail ul.comment_list > li .comment_profile .name {
  color: #3577f0;
  font-weight: 700;
}
.product_detail ul.comment_list > li:not(:last-child) {
  margin-bottom: 30px;
}
.product_detail ul.comment_list > li:hover .reply_btn {
  opacity: 1;
  visibility: visible;
}
.product_detail ul.star {
  gap: 0;
}
.product_detail ul.star li {
  font-size: 12px;
  color: #7e7e7e;
}
.product_detail ul.star li.active {
  color: #fdc040;
}
.product_detail ul.comment_info {
  justify-content: space-between;
}
.product_detail .detail_tab_content ul {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .product_detail .tab_box {
    padding: 15px;
  }
  .product_detail .tab_box .product_nav {
    gap: 5px;
  }
  .product_detail .tab_box .product_nav li a {
    font-size: 12px !important;
    padding: 5px 10px;
  }
  .product_detail .about_product .product_cart_option {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .product_detail .row > div {
    margin-bottom: 30px;
  }
  .product_detail .about_product .product_key {
    width: 100%;
  }
  .product_detail .about_product .product_key li {
    flex-basis: 33.33%;
    line-height: 1;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .product_detail .about_product .product_key li span {
    display: block;
  }
}
.page_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 50px;
}
.page_title_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
.page_title_right button {
  padding: 8px 30px;
  border: 1px solid #ececec;
  border-radius: 5px;
  cursor: pointer;
}
.page_title_right button.active {
  background-color: #3577f0;
  color: #fff;
}
.page_title_right .box {
  padding: 8px 30px;
  border: 1px solid #ececec;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.page_title_right .box p {
  margin: 0;
  display: inline-block;
  font-size: 13px;
}
.page_title_right .box::after, .page_title_right .box::before {
  display: inline-block;
  font-family: "fontAwesome";
  color: #7e7e7e;
  font-size: 13px;
}
.page_title_right .box::after {
  content: "\f107";
  margin-left: 5px;
}
.page_title_right .box.show::before {
  content: "\f03a";
}
.page_title_right .box.sort::before {
  content: "\f885";
}
.page_title_right .box_value {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.page_title_right .box_value li {
  font-size: 13px;
  padding: 5px 30px;
  position: relative;
  z-index: 1;
}
.page_title_right .box_value li.selected::before {
  content: "\f00c";
  font-family: "fontAwesome";
  color: #3577f0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.page_title_right .box_value li:hover {
  background-color: #3577f0;
  color: #fff;
}
.page_title_right .box.active .box_value {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .page_banner_content {
    padding: 15px 0;
    flex-wrap: wrap;
  }
}
.page_title {
  padding-top: 30px;
}

.list_item {
  text-align: center;
  margin-bottom: 30px;
}
.list_item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.list_item_image {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.list_item_image img {
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.list_item_cat {
  font-weight: 600;
  color: #7e7e7e;
}
.list_item_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.list_item_info li {
  margin-left: 15px;
  color: #7e7e7e;
}
.list_item_info li::before {
  content: "";
  font-family: "fontAwesome";
  margin-right: 8px;
  color: #3577f0;
}
.list_item_info li.date::before {
  content: "\f073";
}
.list_item_info li.view::before {
  content: "\f06e";
}
.list_item:hover .sm_heading {
  color: #fdc040;
}
.list_item:hover img {
  transform: scale(1.1);
}

.pagination {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}
.pagination li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f2f3f4;
  color: #7e7e7e;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: grid;
  place-items: center;
}
.pagination li.active {
  background-color: #3577f0;
  color: #fff;
}
.pagination li:hover {
  background-color: #3577f0;
  color: #fff;
}

.repair {
  overflow: hidden;
}
.repair_items > li {
  margin-bottom: 30px;
}
.repair_media {
  margin-bottom: 15px;
}

@media (min-width: 767px) {
  .repair_items > li {
    transition: all 0.5s ease-in-out;
  }
  .repair_items > li:not(:last-child) {
    margin-bottom: 50px;
  }
  .repair_items > li:nth-child(odd) .repair_media {
    float: left;
  }
  .repair_items > li:nth-child(odd) .repair_content {
    float: right;
  }
  .repair_items > li:nth-child(even) .repair_media {
    float: right;
  }
  .repair_items > li:nth-child(even) .repair_content {
    float: left;
  }
  .repair_items > li::after {
    content: "";
    display: block;
    clear: both;
  }
  .repair_items > li ul {
    padding-left: 30px;
  }
  .repair_items > li ul.rating {
    padding: 0;
  }
  .repair_items > li ul.rating li {
    list-style: none;
  }
  .repair_items > li ul.steps li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  .repair_items > li ul.steps li:not(:last-child) {
    margin-bottom: 15px;
  }
  .repair_items > li ul.steps li .counter {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3577f0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
  }
  .repair_items > li ul li {
    list-style: disc;
  }
  .repair_items > li .rating_wrapper {
    margin-top: -10px;
  }
  .repair_media {
    width: 49%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
  .repair_media img {
    height: 350px;
  }
  .repair_media iframe {
    width: 100%;
    height: 400px;
  }
  .repair_content {
    width: 48%;
  }
  .repair_content h1 {
    text-transform: uppercase;
  }
}
.service_02 {
  background-color: #f2f3f4;
}
.service_02_item {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
}
.service_02_item .image {
  position: relative;
  z-index: 1;
  height: 180px;
  margin-bottom: 40px;
}
.service_02_item .image .icon {
  background-color: orangered;
  color: #fff;
  font-size: 32px;
  width: 80px;
  height: 80px;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: -30px;
  transition: all 0.5s ease-in-out;
}
.service_02_item .image::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 60%;
  height: 30px;
  background-color: orangered;
  transform: skew(16deg);
  transition: all 0.5s ease-in-out;
}
.service_02_item_content .sm_heading {
  line-height: 1;
  margin-bottom: 10px;
}
.service_02_item_content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.service_02_item:hover .image .icon {
  background-color: #3577f0;
}
.service_02_item:hover .image::before {
  width: 90%;
  background-color: #3577f0;
}

.repair_detail_content {
  height: 550px;
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  transition: height 0.6s ease-in-out;
}
.repair_detail_content::after {
  content: "Show More";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #3577f0;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}
.repair_detail_content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 25%;
  text-align: center;
  background: linear-gradient(to top, #fff, transparent);
}
.repair_detail_content.active {
  height: auto;
  padding-bottom: 50px;
}
.repair_detail_content.active::after {
  content: "Show Less";
}
.repair_detail_content.active::before {
  display: none;
}
.repair_detail_content .content_box {
  margin-bottom: 20px;
}
.repair_detail_content .content_box ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.repair_detail_content .content_box ul li {
  flex-basis: 49%;
  margin-bottom: 10px;
}
.repair_detail_content .content_box ul li::before {
  content: "\f058";
  font-family: "fontAwesome";
  display: inline-block;
  margin-right: 10px;
  color: orangered;
}
.repair_detail_content .featured_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.repair_detail_content .featured_images img {
  max-width: 50%;
  width: 49%;
  height: 250px;
}
.repair_detail .process {
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 15px;
}
.repair_detail .process .icon {
  color: #3577f0;
  display: inline-block;
  padding: 15px;
  font-size: 20px;
}
.repair_detail_tab {
  background-color: #f2f3f4;
}
.repair_detail_tab li a {
  padding: 10px 20px;
  display: block;
  color: #3577f0;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
.repair_detail_tab li a:hover {
  background-color: orangered;
  color: #fff;
}
.repair_detail_tab li.active a {
  background-color: orangered;
  color: #fff;
}

.aside_box {
  border: 1px solid #ececec;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}
.aside_box ul {
  flex-direction: column;
  align-items: flex-start;
}
.aside_box ul li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.aside_box.category_box li {
  border: 1px solid #ececec;
}
.aside_box.category_box li .icon {
  width: 30px;
  height: 30px;
}
.aside_box.category_box li .number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(53, 119, 240, 0.8784313725);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.aside_box.category_box li:hover {
  border-color: #3577f0;
}
.aside_box.category_box li:hover .text span {
  color: #3577f0;
}
.aside_box.trending_box {
  position: sticky;
  top: 0;
}
.aside_box.trending_box .sm_heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.aside_box.trending_box .rating {
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
}
.aside_box.trending_box .rating li {
  padding: 0;
  margin: 0;
  width: auto;
}
.aside_box.trending_box .image {
  min-width: 100px;
  height: 100p;
}
.aside_box.trending_box .about_product span {
  font-weight: 800;
  color: #3577f0;
}
.aside_box.trending_box .about_product span::before {
  content: "Rs.";
  display: inline-block;
  margin-right: 5px;
}
.aside_box.trending_box .about_product a:hover {
  color: #fdc040;
}
.aside_box.trending_box > ul > li:not(:last-child) {
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
}
.aside_title {
  font-size: 24px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.aside_title::after {
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  background-color: #3577f0;
  position: absolute;
  top: 100%;
  left: 0;
}

.brand__list {
  padding: 50px 0 80px;
}
.brand__list__item {
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  height: 270px;
}
.brand__list__item .image {
  width: 100%;
  height: 150px;
}
.brand__list__item .image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.brand__list__item:hover {
  border-color: #3577f0;
}
.brand__list__item:hover .sm_heading {
  color: #3577f0;
}
.brand__list__text {
  text-align: center;
}
.brand__list__text span {
  display: block;
  color: #3577f0;
  text-transform: uppercase;
}
.brand__list__text a {
  font-weight: bold;
}

@media (max-width: 600) {
  .brand__list__item {
    height: auto;
  }
}
.repair__layout__2 {
  background-color: #f7f7f7;
}
.repair__layout__2__item {
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 30px;
  display: block;
}
.repair__layout__2__item img {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
}
.repair__layout__2__item i {
  display: block;
  font-size: 60px;
  margin-bottom: 15px;
}
.repair__layout__2__item:hover span {
  color: #3577f0;
}

.pt-80 {
  padding-top: 80px;
}

.testimonial {
  background-color: #f7f7f7;
  padding: 50px 0;
}
.testimonial .section_title {
  margin-bottom: 0;
}
.testimonial .testi_slider {
  overflow: hidden;
}
.testimonial .testi_slider .testi_item {
  padding: 50px;
  gap: 15px;
  border-radius: 5px;
  cursor: pointer;
}
.testimonial .testi_slider .testi_item_content {
  border: 1px solid #f7f7f7;
  padding: 30px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.testimonial .testi_slider .testi_item_content::before {
  position: absolute;
  top: 100%;
  left: 25%;
  content: "";
  display: inline-block;
  border-top: 25px solid #fff;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.testimonial .testi_slider .testi_item_content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.testimonial .testi_slider .testi_item .profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial .testi_slider .testi_item .client {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 30px;
}
.testimonial .testi_slider .testi_item .client h5 {
  margin-bottom: 0;
}
.testimonial .testi_slider .testi_item .client span {
  display: block;
}

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

.name h1.md_heading,
.name h5 {
  color: #3577f0;
  padding-left: 40px;
  position: relative;
}
.name h1.md_heading::after,
.name h5::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #3577f0;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 0;
}
.stars li {
  color: orangered;
}

.slick-dots li button {
  border: 1px solid #b6ccf7;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background-color: #3577f0;
}

@media screen and (max-width: 992px) {
  .testimonial .testi_slider .testi_item {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .testimonial .testi_slider .testi_item_content .message p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow-y: scroll;
  }
  .testimonial .testi_slider .testi_item_content .message p::-webkit-scrollbar {
    width: 3px;
  }
  .testimonial .testi_slider .testi_item_content .message p::-webkit-scrollbar-thumb {
    background-color: orangered;
    border-radius: 5px;
  }
  .testimonial .testi_slider .testi_item_content .message p::-webkit-scrollbar-track {
    background-color: #3577f0;
  }
}
.category__list {
  padding: 80px 0;
  background-color: #f7f7f7;
}
.category__list .section_title {
  justify-content: center;
  gap: 0;
  text-align: center;
  margin-bottom: 30px;
}
.category__list__item {
  background-color: #fff;
  text-align: center;
  border-radius: 250px 250px 0 0;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  margin-bottom: 30px;
  height: 285px;
  position: relative;
  z-index: 1;
  min-width: 200px;
  max-width: 200px;
  margin: 0 auto;
}
.category__list__item.blue .icon {
  background-color: #3577f0;
}
.category__list__item.red .icon {
  background-color: red;
}
.category__list__item.orange .icon {
  background-color: orangered;
}
.category__list__item.darkgreen .icon {
  background-color: darkslategrey;
}
.category__list__item.purple .icon {
  background-color: purple;
}
.category__list__item.green .icon {
  background-color: darkgoldenrod;
}
.category__list__item .icon {
  width: 200px;
  min-height: 200px;
  border-radius: 50% 50% 0 50%;
  display: grid;
  place-items: center;
  border-bottom: 15px solid #f7f7f7;
}
.category__list__item .icon i {
  font-size: 60px;
  color: #fff;
}
.category__list__item .text {
  padding: 15px 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 991px) {
  .category__list__item {
    margin-bottom: 30px;
  }
  .category__layout__2--item {
    margin-bottom: 30px;
  }
}
.category__layout__2 {
  background-color: #3577f0;
  padding: 80px 0;
  color: #fff;
  margin-bottom: 80px;
  text-align: center;
}
.category__layout__2 .section_title {
  justify-content: center;
  gap: 0;
  text-align: center;
  margin-bottom: 30px;
}
.category__layout__2 .section_title h1 {
  color: darkblue;
}
.category__layout__2 .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: relative;
  z-index: 1;
}
.category__layout__2 .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.category__layout__2 .icon i {
  font-size: 30px;
  position: absolute;
  top: 30px;
  left: 53%;
  transform: translateX(-50%);
}
.category__layout__2--item {
  position: relative;
}
.category__layout__2--item .text {
  margin-top: 15px;
}
.category__layout__2--item .text h5 {
  color: #fff;
}
.category__layout__2--item:hover h5 {
  color: orangered;
}/*# sourceMappingURL=styles.css.map */