@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --theme-text-color: #1e1e1e;
  --theme-color: #be2c3f;
  --theme-color-second: #000;
  --theme-bg-color: #000;
  --theme-heading-font: "Poppins", sans-serif;
  --theme-default-font: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: var(--theme-text-color);
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--theme-heading-font);
  color: inherit;
}

p {
  margin: 0;
  line-height: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: var(--theme-default-font);
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
button{
    outline:none;
}
.row-below {
  margin-top: 30px;
}

section {
  padding: 70px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

/* ........Scroll top......... */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.m-backtotop {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: fixed;
	bottom: -50px;
	left: 20px;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 0px;
	text-align: center;
	border: 2px solid #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	opacity: 0;
	overflow: hidden;
	color: #000;
	border-radius: 50%;
	font-size: 24px;
  z-index: 111;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop > div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  /* transform: scale(1.1); */
  bottom: 20px;
  cursor: pointer;
  color: #fff;
  background: var(--theme-color);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

/* .m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 1;
} */

/* .m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
} */
/* ........Scroll top......... */

/* ---------Moblie Call Action------------- */
.mobile-fixed-button {
  display: none;
}
/* ---------Moblie Call Action------------- */

/* ..........Button.......... */
.btn1 {
	background: var(--theme-color);
	border: 1px solid var(--theme-color);
	padding: 10px 0px;
	display: inline-block;
	color: #fff;
	width: 195px;
	font-weight: 400;
	text-align: center;
	font-family: var(--theme-default-font);
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	border-radius: 50px;
}
.btn1:hover {
  background: initial;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.heading h2 {
	font-size: 36px;
	font-weight: 600;
	font-family: var(--theme-heading-font);
	margin-bottom: 13px;
	text-transform: uppercase;
}
.heading h3 {
  font-size: 28px;
  font-weight: 400;
  font-family: var(--theme-heading-font);
  margin-bottom: 15px;
}

/* ---------Nav ber------------- */
.small {
  display: none;
}

.top_bar {
	border-bottom: 1px solid #1e1e1e21;
}
.top_bar {
  font-size: 14px;
}
.top_bar a{
  color:var(--theme-color);
}
.logo img{
  width: 100px;
}
.header_cart_det a.cart_btn {
	font-size: 22px;
	line-height: 42px;
	color: #fff;
	background: #bd141c;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.header_cart_det ul {
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 32px;
  margin-bottom: 0;
}
.header_cart_det .shopping-cart {
	color: #737373;
	font-size: 40px;
	position: relative;
	display: flex;
	align-items: center;
}
.header_cart_det .shopping-cart span {
	background-color: var(--theme-color);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: -6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_cart_det .shopping-cart .la-shopping-bag {
	font-size: 33px;
}

.header_search form {
	display: flex;
	background-color: #ffffff;
	border: none;
	border: 1px solid #dbdbdb;
	border-radius: 50px;
	overflow: hidden;
}

.header_search  form input{
  width: 100%;
  padding: 10px 25px;
  border: none;
  border: none;
  outline: none;
}

.header_search form button {
	background: #53535324;
	padding: 10px 29px;
	border: none;
	outline: none;
	color: #000;
	font-size: 19px;
}
.main_header ul{
  margin-bottom: 0;
}
.main_header ul li {
	display: inline-block;
	margin: 8px 40px;
}
.main_header ul li a {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}

.main_header{
  background-color:#be2c3f;
}
.nav_bar_midle {
	background: #fcfcfc;
}
.hd_btn i {
	font-size: 26px;
}
.hd_btn {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.hd_btn:hover{
  color: #fff;
}
.container-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.categories_con .top_img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #f7f7f7;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	object-fit: cover;
	overflow: hidden;
	margin: 0 auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.categories_con .top_img img{
  width: 100%;
}
.categories_con .btom{
 margin-top: 6px;
}
.categories_con {
  text-align: center;
}
.categories_sec{
  padding: 10px 0;
}
.categories_con .btom p {
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 0;
	color: #848484;
	font-weight: 600;
	line-height: 17px;
}
/* .home_slider .pading{
  padding: 200px 0;
} */
/* .banner_slider{
  background: url('../image/banner-1.jpg') no-repeat center;
  background-size: cover;
}
.banner_slider1{
  background: url('../image/banner-2.jpg') no-repeat center;
  background-size: cover;
}
.banner_slider2{
  background: url('../image/banner-2.jpg') no-repeat center;
  background-size: cover;
} */
.product_items {
	width: 100%;
  height: 100%;
	border: 1px solid #0000001a;
	border-radius: 8px;
	overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-bottom: 5px;
  position: relative;
}
.product_items .bt_cart_de{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.product_items .product_con{
  padding: 15px;
}
.product_items .product_con h5 {
	font-size: 15px;
	font-weight: 500;
	color: #0d0d0d;
	margin-bottom: 10px;
}
.product_items .product_con h5 a {
	color: #0d0d0d;
}
.product_items .ratting i {
	color: #be2c3f;
}
.product_items  .ratting {
	margin-bottom: 5px;
}
.product_items p span{
  font-weight: 600;
}
.product_items p {
	margin-bottom: 0px;
  font-size: 14px;
}
.product_items .price-item {
	color: #be2c3f;
	font-weight: 600;
	font-size: 15px !important;
}
.product_items  .prize_past {
	color: #7e7e7e;
	font-weight: 600;
}
.product_items  .model_name span {
	color: #383838;
}
.product_items  .ratting span {
	font-size: 13px;
	font-weight: 700;
	color: #393939;
}
.add_cart{
  background-color: var(--theme-color);
  color: #fff;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.6s;
}
.add_cart:hover{
  background-color: #0d0d0d;
  color: #fff;
}
.product_items  .product_img img{
  transition: all 0.6s ease-in-out;
}
.product_items  .product_img{
  overflow: hidden;
}
.product_items  .product_img:hover img{
  transform: scale(1.1);
}


/* client-testimonial */
.client-testimonial ul{
  display: flex;
  color: #fe8a02;
  gap: 2px;
  font-size: 19px;
}

.client-testimonial .hd_info p{
  display: flex;
  align-items: center;
}

.client-testimonial .hd_info p img{
  width: 15px!important;
}


.client-testimonial .review-box {
  margin: 23px 9px;
  padding: 35px 25px;
  box-shadow: 2px 6px 19px -4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.client-testimonial .owl-nav {
  font-size: 159px;
  font-weight: lighter;
}

.client-testimonial .owl-nav .owl-dots{
  display: none;
}

.client-testimonial button.owl-prev {
  position: absolute;
  top: 15%;
  left: -85px;
}

.client-testimonial button.owl-next {
  position: absolute;
  top: 15%;
  right:  -85px;
}


.hd_info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	/* color: #fff; */
}
.home_sec_offer .offer_img_con {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
}

.home_sec_offer .offer_img_con .overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 30px;
  width: 100%;
  height: 100%;
}
.home_sec_offer .offer_img_con .overlay h4{
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}
.home_sec_offer .offer_img_con img{
  transition: all 0.6s ease-in-out;
}
.home_sec_offer .offer_img_con:hover img{
transform: scale(1.1);
}

#text_al{
  text-align: start;
}

.home_sec_offer .btn1 {
	padding: 8px 0px;
	width: 175px;
}


.support-query .card-box {
  background-color: #fff;
  padding: 15px 16px;
  border-radius: 0;
  width: 100%;
  position: relative;
  color: #bd141c;
}

.support-query .card-box {
  display: flex;
  gap: 13px;
  align-items: center;
}

.support-query .card-box p {
  margin: 0;
}


.support-query .card-box .content-box::before {
  content: '';
  height: 100%;
  width: 1px;
  background-color: #ddd;
  display: block;
  position: absolute;
  top: 0;
  right: -13px;
}

.support-query .no-before .content-box::before {
  right: -13px;
  display: none!important;
}

.support-query .card-box-2 {
  background-color: #fff;
  padding: 15px 16px;
  border-radius: 0;
  width: 100%;
  position: relative;
  color: #bd141c;
}

.support-query .card-box-2 {
  display: flex;
  gap: 10px;
  align-items: center;
}

.support-query .card-box-2 p {
  margin: 0;
}

.support-query .card-box-2 .img-box {
	width: 127px !important;
}
.ps-promotions .ps-image-list {
	text-align: center;
}
.support-query h5 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px !important;
}
.support-query .card-box {
	background-color: #fff;
	padding: 15px 16px;
	border-radius: 0;
	width: 100%;
	position: relative;
	color: #bd141c;
}

.support-query h5 {
	font-weight: 600;
	font-size: 17px;
	margin-bottom: 5px !important;
	min-height: 25px !important;
}
.content-box h5 {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	min-height: 53px;
	color: #706d73;
}
.support-query .card-box .img-box {
	width: 135px;
}
.support-query .card-box p {
	margin: 0;
  font-size: 14px;
  color: #383838;
}
.support-query .card-box-2 p{
  margin: 0;
  font-size: 14px;
  color: #383838;
}
.support-query {
	background-color: #dadada;
}

/* footer */

.footer {
  padding: 70px 0 0;
  background-color: #000;
}

.footer .hd_info {
	margin: 25px 0;
}
/* .footer p a {
  color: #fff;
} */
.pay_ft {
	text-align: right;
}
.ft_con_p {
	margin-right: 63px;
}
.footer h5 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 19px;
	color: #d6d6d6;
}
.copy-right {
	background: #000;
	padding: 20px 0;
	color: #fff;
}
.footer .socail a {
	width: 37px;
	height: 37px;
	background-color: var(--theme-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	font-weight: bolder;
	font-size: 20px;
}
.footer .menu-list li a {
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
		display: flex;
    gap: 6px;
}
.ft_link_ul li a {
	display: flex;
}
.support-query .card-box .img-box{
  width: 135px;
}
.support-query .card-box-2 .img-box{
  width: 135px;
}



.footer .menu-list li {
  margin-bottom: 12px;
}

.footer .news-letter p {
  font-size: 14px;
  line-height: normal;
  line-height: 1.8;
}

.footer .news-letter form {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 10px 0;
}
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
}

.footer .news-letter form input {
  width: 100%;
  border: none;
  font-size: 14px;
  padding: 5px 9px;
  outline: none;
}

.footer .news-letter form input[type="submit"] {
  width: 206px;
  background-color: #fff;
  border-left: 1px solid #000;
}
.footer p{
  font-size: 16px;
  color: #fff;
}
.footer .ft_logo img{
  width: 120px;
  margin-bottom: 15px;
}
.footer p a {
	font-weight: 300;
	font-size: 14px;
  color: #fff;
}
.footer p a span {
	color: #fff;
	font-weight: 600;
}
.footer .menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ft_con_p p {
	font-size: 14px;
}
.ft_link_ul li a {
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 400;
}
.ft_link_ul li {
	margin-bottom: 9px;
}

.footer .ft_logo img {
	width: 120px;
	margin-bottom: 15px;
	filter: brightness(0) invert(1);
}
.ft_link_ul li a {
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 400;
	color: #ececec;
	gap: 5px;
}
.ft_link_ul li a i{
  color: var(--theme-color);
}
.footer .menu-list li a i{
  color: var(--theme-color);
}
.copy-right {
	background: #000;
	padding: 20px 0;
	color: #fff;
	border-top: 1px solid #3d3d3d;
}

.why_conten .top_img {
	margin-bottom: 12px;
}
.why_conten .contents h5 {
	margin-bottom: 10px;
}
.why_conten .contents p{
  margin-bottom: 0;
}
.why_conten.bg1 {
	background: #d3d1d1;
}
.why_us_do{
  padding: 15px 0;
}
.why_conten{
  padding: 20px;
  width: 100%;
  height: 100%;
}
.review-box p b {
	color: #505050;
}
.news-letter .ft-form {
	display: flex;
	background: #ffffff1f;
	border: 1px solid #fff;
	border-radius: 50px;
	overflow: hidden;
}
.news-letter .ft-form input {
  width: 100%;
  background: #fff;
  color: #000;
  outline: none;
  font-weight: 600;
  border: none;
  padding: 20px;
}

.news-letter .ft-form button {
	width: 200px;
	background: #333e48;
	color: #fff;
	outline: none;
	font-weight: 600;
	border: none;
	padding: 13px;
	border-left: 1px solid #fff;
}
.newsletter_sec{
  background-color: var(--theme-color);
  color: #fff;
}
.newsletter_sec{
  padding: 50px 0;
}
/* window modal */
#myModalwindowload .modal-body h1 {
  font-weight: 900;
  font-size: 2.3em; 
  text-transform: uppercase;
}
#myModalwindowload .modal-body a.pre-order-btn {
  color: #000;
  background-color: gold;
  border-radius: 1em;
  padding: 1em;
  display: block;
  margin: 2em auto;
  width: 50%;
  font-size: 1.25em;
  font-weight: 6600;
}
#myModalwindowload .modal-body a.pre-order-btn:hover {
  background-color: #000;
  text-decoration: none;
  color: gold;
}

#myModalwindowload .modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	border-bottom: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

#myModalwindowload.modal {
	position: fixed;
	top: 20%;
	left: 0;
	z-index: 1060;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
}
#myModalwindowload .heading h4 {
	font-size: 18px;
	font-weight: 400;
	text-align: left;
}
#myModalwindowload .heading {
	margin-top: 5px;
}
#myModalwindowload .modal-header button {
	background: none;
	border: none;
	outline: none;
	font-size: 19px;
	color: #fff;
	position: absolute;
	right: 8px;
	top: 8px;
	background: #a80600;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	opacity: 1;
}
.fixed_call {
	background-color: var(--theme-color);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 25px;
	position: fixed;
	right: 20px;
	bottom: 15px;
	z-index: 99;
  padding: 2px;
}

.fixed_call img {
	width: 100%;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-main a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-main {
  position: relative;
  display: inline-block;
}

@keyframes waves {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 130, 130, 0.3);
  opacity: 0;
  border-radius: 50%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 1s;
}

.wave-3 {
  animation-delay: 2s;
}

/* Make sure the image scales properly */

/* .....inner-product..... */
.single_product .content-right .sub_title {
  text-transform: uppercase;
  font-size: 17px;
}

.single_product .content-right .heading h2 {
  font-size: 37px;
}

.single_product .content-right .pize span {
  font-size: 30px;
  color: #1a1a1a;
  font-weight: 600;
}

.single_product .content-right .pize {
  margin-top: 15px;
}

.single_product .content-right .color-type {
  margin-top: 15px;
}

.single_product .content-right .color-type span {
  color: #171717;
  font-size: 18px;
}

.btn-b {
  background: #000000;
  color: #fff;
  padding: 8px 22px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 50px;
}

.btn-w {
  outline: none;
  border: none;
  background: initial;
  border: 1px solid #000000;
  color: #000000;
  cursor: pointer;
  padding: 8px 22px;
  font-size: 16px;
  display: inline-block;
  border-radius: 50px;
}

button:focus {
  outline: initial !important;

}

.single_product .content-right .color-type {
  margin-top: 34px;
}

.single_product .content-right .color-type span {
  margin-right: 15px;
}

.single_product .content-right .color-type a {
  margin-right: 15px;
}

.single_product .content-right .size-type {
  margin-top: 34px;
}

.single_product .content-right .size-type ul li {
  display: inline-block;
  margin-top: 15px;
}

.quantity-btn {
  margin-top: 15px;
}

.quantity-btn .increment {
  background: #000000;
  color: #fff;
  display: inline-block;
  padding: 10px 22px;
  outline: none;
  border: none;

  border-radius: 5px;
  cursor: pointer;
}

.quantity-btn input {
  padding: 8px;
  width: 100px;
  text-align: center;
}

.single_product .content-right .quantity-sec {
  margin-top: 34px;
}

.btn-cart {
	background: #6f1115;
	color: #fff;
	display: block;
	padding: 15px;
	outline: none;
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
	border-radius: 10px;
  transition: all 0.6s;
}
.btn-cart:hover{
  background-color: #000;
  color: #fff;
}

.btn-buy {
	background: #bd141c;
	color: #fff;
	display: block;
	padding: 15px;
	outline: none;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 10px;
}
.btn-buy:hover{
  background-color: #000;
  color: #fff;
}
.payment_btn {
  padding: 12px 0;

}

.payment_btn a {
  color: #111111;
  font-size: 20px;
  font-weight: 500;
}

.btn-sec {
  margin-top: 34px;
}

.single_product .content-bottom {
  margin-top: 25px;
}

.single_product .inner-product-img {
  margin: 15px 0;
}

.single_product .content-right .pize p {
  color: #8a8a8a;
  font-size: 19px;
  font-family: 'Inter', sans-serif;
  text-decoration: line-through;
}

.single_product .content-bottom ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.single_product .content-bottom ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #1c345d;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.marina-search .content {
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 45px #b3b3b354;
  border-radius: 10px;
  overflow: hidden;
}

.marina-search .content .botom {
  padding: 15px 10px;
}

.marina-search .content .botom h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  border: 1px solid #2e2e2e;
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #000 !important;
}

.single_product .content-right .quantity-sec span {
  font-size: 20px;
  font-weight: 400;
}



.qty-input {
  color: #000;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: bold;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
}

.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}

.qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 4.5rem;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.qty-input .qty-count--minus {
  border-right: 1px solid #e2e2e2;
}

.qty-input .qty-count--add {
  border-left: 1px solid #e2e2e2;
}

.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
  background: #ccc;
}



.qty-input {
  border: 1px solid #a7a7a7;
  width: 145px;
  padding: 7px 0;
  margin-top: 8px;
  border-radius: 5px;
}

.gallery-parent {
  height: 100%;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  border: 1px solid #ebebeb;
}

.single_product .content-right .heading h2 {
  font-size: 22px;
  font-weight: 600;
  color: #4c4c4c;
}

.rating i {
  color: #bd141c;
  font-size: 19px;
}

.rating .jdgm-prev-badge__text {
  font-size: 19px;
}

.single_product .group_item .sold_product svg {
  width: 14px;
}

.single_product .group_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.single_product .group_item .sold_product {
  color: #c10011;
  font-weight: 500;
  text-transform: lowercase;
  font-size: 16px;
}

.single_product .group_item .sku_product {
  font-size: 17px;
}

.product-price .price-item {
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.16667em;
  color: #141414;
}

.product-price .price-item {
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #474747;
}

.product-price.price--on-sale .price-item--sale {
  color: #be2c3f;
}

.product-price.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: #999;
}

.single_product .price_sec {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.about_product_det h4 {
  color: #565656;
  font-weight: 600;
  margin-bottom: 10px;
}
.about_product_det p span {
	font-weight: 600;
}
.single_product  .btn-sec {
	margin-top: 34px;
	display: flex;
	gap: 15px;
}
/*#swiper-slide-img img{*/
/*    width:100%;*/
/*}*/
.product-single-tabs .nav-item:not(:last-child) {
	 margin-right: 0rem; 
}
.product-single-tabs .nav.nav-tabs .nav-link.active, .product-single-tabs .nav.nav-tabs .nav-link:hover {
	border-bottom-color: #bd141c;
	background: #bd141c;
	color: #fff !important;
}
.img_rspon{
  width: 100%;
}
.border_gap {
	width: 100%;
	background-color: #b2b2b2;
	height: 1px;
	margin: 15px 0;
}
.inner_por_dec .btom{
  padding: 12px 10px;
  text-align: center;
}
.inner_por_dec h4 {
	font-size: 21px;
	font-weight: 500;
	color: #131313;
	margin-bottom: 5px;
}
.inner_por_dec {
	/*margin-bottom: 12px;*/
}
 
/* ....faq..... */
.accordion__item {
  padding: 7px 0px;
  border-bottom: 1px solid #a1a1a1;
}
.accordion__body {
  display: none;
}
.accordion__body p {
	font-size: 14px;
	line-height: 26px;
}
.accordion__body ul li {
  font-size: 16px;
  margin-bottom: 12px;
}
.accordion__body ul {
  margin-top: 25px;
}
.accordion__title {
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 6px;
	position: relative;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 60px 0 0px;
}
.accordion__title::after {
	content: "";
	width: 30px;
	height: 42px;
	position: absolute;
	right: 0;
  top: 12px;
	background: url(../image/up-arrow.png) no-repeat;
	background-size: 15px;
}

.accordion__title.active::after {
	transform: rotate(-180deg);
	top: -25px;
	right: 1px;
}
.faq_list h4 {
  background: #024fff;
  color: #000;
  padding: 17px 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.faq_list {
  margin-bottom: 50px;
}
.accordion__item h3 {
  font-size: 20px;
  color: #3c3c3c;
  font-weight: 700;
  margin-top: 30px;
}
.accordion__body h5 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}
.faq_sec{
  background:linear-gradient(rgba(33,35,49,.9),rgba(33,35,49,.9)), url('../image/faq-banner.jpg') no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}
.faq_sec .heading h2 {
	color: #fff;
	margin-bottom: 35px;
}
.accordion__item {
	padding: 7px 14px;
	border: 1px solid #a1a1a1;
	margin-bottom: 16px;
}
.accordion__title {
	font-size: 16px;
	cursor: pointer;
	margin-bottom: 6px;
	position: relative;
	color: #3b3838;
	font-weight: 400;
	padding: 7px 44px 0px 0px;
}
.accordion__title::after {
	content: "";
	width: 17px;
	height: 42px;
	position: absolute;
	right: 0;
	top: 15px;
	background: url(../img/products/up-arrow.png) no-repeat;
	background-size: 15px;
}



.product-single-tabs .rating {
  font-size: 16px;
  color: #333;
}

.product-single-tabs .stars i {
  color: red;
  font-size: 24px;
  margin-right: 2px;
}

.product-single-tabs .score {
  margin-left: 5px;
  font-weight: bold;
}

.product-single-tabs .reviews {
  margin-top: 5px;
  font-size: 14px;
}
.product-single-tabs .rating-distribution {
  width: 300px;
}

.product-single-tabs .rating-row {
	display: flex;
	align-items: center;
	margin-bottom: 0px;
}

.product-single-tabs .stars i {
  color: red;
  font-size: 18px;
  margin-right: 2px;
}

.product-single-tabs .bar {
  flex-grow: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 10px;
}

.product-single-tabs .fill {
  height: 100%;
  background-color: red;
}

.product-single-tabs .count {
  min-width: 20px;
  text-align: right;
}

.product-single-tabs .review {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  margin: 20px auto;
}

.product-single-tabs .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-single-tabs .profile {
  display: flex;
  align-items: center;
}

.product-single-tabs .profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.product-single-tabs .user-info {
  display: flex;
  flex-direction: column;
}

.product-single-tabs .username {
  font-weight: bold;
}

.product-single-tabs .verified {
  font-size: 12px;
  color: green;
  margin-top: 2px;
}

.product-single-tabs .country-flag {
  width: 20px;
  height: 15px;
  margin-left: 5px;
}

.product-single-tabs .rating .stars {
  color: gold;
  font-size: 20px;
}

.product-single-tabs .review-body {
  margin-top: 10px;
}

.product-single-tabs .review-text {
  margin: 0;
}

.product-single-tabs .review-footer {
	display: flex;
	justify-content: flex-start;
	margin-top: 10px;
	gap: 15px;
}

.product-single-tabs .profile-pic {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	margin-right: 10px;
}
.contact-page-section .address-text a {
	color: #031a3d;
}
.ps-block--header-hotline p a {
	font-weight: bold;
}
.ft_link_ul li {
	margin-bottom: 9px;
}
.ft_link_ul li a {
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 400;
}
/*.product_sec .btom_content p:nth-child(2){*/
/*  display: none;*/
/*}*/
.social_icon2.add-to-wishlist.wishlist_add_inner {
	position: absolute;
	right: 13px;
	top: 10px;
	z-index: 1221;
	cursor: pointer;
}
.product_sec .btom_content2 {
	display: none;
}
/*    div#swiper-slide-img img {*/
/*    width: 100%;*/
/*}*/
.ps-btn, button.ps-btn {
	display: inline-block;
	padding: 15px 45px;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: #000;
	border: none;
	font-weight: 600;
	border-radius: 4px;
	background-color: #bd141c;
	transition: all .4s ease;
	cursor: pointer;
	color: #fff !important;
}
.product_sec .product_social_icon {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	top: 9px;
	left: 9px;
}

@media screen and (max-width: 992px) {
.support-query .card-box .content-box::before {
	content: '';
	height: 100%;
	width: 1px;
	background-color: #565458;
	display: block;
	position: absolute;
	top: 0;
	right: -13px;
}
.single_product .content-right .heading h2 {
	font-size: 17px;
	font-weight: 500;
	color: #4c4c4c;
}}

.ps-breadcrumb {
  padding: 20px 0;
  background-color: #f1f1f1;
}

.ps-breadcrumb .breadcrumb {
  display: inline-block;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.ps-breadcrumb .breadcrumb li {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.ps-breadcrumb .breadcrumb li:before {
  content: "/";
  margin: 0 5px;
}

.ps-breadcrumb .breadcrumb li:first-child {
  padding-left: 0;
}

.ps-breadcrumb .breadcrumb li:first-child:before {
  display: none;
}

.ps-breadcrumb .breadcrumb a {
  line-height: 20px;
  color: #09c;
}

.ps-breadcrumb .breadcrumb a:hover {
  color: #bd141c;
}

.ps-breadcrumb .breadcrumb a i {
  margin-right: 5px;
}

@media (max-width: 991px) {
  .ps-breadcrumb {
    position: relative;
    padding: 10px 0;
  }

  .ps-breadcrumb .breadcrumb li {
    font-size: 12px;
  }

  .ps-breadcrumb .breadcrumb a {
    font-size: 12px;
  }
}

.ps-breadcrumb--2 {
  text-align: center;
}

.ps-breadcrumb--2 .breadcrumb {
  display: inline-block;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.ps-breadcrumb--2 .breadcrumb li {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #bd141c;
}

.ps-breadcrumb--2 .breadcrumb li:before {
  content: "/";
  margin: 0 5px;
}

.ps-breadcrumb--2 .breadcrumb li:first-child {
  padding-left: 0;
}

.ps-breadcrumb--2 .breadcrumb li:first-child:before {
  display: none;
}

.ps-breadcrumb--2 .breadcrumb a {
  line-height: 20px;
  color: #000;
}

.ps-breadcrumb--2 .breadcrumb a:hover {
  color: #bd141c;
}

.ps-breadcrumb--2 .breadcrumb a i {
  margin-right: 5px;
}

.ps-block--download-app {
  background-color: #f8f8f8;
  padding: 80px 0 0;
}

.ps-block--download-app h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 300;
  margin-top: 0;
}

.ps-block--download-app p {
  margin-bottom: 30px;
  font-size: 16px;
  max-width: 480px;
}

.ps-block--download-app form {
  margin-bottom: 30px;
  max-width: 480px;
}

.ps-block--download-app form input {
  background-color: #ffffff;
}

.ps-block--download-app .download-link a {
  margin-right: 18px;
}

.ps-block--download-app .download-link a:last-child {
  margin-right: 0;
}
.hidden
{
    display:none;
}
/*Cart popup*/
.cart-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 355px;
    background-color: #fff;
    /*box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;*/
    z-index: 99999;
    border-radius: 4px;
    padding: 5px;
    border: 1px solid #e3e3e3;
}
.nimki {
    content: '';
    position: absolute;
    top: -12px;
    right: 42px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-top:1px solid #e1e1e1;
    border-left:1px solid #e1e1e1;
    transform: rotate(45deg);
}
.cart-single-item img
{
    width:80px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin:10px;
}
.cart-item-list
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-des span {
	color: #544444;
	font-size: 14px;
}
.cart-single-item
{
        display: flex;
    align-items: center;
    gap: 3px;
}
.cart-des
{
       width: 100%;
    line-height: 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 23px;
}
.cros-btn i
{
    background-color: #e9e5e5;
    padding: 10px;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    color: #4d4b4b;
}
.m-hgt {
    height: 265px;
    overflow-y: scroll;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.form-group--number {
    display: flex;
    gap: 15px;
}
.form-group--number button
{
        padding: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    font-size: 20px;
    border: none;
    background-color: #dbcfd0;
}
/* Hide scrollbar in WebKit browsers (Chrome, Safari) */
.m-hgt::-webkit-scrollbar {
    width: 0;  /* Hide scrollbar */
}

.m-hgt:hover {
    scrollbar-width: thin;  /* Show thin scrollbar in Firefox on hover */
}




.cart-des span
{
    color:#544444;
}
.cart-des b
{
    color: #615757;
}
.cart-final-price
{
    width: 100%;
    background-color: #fbf6f6;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    justify-content: center;
}
.cart-price p
{
    display: flex;
    justify-content: space-between;
    font-size: 19px;
    font-weight: 600;
}
.cart-btn
{
    display: flex;
    justify-content: space-between;
}
.cart-btn button
{
    background-color: #be2c3f;
    color: #fff;
    border-color: #be2c3f8a;
    padding: 5px 17px;
}
.cart-btn button:hover
{
    background-color:#000;
}

/*For Breadcumb*/
        .breadcrumb-wrapper {
  padding: 20px 0; }
  .breadcrumb-wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    display: block;
    color: #484b51;
    font-size: 12px;
    font-weight: 400;
    border-radius: 0;
    text-transform: none;
    background-color: transparent; 
  }
  
    .breadcrumb-wrapper a{
        color: #484b51;
    }
    
    .breadcrumb-wrapper .breadcrumb .item {
      padding: 5px 0;
      line-height: 1;
      display: inline-block;
      vertical-align: middle;
      text-transform: capitalize; }
      .breadcrumb-wrapper .breadcrumb .item .icon {
        width: 8px;
        height: 8px;
        margin: 0 0.5rem;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: -1px; }
      .breadcrumb-wrapper .breadcrumb .item:last-child .icon {
        display: none; }
  .breadcrumb-wrapper .page-heading {
    margin: 0;
    color: black;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase; }
  @media only screen and (min-width: 551px) {
    .breadcrumb-wrapper {
      display: block;
      padding: 20px 0; }
      .breadcrumb-wrapper .breadcrumb {
        display: block; }
        .breadcrumb-wrapper .breadcrumb + .page-heading {
          margin-top: 15px;
          margin-bottom: 0; } }
section {
    padding: 30px 0px;
}
.contact-page-section .rs-contact-box .address-item {
	padding: 20px 20px 25px 20px;
	background: #ffffff;
	box-shadow: 0 0 30px #e2e2e2;
	text-align: center;
	border-radius: 5px 5px 5px 5px;
	height: 100%;
	margin-top: 20px;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 4px 4px;
	padding: 16px;
}
.about_sec .btn_sec {
	margin-top: 20px;
}

#why_us_sec_course .contented {
  text-align: center;
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  transition: all 0.6s;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  border: 1px solid #fff;
}

#why_us_sec_course .contented .top_img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 9px !important;
}

#why_us_sec_course .contented .top_img img {
  width: 50px;
}
#why_us_sec_course .contented .content h5 {
  text-transform: uppercase;
}
#why_us_sec_course .contented {
	text-align: center;
	padding: 25px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background-color: #fff;
	transition: all 0.6s;
	cursor: pointer;
	width: 100%;
	height: 100%;
	transition: all 0.6s;
	border: 1px solid #fff;
}

/*-------------------------------------
    36. Contact Section CSS
--------------------------------------*/
.contact-page-section .inner-part .title {
  font-size: 36px;
  color: #101010;
  line-height: 46px;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-page-section .inner-part .title2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25em;
  color: #111111;
}
.contact-page-section .inner-part p {
  font-size: 19px;
  color: #363636;
  line-height: 32px;
  font-weight: 400;
}
.contact-page-section .rs-quick-contact {
  background-color: #f9f8f8;
  padding: 70px 150px 70px;
}
.contact-page-section .rs-quick-contact .from-control {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #f1f1f1;
  box-shadow: 0 0 30px #eee;
  color: #363636;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #767676;
  background: #ffffff;
  padding: 10px 18px;
}
.contact-page-section .rs-quick-contact textarea {
  height: 140px;
}
.contact-page-section .rs-quick-contact .form-group .btn-send {
  padding: 16px 0px 16px 0px;
  text-transform: uppercase;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 12px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #ff5421;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.contact-page-section .rs-quick-contact .form-group .btn-send:hover {
  opacity: 0.9;
}
.contact-page-section .rs-quick-contact.new-style {
  padding: 70px 60px 70px;
}
.contact-page-section .rs-contact-box .address-item {
  padding: 20px 20px 25px 20px;
  background: #ffffff;
  box-shadow: 0 0 30px #fff;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-box .address-item .icon-part {
  padding-bottom: 8px;
}
.contact-page-section .rs-contact-box .address-item .icon-part img {
  width: 55px;
}
.contact-page-section .rs-contact-box .address-item .address-text .label {
	display: block;
	color: #101010;
	font-size: 20px;
	font-weight: 500;
	padding-bottom: 3px;
}
.contact-page-section .rs-contact-box .address-item .address-text .des {
  font-size: 17px;
  color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a {
  color: #031a3d;
}
.contact-page-section .rs-contact-box .address-item .address-text .des a:hover {
  color: #ff5421;
}
.contact-page-section .rs-contact-wrap {
  padding: 40px 35px 30px 35px;
  background-color: #f9f8f8;
  border-radius: 5px 5px 5px 5px;
}
.contact-page-section .rs-contact-wrap .address-item {
  display: flex;
  position: relative;
  margin-bottom: 40px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon {
  margin-right: 20px;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon i {
  font-size: 35px;
  color: #ff5421;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .label {
  display: block;
  color: #505050;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
  line-height: 1.2;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des {
  font-size: 18px;
  color: #111111;
  font-weight: 500;
}
.contact-page-section .rs-contact-wrap .address-item .address-text .des a {
  color: #111111;
  font-weight: 500;
}
.contact-page-section
  .rs-contact-wrap
  .address-item
  .address-text
  .des
  a:hover {
  color: #ff5421;
}
.contact-page-section .contact-comment-box .from-control {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #f1f1f1;
  box-shadow: 0 0 30px #eee;
  color: #363636;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #767676;
  background: #ffffff;
  padding: 10px 18px;
}
.contact-page-section .contact-comment-box textarea {
  height: 140px;
}
.contact-page-section .contact-comment-box .form-group .btn-send {
  padding: 16px 0px 16px 0px;
  box-shadow: 0px 28px 50px 0px rgba(0, 0, 0, 0.05);
  outline: none;
  border: none;
  padding: 13px 40px;
  border-radius: 3px;
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: var(--theme-bg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-transform: uppercase;
}
.contact-page-section .contact-comment-box .form-group .btn-send:hover {
  opacity: 0.9;
}
.contact-page-section .contact-comment-box.new-style {
  padding: 60px 70px 60px !important;
}
.contact-page-section .contact-map {
  overflow: hidden;
}
.contact-page-section .contact-map iframe {
  float: left;
  width: 100%;
  height: 550px;
  border: none;
}
.contact-page-section .contact-map2 {
  overflow: hidden;
}
.contact-page-section .contact-map2 iframe {
  float: left;
  width: 100%;
  height: 720px;
  border: none;
}
.contact-page-section .contact-map3 {
  overflow: hidden;
}
.contact-page-section .contact-map3 iframe {
  float: left;
  width: 100%;
  height: 420px;
  border: none;
}
.contact-page-section .contact-address-section {
  text-align: center;
  margin: 0 0 50px;
}
.contact-page-section .contact-address-section .contact-info {
  background: #f9f9f9;
  display: flex;
  text-align: left;
  align-items: center;
  padding: 0 30px;
  min-height: 175px;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.contact-page-section .contact-address-section .contact-info .icon-part {
  margin-right: 30px;
}
.contact-page-section .contact-address-section .contact-info .icon-part i {
  color: #ff5421;
  font-size: 30px;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 70px;
  line-height: 58px;
  border-radius: 50%;
  text-align: center;
  background: transparent;
  border: 6px solid #f9ede9;
}
.contact-page-section
  .contact-address-section
  .contact-info
  .content-part
  .info-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #505050;
  margin: 0 0 5px;
}
.contact-page-section
  .contact-address-section
  .contact-info
  .content-part
  .info-title {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}
.contact-page-section .contact-address-section .contact-info .content-part a {
  color: #111111;
  display: block;
}
.contact-page-section
  .contact-address-section
  .contact-info
  .content-part
  a:hover {
  color: var(--theme-color);
}
.contact-page-section .contact-address-section .contact-info:hover {
  transform: translateY(-5px);
}
.contact-page-section .contact-address-section.style2 {
  margin: 0;
}
.contact-page-section .contact-comment-section {
  padding: 50px;
}
.contact-page-section .contact-comment-section h3 {
  font-size: 36px;
  margin: 0;
  padding-bottom: 15px;
  font-weight: 700;
}
.contact-page-section .contact-comment-section form .form-group input {
  height: 43px;
  padding: 0 15px;
}
.contact-page-section .contact-comment-section form .form-group input,
.contact-page-section .contact-comment-section form .form-group textarea {
  border: none;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.contact-page-section .contact-comment-section form .form-group label {
  color: #505050;
  font-weight: 400;
}
.contact-page-section .contact-comment-section form .form-group input.btn-send {
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--theme-color);
  margin-top: 15px;
  border: none;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  padding: 0 50px;
  cursor: pointer;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
}
.contact-page-section .contact-comment-box .from-control {
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #f1f1f1;
	box-shadow: 0 0 30px #eee;
	color: #363636;
	width: 100%;
	max-width: 100%;
	opacity: 1;
	border-radius: 3px;
	border: 1px solid #ffffff;
	color: #767676;
	background: #ffffff;
	padding: 10px 18px;
	/*margin-bottom: 16px;*/
}

.contact-page-section .contact-bg1 {
  background: #f9f9f9;
}
.contact-page-section .rs-contact-box .address-item {
  padding: 20px 20px 25px 20px;
  background: #ffffff;
  box-shadow: 0 0 30px #e2e2e2;
  text-align: center;
  border-radius: 5px 5px 5px 5px;
  height: 100%;
}
  
.row-below{
    margin-top:25px;
}
.row_gap{
    margin-top:60px;
}

.contact-page-section .rs-contact-box .address-item {
	padding: 20px 20px 25px 20px;
	background: #ffffff;
	box-shadow: 0 0 30px #e2e2e2;
	text-align: center;
	border-radius: 5px 5px 5px 5px;
	height: 100%;
	margin-top: 20px;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 4px 4px;
	padding: 16px;
}
.comon-btn {
    background: #bd141c;
    border: 1px solid #bd141c;
    color: #fff !important;
    display: inline-block;
    font-size: 16px;
    padding: 7px 6px;
    border-radius: 50px;
    width: 182px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.comon-btn:hover {
    background: #000;
    color: #fff;
}
.cart-qty {
    width: 100px;
    text-align: center;
    border-radius: 10px;
}
/*table*/
/*{*/
/*    text-align:center;*/
/*}*/
.ps-product__thumbnail img{
        width: 70px;
}
.ps-product--cart
{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}
.Quantity, .Actions
{
    display:flex;
    justify-content:center;
    align-items:center
}
.Actions a {
    width: 35px;
    height: 35px;
    background-color: #bd141c;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 23px;
    border-radius: 50%;
    cursor: pointer;
}
.card-text, .card-tax, .card-subtotal
{
        display: flex;
    justify-content: space-between;
    font-size: 25px;
    font-weight: 700;
}
.card-header h2
{
    margin-bottom:0px;
    padding-bottom:0px;
}
.swiper-button-white{
        background-color: #0000005c;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    font-size: 16px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 16px !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 16px !important;
}
.moblie_menu_sty{
    display:none;
}
.search_bar_sm{
      display:none;
}

.header_cart_det ul li {
	position: relative;
}
#cardContainer {
	position: absolute;
	top: 45px;
	right: -40px;
}
.inner_page{
    background-color:#f1f1f1;
}