@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* CSS Document */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth ;
}
body {
   color: #222222;
   line-height: 25px;
   background-color: #fff;
   font-family: 'Roboto', sans-serif;
   overflow:hidden;
}

a {
   text-decoration: none;
}
.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
a:hover,
a:focus,
a:visited,
a.active{
   outline: none;
   box-shadow: none !important;
   text-decoration: none;
}
.form-control {
  outline: none;
    box-shadow: none !important;
}
ul {
   margin: 0;
   padding: 0;
   list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   margin: 0;
}

p{
	margin: 0;
   padding: 0;
   font-size:14px;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 7px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #c8002f;
}

/*******loader*******/
 .loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: no-repeat #fff;
	 opacity: 1;
}
.hide{
  opacity: 0;
   -webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
  z-index:-9
}
.overflow{
	overflow:auto;
}

.cs-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cs-loader img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 137px;
    width: 170px;
}
.cs-loader-inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  color: #c8002f;
  padding: 0 200px;
  text-align: center;
}

.cs-loader-inner label {
  font-size: 37px;
  opacity: 0;
  display:inline-block;
}

@keyframes lol {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    transform: translateX(0px);
  }
  66% {
    opacity: 1;
    transform: translateX(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@-webkit-keyframes lol {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
  }
  33% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  66% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(300px);
  }
}

.cs-loader-inner label:nth-child(6) {
  -webkit-animation: lol 3s infinite ease-in-out;
  animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
  -webkit-animation: lol 3s 100ms infinite ease-in-out;
  animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
  -webkit-animation: lol 3s 200ms infinite ease-in-out;
  animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
  -webkit-animation: lol 3s 300ms infinite ease-in-out;
  animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
  -webkit-animation: lol 3s 400ms infinite ease-in-out;
  animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
  -webkit-animation: lol 3s 500ms infinite ease-in-out;
  animation: lol 3s 500ms infinite ease-in-out;
}
/***********go-top****/
#button {
  display: inline-block;
  background-color: #c8002f;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 27px;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/******sticky-sidebar*****/
.make-me-sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
}
.sidebar-item {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/****button******/
.button_solid a{
	color: #ffffff;
	background: #c8002f;
	padding: 8px 25px;
	border: 2px solid #c8002f;
	border-radius: 25px;
	margin-top: 0;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
	display: inline-block;
}
.button_solid a:hover{
	background: #fff;
	transition: all 0.4s ease-in-out;
	color: #222222;
	border: 2px solid #fff;
}
.button_trans a{
	border: 2px solid #fff;
	color: #ffffff;
	padding: 8px 18px;
	border-radius: 25px;
	margin-top: 0;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
	display: inline-block;
}
.button_trans a:hover{
	background: #fff;
	transition: all 0.4s ease-in-out;
	color: #222222;
}
.send_button{
	color: #ffffff;
	background: #c8002f;
	padding: 8px 25px;
	border: 2px solid #c8002f;
	border-radius: 25px;
	margin-top: 0;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
	display: inline-block;
}
.send_button:hover{
	background: #c8002f7a;
    transition: all 0.4s ease-in-out;
    color: #ffffff;
    border: 2px solid #c8002f;
}
:focus {
    outline: none !important;
}
/*******top*****/
section.top {
    padding: 10px 0px;
}
.top_logo img {
    width: 80%;
}
.top_contact_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top_contact_box_icon {
    margin-right: 10px;
}

.top_contact_box_content span {
    display: block;
    color: #c8002f;
    font-weight: 700;
}
.top_contact_box_content a {
    color: #222222;
    line-height: 13px;
    display: block;
    font-size: 14px;
}
.bord-left{
	position:relative;
}
.bord-left:before{
	content:'';
	position:absolute;
	height: 35px;
	width: 1px;
	background: #c8002f;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -21px;
}
/*****nav*****/
.nav_sec {
    background: #c8002f;
    transition: all 0.4s ease-in-out;
    padding: 13px 0px;
}
.back{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    padding: 10px 0px !important;
	z-index:9;
	 transition: all 0.4s ease-in-out;
}
.nav_sec nav .logo a {
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    height: 100%;
}
.nav_sec nav .nav-wrapper ul {
    display: flex;
    align-items: center;
}

.nav_sec nav .nav-wrapper ul li:not(:last-child) {
    margin-right: 25px;
}

.nav_sec nav .nav-wrapper ul li.active a {
    font-weight: 600;
    color: #fff;
}
.nav_sec nav .nav-wrapper ul li a {
    color: #dcdcdc;
    font-size: 16px;
    font-weight: 500;
}

.nav_sec nav .nav-wrapper ul li a:hover {
    color: #fff;
}
.nav_sec nav .nav-btn {
          display: none;
}

#nav:checked + .nav-btn i {
    background: #fff;
    transition: transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
    transform: translateY(5px) rotate(-135deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
    transform: translateY(-6px) rotate(135deg);
}

#nav:checked ~ .nav-wrapper {
    z-index: 9990;
   display: block;
	height: 100%;
}

#nav:checked ~ .nav-wrapper ul li a {
    opacity: 1;
    transform: translateX(0);
}
@media screen and (max-width: 864px) {
    .nav_sec nav .nav-wrapper ul{
        display: block;
    }

    .nav-wrapper {
          position: fixed;
          top: 0;
          right: 0;
          width: 50%;
          height: 0;
          z-index: -1;
          background: #fff;
        display: none;
    }

    .nav-wrapper ul {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 100%;
          padding-right: 2rem;
    }

    .nav-wrapper ul li {
          display: block;
          float: none;
          width: 100%;
          text-align: center;
          margin-bottom: 10px;
    }

    .nav-wrapper ul li:not(:first-child) {
          margin-left: 0;
    }

    .nav-wrapper ul li a {
          padding: 10px 24px;
          opacity: 0;
          color: #000;
          font-size: 18px;
          letter-spacing: 1.2px;
          transition: all 0.2s ease;
    }

    .nav-btn {
          right: 1rem;
          display: block !important;
          cursor: pointer;
          z-index: 9998;
          top: 7px;
    }

    .nav-btn i {
          display: block;
          width: 25px;
          height: 4px;
          background: #fff;
    }

    .nav-btn i:nth-child(1) {
          margin-top: 12px;
    }

    .nav-btn i:nth-child(2) {
          margin-top: 7px;
    }
}

@media screen and (max-width: 375px){
      .nav-wrapper {
          width: 100%;
    }
}
.nav_sec_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uscart a:not(:last-child) {
    margin-right: 20px;
}
.uscart a{
    position: relative;
}
.uscart a span {
    position: absolute;
    background: #ffffff;
    color: #c8002f;
    border-radius: 25px;
    top: -8px;
    padding: 0px 6px;
    right: -9px;
    font-size: 12px;
    height: 17px;
    width: 17px;
    line-height: 19px;
}

/*****banner*******/

.banner {
  position: relative;
  overflow:hidden;
}
.camera_wrap {
	width: 100%;
	margin-bottom:0 !important;
}
.camera_caption  div {
    background: none;
	display: inline-block;
	padding: 0;
}
.camera_prevThumbs, .camera_nextThumbs, .camera_prev, .camera_next, .camera_commands, .camera_thumbs_cont {
    background: transparent;
}
.camera_prev, .camera_next, .camera_commands {
    cursor: pointer;
    height: 32px;
    margin-top: 0;
    position: absolute;
    top: unset;
    width: 32px;
    z-index: 99999;
    bottom: 40px!important;
    right: 0;
    left: unset !important;
}
.camera_prev {
    left: 0;
    right: 75px !important;
}
.camera_next {
    left: 0;
    right: 40px !important;
}
.camera_prev > span {
    background: url(../image/next.png) no-repeat 0 0;
    display: block;
    height: 32px;
    width: 32px;
	transform: rotateY(160deg);
}
.camera_next > span {
     background: url(../image/next.png) no-repeat 0 0;
    display: block;
    height: 32px;
    width: 32px;
}
/****banner-over-text******/
.banner_text {
    top: 0;
    position: absolute;
    background: #4f5960a6;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}
.banner_text_box{
    width: 100%;
    padding-left: 10%;
    padding-right: 2%;
}
.banner_text_box span {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.banner_text_box h1 {
    color: #c8002f;
    font-weight: 300;
    font-size: 50px;
}

.banner_text_box h3 {
	color: #fff;
	font-weight: 100;
	font-size: 50px;
}
.banner_text_box h4 {
	color: #fff;
    font-weight: 500;
    font-size: 49px;
    letter-spacing: .5px;
    margin-bottom: 13px;
}

.banner_text_box h2 {
    color: #fff;
    font-weight: 500;
    font-size: 49px;
    letter-spacing: .5px;
    margin-bottom: 13px;
}

.banner_text_box p {
    color: #fff;
    font-size: 14px;
    max-width: 100%;
    font-weight: 300;
    line-height: 21px;
    margin-top: 0;
    margin-bottom: 17px;
}
/****kye-point*******/
section.key_point {
    padding: 20px 0px;
}
.key_point .top_contact_box {
    justify-content: center;
}
.key_point .top_contact_box_icon img {
    width: 100% ;
}
.key_point .top_contact_box_content span {
    color: #222222;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
	margin-bottom: 4px;
}
.key_point .top_contact_box_content p {
    font-size: 14px;
}

/*********steps**********/
.step_box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.step_box_content {
    width: 50%;
    padding: 0px 22px;
}

.step_box_image {
    width: 50%;
}
.step_box_image img {
    height: 332px;
}
.step_box_content span {
    font-weight: 500;
    font-size: 17px;
}

.step_box_content h1 {
    font-weight: 600;
    font-size: 27px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.step_box_content p {
    font-size: 13.5px;
    line-height: 19px;
    color: #808080;
    text-align: justify;
}
.steps {
    padding: 100px 0px 80px;
    position: relative;
}
.steps:before {content: '';position: absolute;background: #f6f6f6;height: 72%;width: 50%;top: 0;left: 0;}

.step_slider {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 6px;
}
.step_slider .owl-nav {
    position: absolute;
    left: -103%;
    margin-top: 0;
    bottom: 3px;
}
.step_slider .owl-prev:before, .step_slider .owl-next:before {
    content: "\f060";
    font-family: "Font Awesome 5 Free Brands", "Font Awesome 5 Free Solid", "Font Awesome 5 Free" !important;
    color: #020202;
    margin: 0px;
    padding: 0px 10px;
    outline: none;
    font-weight:700;
}

.step_slider .owl-next:before{
	content: "\f061";
	}
.step_slider .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    outline: none;
}	
.step_slider .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
/*****title*****/
.title h1 {
    font-weight: 900;
    font-size: 124px;
    color: #efece5;
    line-height: 107px;
}

.title {
    position: relative;
    margin-bottom: 55px;
}

.title h2 {
    font-size: 43px;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
}
/*****ptoduct******/
section.product {
    padding-bottom: 60px;
}
.product_box_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product_box_top h5 {
    font-size: 20px;
}

.product_box_top a {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.product_box_top a svg {
    margin-left: 10px;
}
.product_box_products_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px 0;
}

.product_box_products_img img {
    height: 356px;
    width: 100%;
}
.product_box_products_img {
    position:relative;
	transition: all 0.6s ease-in-out;
}
.product_box_products_img:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #c8002f54;
	transition: all 0.6s ease-in-out;
	opacity:0;
}
.product_box_products:hover .product_box_products_img:before {
    opacity:1 !important;
	transition: all 0.6s ease-in-out;
}
.product_box_products_content .content h5 {
    color: #c8002f;
    font-size: 17px;
    margin-bottom: 4px;
}

.product_box_products_content .content span {
    font-size: 13px;
}

.product_box_products_content .price span {
    font-size: 15px;
    background: #cbc8c161;
    padding: 5px 4px;
    border-radius: 5px;
}
.product_box_products_img {
    border-radius: 5px;
    overflow: hidden;
}
.shop_cart.button_solid {
    text-align: center;
    position: absolute;
    top: -48px;
    width: 100%;
	transition: all 0.6s ease-in-out;
}

.view_product.button_trans {
    text-align: center;
    position: absolute;
    bottom: -46px;
    width: 100%;
	transition: all 0.6s ease-in-out;
}

.product_box_producttop_sec {
    position: relative;
    overflow: hidden;
}
.product_box_products:hover .shop_cart.button_solid {
    top: 125px;
    transition: all 0.6s ease-in-out;
}
.product_box_products:hover .view_product.button_trans {
    bottom: 125px;
    transition: all 0.6s ease-in-out;
}
.product_box_products_content .content {
    width: 80%;
}
/******test********/
.test_back img {
    width: 100%;
    height: 424px;
}

section.test {
    position: relative;
}

.test_front {
    position: absolute;
    width: 100%;
    top: 0;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.test_front h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 55px;
}

.test_box {
    background: #6f6f6f85;
    padding: 21px;
    color: #fff;
}

.test_box h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.test_box_content p {
    font-size: 14px;
    margin-bottom: 9px;
}

.test_box_content span {
    font-style: italic;
    font-size: 15px;
}
/*****gallery******/
section.gallery {
    padding: 70px 0px;
}
section.gallery .title h2 {
    bottom: 0px;
    left: -10px;
    right: 0;
    margin: auto;
}
.gallery_slider_item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.gallery_slider_item img {
    width: 100%;
    height: auto;
}
.gallery_slider_item{
    height: 210px;
    overflow: hidden;
}
.gallery_slider_item .spotlight{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	top:0;
    margin: auto;
    color: #fff;
    font-size: 34px;
    height: 34px;
    width: 34px;
    border-radius: 33px;
	opacity:0;
	z-index:-9;
	transition: all 0.8s ease-in-out;
}
.gallery_slider_item:hover .spotlight {
   opacity:1;
	z-index:9;
	transition: all 0.8s ease-in-out;
}
.gallery_slider_item:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #c8002f54;
	transition: all 0.6s ease-in-out;
	opacity:0;
}
.gallery_slider_item:hover:before {
    opacity:1 !important;
	transition: all 0.6s ease-in-out;
}
/*******blog*******/
section.blog {
    padding-bottom: 60px;
}
.blog_box_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog_box_top h5 {
    font-size: 20px;
}

.blog_box_top a {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.blog_box_top a svg {
    margin-left: 10px;
}
.blog_box {
    border-top: 1px solid #dadada;
    padding-top: 35px;
}

.blog_date_box {
    background: #5f7381;
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 59px;
    text-align: center;
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 5px;
    overflow: hidden;
}

.first_blog_date_box_date span {
    font-size: 14px;
}

.first_blog_date_box_date {
    padding: 0px 0px;
    background: #c8002f;
}

.first_blog_date_box_month {
    font-size: 13px;
    line-height: 15px;
    padding: 2px 0px;
    display: flex;
    flex-direction: column;
}

.blog_item {
    position: relative;
    background: #f5f5f5;
    width: 100%;
    height: 354px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog_item_box {
    width: 300px;
}
.blog_content span {
    color: #c8002f;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.blog_content h1 {
    font-size: 19px;
    margin-bottom: 10px;
}

.blog_content p {
    font-size: 14px;
    color: #969696;
    line-height: 21px;
    margin-bottom: 18px;
}

.blog_content a {
    color: #c8002f;
    font-size: 16px;
    font-weight: 500;
}
/*****footer*******/
.footer_back img {
    width: 100%;
	height:467px;
}

.footer_front {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 60px;
}

section.footer {
    position: relative;
}

.footer_box h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 13px;
    font-weight: 400;
}

.footer_box ul li a {
    color: #d0d0d0;
    font-size: 15px;
	transition: all 0.3s ease-in-out;
}
.footer_box ul li a:hover {
      color: #c8002f;
	transition: all 0.3s ease-in-out;
}
.footer_box p {
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 37px;
}
.footer_logo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}

.footer_logo img {width: 204px;height: 75px;}

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

.footer_contact a {
    color: #fff;
	transition: all 0.3s ease-in-out;
}
.footer_contact a:hover{
    color: #c8002f;
	transition: all 0.3s ease-in-out;
}

.footer_copy p {
    margin-right: 7px;
}
.footer_copy {
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: flex-end;
    padding: 12px 0px;
    font-size: 15px;
}

/*******inner-banner******/
.banner_inner{
	 position: relative;
}
.banner_inner_back{
	 position: relative;
}
.banner_inner img {
    width: 100%;
    height: 300px;
}

.banner_inner_back:before {
    content: '';
    position: absolute;
    background: #63636363;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.text_banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text_banner_inner span {
    color: #ffffff;
    font-size: 44px;
    font-weight: 600;
}
.text_banner_inner h6 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20px;
    color: #fff;
    margin-top: 17px;
}
.text_banner_inner .bred {
    margin-top: 16px;
}
.text_banner_inner .bred ul {
	display: flex;
    align-items: center;
}
.text_banner_inner .bred ul li {
    margin: 0;
    text-transform: capitalize;
    color: #fff;
    font-size: 18px;
	position:relative;
}
.text_banner_inner .bred ul li:not(:last-child) {
    padding-right: 30px;
}
.text_banner_inner .bred ul li:not(:last-child):before {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 12px;
    border-radius: 0;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
}

.text_banner_inner .bred ul li a {
    color: #fff;
	transition: all 0.4s ease-in-out
}
.text_banner_inner .bred ul li a:hover{
	color:#c8002f;
   transition: all 0.4s ease-in-out
}
section.text_banner {
    position: absolute;
    width: 100%;
    bottom: 77px;
}
/***custom-dropdown******/
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {
    color: #222222;
    background-color: transparent;
    border-color: #000000;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #c8002f;
}
.btn-light {
    color: #222222;
    background-color: transparent;
    border-color: #d0d0d0;
    border-radius: 0px;
    font-size: 15px;
}
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle, .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}
.btn-light:hover {
    color: #222222;
    background-color: transparent;
    border-color: #040404;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #ffffff;
    text-decoration: none;
    background-color: #c8002fd9;
}
.bootstrap-select .bs-ok-default:after {
    border-width: 0 0.2em 0.2em 0;
}
.dropdown-menu {
    padding: 0;
    margin: .125rem 0 0;
    font-size: 14px;
    border-radius: 0;
}
/*****products*******/
.product_inner {
    padding: 70px 0px;
}
.filter_categ,.filter_price{
    margin-bottom: 22px;
    text-align: center;
}
.filter_categ h3,.filter_price h3{
    color: #020202;
    font-size: 27px;
    margin-bottom: 20px;
}
.filter_categ .form-check-label {
    color: #000000;
    font-size: 19px;
    text-align: center;
    padding: 8px;
    font-weight: 500;
    cursor: pointer;
}

.filter_categ .form-check {
}
.filter_size .form-control {
    padding: .375rem 0rem;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #131518;
}
.sort {
    margin-bottom: 25px;
    border-bottom: 1px solid #d0d0d0;
}
.sort .form-group {
    margin: 0;
    margin-bottom: -3px;
}
section.product_inner .product_box_products {
    margin-bottom: 29px;
}
.pagination_section {
    display: flex;
    justify-content: flex-end;
}
.page-item.active .page-link {
    background-color: #c8002f;
    border-color: #c8002f;
}
.page-link {
    color: #c8002f;
}
.page-link:hover {
    color: #ffffff;
    background-color: #c8002f96;
    border-color: #c8002f96;
}

.filter_categ input {
    position: absolute;
    left: 0;
    opacity: 0;
    z-index: -9;
    visibility: hidden;
}

.filter_categ .form-check {
    padding: 0;
}

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

.filter_categ .form-check-label span {
    display: grid;
    align-items: center;
    justify-content: center;
}

.filter_categ .form-check-label span img {
    margin-bottom: 12px;
}

.filter_categ input[type="checkbox"]:checked + label {
  color: #c8002f;
  
}
/*****product-details******/
/********zoom******/
.details_main_image {
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.details_slide_image .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.details_slide_image{
    position:relative;
}
.details_slide_image .owl-nav span {
    font-size: 31px;
    color: #000;
}
.details_slide_image button.owl-prev {
    position: absolute;
    top: 0;
    left: -22px;
    margin: auto !important;
    bottom: 0;
    height: 29px;
}
.details_slide_image button.owl-next {
    right: -22px;
    position: absolute;
    top: 0;
     margin: auto !important;
    bottom: 0;
    height: 29px;
}
.details_slide_image.owl-theme .owl-nav {
    margin-top: 0;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

a[data-zoom-id] img, .mz-thumb img {
    box-shadow: none;
}
.mz-hint {
    display: none;
}
/*
.details_slide_image img {
    height: 91px;
}
*/
/******details******/
.shop_details{
	padding:70px 0px;
}
.button_solid a:hover {
    background: #c8002f7a;
    transition: all 0.4s ease-in-out;
    color: #ffffff;
    border: 2px solid #c8002f;
}
.item_details {
    position: relative;
}

.item_details:before {content: '';position: absolute;background: #d4d4d4;height: 100%;width: 1px;left: -59px;}
.item_details h1 {
    color: #020202;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}
.item_details h2 {
    color: #020202;
    font-weight: 400;
    font-size: 30px;
}
.item_details h2 {
    color: #020202;
    font-weight: 400;
    font-size: 21px;
    margin-bottom: 10px;
}
.item_details span {
    color: #ff0000;
    font-size: 14px;
}
.item_details h6 {
    color: #c8002f;
    font-weight: 400;
    margin-top: 11px;
    margin-bottom: 23px;
}
.item_details h6 span{
    color: #020202;
	font-size:15px;
}
.item_details label {
    color: #020202;
    font-weight: 600;
}
.item_details .form-control {
    padding: .375rem 0rem;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #131518;
}
.item_details .qunt .form-control {
    border: none;
    text-align: center;
    background: transparent;
}
.item_details .qunt span {
    color: #fff !important;
    background: #c8002f;
    width: 44px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 49px;
    cursor: pointer;
}
.item_details .qunt  {
    margin:0px;
    margin-right: 40px;
}
.qunt p {
    margin-bottom: 9px;
}
.item_details .form-group {
    margin-bottom: 0;
}
.accordion_section {
    margin-top: 35px;
}
.accordion_section .card {
    border: none;
    border-radius: 0px;
    margin-bottom: 15px;
}

.accordion_section .card-header {
    position: relative;
    background: transparent;
    border-radius: 0px !important;
    border: 1px solid #e0dfdf;
    padding: 7px 16px;
    color: #020202;
    font-weight: 500;
}
.accordion_section .card-body {
    padding: 1.25rem 0;
}
.accordion_section .card-header:before {
	content: '\f0d7';
	position: absolute;
	font-family: "Font Awesome 5 Free";
	top: 0;
	bottom: 0;
	margin: auto;
	height: 21px;
	right: 21px;
	color: #c8002f;
	font-weight:700;
}
.accordion_section .card-header.collapsed {
	background: transparent !important;
}
.accordion_section .card-header.collapsed:before {
	content: '\f0da';
}

/****inastall-inner*******/
section.installation {
    padding: 70px 0px;
}
.installation_step_box:not(:last-child){
	margin-bottom:25px;
}
.installation_step_box img {
    width: 100%;
}

.installation_step_box span {
    font-size: 25px;
    color: #c8002f;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    padding: 15px 0;
}

.title_tip h1 {
    font-size: 25px;
    color: #c8002f;
}

.title_tip {
    margin-bottom: 26px;
}

.installation_top {
    text-align: center;
}

.installation_top {
    margin-bottom: 35px;
}
/***galler-inner*****/
.galler_inner .gallery_slider_item {
    margin-bottom:25px;
}
.galler_inner .gallery_slider_item img {
    height: 255px;
    width: 100%;
}
/*****contact******/
.cont_box h2 {
    font-size: 19px;
    margin-bottom: 7px;
    color: #27395d;
}

.cont_box h3 {
    font-size: 14px;
    color: #222222;
}
.cont_box h3 a{
    color: #222222;
}
.cont_box h3 a:hover{
    color: #c8002f;
}

.cont_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_box_img {
    height: 50px;
    width: 50px !important;
    margin-right: 16px;
}
.contact_inner_content {
    text-align: center;
}

.contact_inner_content h2 {
    margin-bottom: 14px;
}

section.contact_home {
    text-align: center;
    margin-top: 53px;
     padding-bottom: 70px;
}
section.contact_inner {
    padding-top: 70px;
}

.contact_form_content h1 {
    margin-bottom: 10px;
}

.contact_form_content p {
    padding-bottom: 20px;
    max-width: 518px;
    margin: auto;
}

.contact_form_form .form-control {
    border-radius: 0;
}

.contact_form_form textarea {
    height: 94px;
    resize: none;
}
.map iframe {
    width: 100%;
    height: 400px;
}

.map {
    margin-top: 50px;
}

/**********faq******/
section.faq_inner {
    padding: 70px 0px;
}
section.faq_inner .accordion_section .card-body {
    padding: 1.25rem 20px;
}
/*****blog-inner*****/
.blog_inner{
	padding-top:70px;
}
.blog_inner .blog_item {
    margin-bottom: 25px;
}
.cata h3 {
    color: #c8002f;
    font-size: 23px;
    margin-bottom: 15px;
}

.cata a {
    color: #212121;
    font-size: 15px;
    margin-bottom: 3px;
}

.cata {
    margin-bottom: 20px;
}

.latest_post h3 {
    color: #c8002f;
    font-size: 23px;
    margin-bottom: 15px;
}

.latest_post a {
    color: #212121;
    font-size: 14px;
}
.latest_post p {
    font-size: 14px;
}
.latest_post_box {
    margin-bottom: 10px;
}
.latest_post_box h4 {
    line-height: 15px;
    margin-bottom: 6px;
}

.latest_post_box img {
    height: 46px;
}
/****blog-details******/
.blog_details{
	padding:70px 0px;
}
.blog_details_box_image {
    float: right;
    margin-left: 29px;
    width: 255px;
}
.blog_details_box_image img {
    width: 100%;
    height: 261px;
}
.blog_details_box_cintent h1, .blog_details_box_cintent h2, .blog_details_box_cintent h3, .blog_details_box_cintent h4, .blog_details_box_cintent h5, .blog_details_box_cintent h6 {
    font-weight: 600;
    color: #c8002f;
    margin-bottom: 19px;
}
.blog_details_box_cintent p {
    text-align: justify;
}
.blog_details_box_cintent p:not(:last-child) {
    margin-bottom: 10px;
}
.blog_details_box_cintent dl, .blog_details_box_cintent ol, .blog_details_box_cintent ul {
    margin-top: 0;
    margin-bottom: 1rem;
	
}
.blog_details_box_cintent ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
	
}
.blog_details_box_cintent ul li {
	margin-bottom:8px;
	position:relative;
	font-size: 15px;
}
.blog_details_box_cintent ul li:before {
    content: '';
    position: absolute;
    border-right: 2.5px solid #c8002f;
    border-bottom: 2.5px solid #c8002f;
    width: 7px;
    height: 7px;
    top: 13.2px;
    left: -18px;
    transform: translateY(-50%) rotate(-45deg);
}
.blog_details_box_cintent a {
    color: #c8002f;
	 font-size:15px
	
}
/****pro-install******/
.tip_pro {
    margin-top: 25px;
    margin-bottom: 32px;
}

.tip_pro span {
    color: #c8002f;
    font-size: 25px;
    font-weight: 600;
    margin-right: 5px;
}

.tip_pro h5 {
    color: #222222;
    font-size: 20px;
}

.tip_pro a {
    color: #c8002f;
}

.tip_pro a:hover {
    color: #222222;
}
.wpfFilterVerScroll li label {
    font-size: 16px !important;
    color: #000 !important;
    margin-bottom: 2px !important;
}
.ui-slider.ui-widget-content .ui-slider-handle {
    background: #c8002f !important;
    border: 1px solid #0000 !important;
    border-radius: 25px !important;
    width: 15px !important;
    height: 15px !important;
}
.ui-slider.ui-widget-content:not(.iris-slider-offset) {
    background: #dadada !important;
    border-radius: 0 !important;
    border: 1px solid white !important;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -4px !important;
}
.woocommerce .woocommerce-ordering select {
    padding: 8px !important;
}
.product_cont{
    padding: 40px;
    box-shadow: 3px 5px 10px #ccc;
    border: 1px solid #ccc;
    margin: 40px;
}
.product_cont a h2{
    text-align: center;
    padding: 10px;
    background-color: #c8002f;
    color: #fff;
}







.woocommerce-MyAccount-navigation ul{
    width: 70%;
}
.woocommerce-MyAccount-navigation ul li{
    border-bottom: 1px solid #525252;
    background-color: #2f2e2e;
}
.woocommerce-MyAccount-navigation ul li a{
    color: #fff;
    padding: 15px;
    display: block;
    transition: ease-in all 0.5s;
}
.woocommerce-MyAccount-navigation ul li a:hover{
    background-color: #c8002f;
    transition: ease-in all 0.5s;
}
.woocommerce-MyAccount-navigation ul li.is-active{
    background-color: #c8002f;
}

.woocommerce-info {
    background-color: #eaeaea;
    border: 1px solid #ccc;
}
.woocommerce-info::before {
    color: #c8002f;
}
.woocommerce-Address{
    max-width: 48% ;
    margin-top: 50px;
}
.woocommerce-Address-title h3{
    font-size: 20px;
}
.woocommerce-Address-title a.edit{
   color: #fff;
    background-color: #c8002f;
    padding: 3px 12px;
    font-size: 14px;
}
.woocommerce-Address-title{
   padding-bottom: 7px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}
.woocommerce-MyAccount-content form h3{
    margin-bottom: 30px;
    font-size: 23px;
    letter-spacing: 1px;
}
.woocommerce-address-fields__field-wrapper p.form-row{
    display: block;
}
.woocommerce-input-wrapper input, .woocommerce-form-row input{
    height: 35px;
    padding: 5px;
}
.woocommerce-input-wrapper select, .woocommerce-form-row select{
    height: 35px;
    padding: 5px;
}
#customer_details{
   padding: 30px;
    background-color: #eaeaea;
    border: 1px solid #ccc; 
}

.woocommerce-input-wrapper select{
    height: 35px;
    padding: 5px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button{
    background-color: #c8002f;
    color: #fff;
    font-weight: inherit;
}
.woocommerce-form-row{
    display: block;
}
.woocommerce-loop-product__title{
    color: #c8002f;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    text-align: center;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1{
    max-width: 48%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
    max-width: 48%;
}
.woocommerce-billing-fields__field-wrapper p{
    display: block;
}
.woocommerce-additional-fields__field-wrapper p{
    display: block;
}
.woocommerce-shipping-fields__field-wrapper p{
    display: block;
}
#order_review_heading{
    margin-top: 50px;
    margin-bottom: 15px;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #c8002f;
    color: #fff;
    border-radius: 0px;
    padding: 15px 50px;
}
.checkout_coupon input{
    height: 35px;
    padding: 5px;
}

.single_blog_img img{
    width: 100%;
}
.comment-form{
    width: 70%;
    margin: 0px auto;
    background-color: #eaeaea;
    padding: 35px;
    border: 1px solid #ccc;
}
.comment-form p{
    display: block;
}
.comment-form p label{
    display: block !important;
}
.comments-area{
    padding-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #ccc;
}
.comment-form-comment textarea{
    width: 100%;
}
.form-submit .submit{
   background-color: #c8002f;
    color: #fff;
    border: none;
    margin-top: 15px;
    cursor: pointer;
}
.comment-form-cookies-consent{
    display: flex !important;
}
#reply-title{
    text-align: center;
}
.comment-form p input{
    height: 35px;
    width: 100%;
    padding: 5px;
}
.comment-form-cookies-consent input{
    width: 17px !important;
    margin-right: 10px;
}

.cart_sec{
    padding: 50px 0;
}

.woocommerce-page.columns-3 ul.products li.product, .woocommerce.columns-3 ul.products li.product {
    background-color: #ffffff;
    padding: 15px 8px;
    box-shadow: 10px 12px 34px #ccc;
    border: 1px solid #ccc;
}
.sidebar-item {
    background-color: #ececec;
    padding: 20px 10px;
    border: 1px solid #ccc;
}

.product-name a{
    color: #000;
}
.cart_totals  h2{
    font-size: 26px;
    padding-bottom: 9px;
    letter-spacing: 1px;
}
.shipping-calculator-button{
    color: #c8002f;
}
.select2-container--default .select2-selection--single{
    height: 35px;
}
.shipping-calculator-form p input{
    height: 35px;
    padding: 5px;
}

.woocommerce-message {
    border-top-color: #c8002f;
}
.woocommerce-message::before {
    content: "\e015";
    color: #c8002f;
}
.widget_categories{
   background-color: #eaeaea;
    padding: 14px;
    border: 1px solid #ccc; 
}
.widget_categories h3{
    font-size: 23px;
    padding-bottom: 5px;
}
.widget_categories ul li a{
    padding: 7px 0;
    display: block;
    color: #c8002f;
}

.woocommerce-form__label-for-checkbox{
	width:100%;
}



.accordion_section .card .card-header h5{
    cursor: pointer;
}


.product_cont{
    padding: 40px;
}
.inner_form_sec h6{
    width: 100%;
    padding-bottom: 10px;
    padding-left: 15px;
}
.install_contact_sec{
    padding: 50px 0;
}

.inner_form_sec h3{
    text-align: center;
    padding-bottom: 30px;
}
.conatct_btn{
    padding: 10px 35px;
    background-color: #c8002f;
    color: #fff;
    border: none;
}
.inner_form_sec{
        padding: 30px;
    background-color: #e6e6e6;    
}










/**************responsive***********/

@media screen and (max-width: 1500.98px) {

}

@media screen and (max-width: 1199.98px) {
    .banner_text_box p {
    color: #fff;
    font-size: 13px;
    max-width: 100%;
    font-weight: 300;
    line-height: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}
    .banner_text_box h1,.banner_text_box h3,.banner_text_box h4{
        font-size: 40px;
    }
    .banner_text{
        width: 45%;
    }
.nav_sec nav .nav-wrapper ul li:not(:last-child) {
    margin-right: 0px;
}
    .nav_sec nav .nav-wrapper ul li a{
        font-size: 10px;
    }
}

@media screen and (max-width: 991.98px) {
    .step_box{
        display: block;
    }
    .step_box_image, .step_box_content{
        width: 100%;
    }
    .step_slider .owl-nav {
    left: 0;
    bottom: -37px;
}
     .cs-loader img{
        width: 160px;
    }
     .banner_text_box h4{
        font-size: 40px;
    }
    .banner_text_box h3{
        font-size: 45px;
    }
    .banner_text_box h1{
        font-size: 40px;
        font-weight: bold;
    }
    .banner_text{
        width: 100%;
    }
    
    
    #nav:checked ~ .nav-wrapper{
        background-color: #c8002f;
        width: 270px;
    }
    .top_logo img{
        width: 50%;
    }
}

@media screen and (max-width: 767.98px) {
    .top_logo{
        text-align: center;
    }
    .banner_text_box p{
        display: none;
    }
    .owl-carousel .owl-item .mz-thumb img{
        width: 20%;
    }
    .item_details{
        margin-top: 40px;
    }
    .nav_sec nav .nav-wrapper ul li a {
    font-size: 14px;
}
    .step_box_image {
        margin-bottom: 30px;
    }
    .widget_categories{
        margin-top: 30px;
    }
    .product_box{
        margin-top: 50px;
    }
    #customer_details{
        padding: 10px;
    }
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1{
        max-width: 100%;
    }
     .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
        max-width: 100%;
    }
    .cont_box{
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    .installation_step_box span {
    padding: 15px 0;
}
    .text_banner_inner{
        padding-left: 50px;
    }
    .banner_inner img{
        height: 200px;
    }
    .product_cont{
        margin: 0px;
        margin-bottom: 30px;
    }
    .cs-loader-inner{
        display: flex;
        padding: 0 120px;
    }
    .cs-loader img{
        width: 130px;
    }
    .button_solid a{
        padding: 3px 25px;
        font-size: 13px;
    }
    .banner_text_box h4{
        font-size: 30px;
    }
    .banner_text_box h3{
        font-size: 35px;
    }
    .banner_text_box h1{
        font-size: 30px;
        font-weight: bold;
    }
    .banner_text{
        width: 100%;
    }
    .banner_text_box p{
        display: none;
    }

}

@media screen and (max-width: 575.98px) {
    .installation_step_box{
        padding: 20px;
        background-color: #e4e4e4;
    }
    .gallery_slider_item{
        height: auto;
    }
    .product_box_products_img img{
        height: auto;
    }
    .footer_box{
        margin-bottom: 20px;
    }
    .footer_contact{
        padding-top: 10px;
    }
    .tnp-subscription label{
        color: #fff !important;
    }
    .footer_box p{
        margin-bottom: 10px;
    }
    .footer_logo{
        display: block;
    }
    section.gallery{
        padding: 30px 0;
    }
    .test_front h1{
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 25px;
    }
    .product_box_products_content .content{
        width: 100%;
    }
    .product_box_products_content{
        display: block;
    }
    .title h1{
        font-size: 60px;
    }
    .steps {
    padding: 20px 0px 20px;
}
    .step_box{
        display: block;
    }
    .step_box .step_box_content,.step_box .step_box_image{
        width: 100%;
    }
    
    .info_box{
        margin-bottom: 20px;
    display: block;
    text-align: center;
    }
    .info_box .top_contact_box_icon img{
        width: 30px;
    }
    .button_solid a{
        padding: 3px 25px;
        font-size: 13px;
    }
    .banner_text_box h4{
        font-size: 25px;
    }
    .banner_text_box h3{
        font-size: 30px;
    }
    .banner_text_box h1{
        font-size: 26px;
        font-weight: bold;
    }
    .banner_text{
        width: 100%;
    }
    .banner_text_box p{
        display: none;
    }
    .top_contact .top_contact_box_icon img{
        display: none;
    }
    .top_contact_box_content a{
        font-size: 13px;
        word-break: break-all;
    }
    .top_contact_box_icon{
        margin-right: 0px;
    }
    .top_contact_box{
        justify-content: flex-start;
    }

}

@media screen and (max-width: 321.98px) {

}




.uscart a img{
	width:25px;
}