@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kb d, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, input, textarea, select, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	font-family: 'Open Sans', sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	margin: 0;
	padding: 0;
	outline: 0;
	scrollbar-width: thin;
	scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  	width: 8px;
	background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  	background-color: #c1c1c1;
	border: 1px solid #fff;
}
::-moz-selection {
 	color: #fff;
 	background: #9b2023;
}
::selection {
	color: #fff;
	background: #9b2023;
}
img {
	max-width: 100%;
	height: auto !important;
	image-rendering: -webkit-optimize-contrast;
}
.trs {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.form-control::placeholder {
	color: #888;
	opacity: 1 !important;
	font-size: 15px;
}
::-webkit-input-placeholder {
 	color: #888;
 	opacity: 1 !important;
	font-size: 15px;
}
:-moz-placeholder {
 	color: #888;
 	opacity: 1 !important;
	font-size: 15px;
}
::-moz-placeholder {
 	color: #888;
 	opacity: 1 !important;
	font-size: 15px;
}
:-ms-input-placeholder {
 	color: #888;
 	opacity: 1 !important;
	font-size: 15px;
}
select:required:invalid {
	color: #888 !important;
}
:focus {
	outline: none !important;
	box-shadow: none !important;
}
a, a:hover {
	text-decoration: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
 	transition: background-color 5500s ease-in-out 0s;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	cursor: pointer !important;
	color: #333 !important;
}
select::-ms-expand {
 	display: none;
}
input[type="text"], input[type="email"], input[type="password"], input[type="file"], input[type="date"], textarea, select {
	outline: none !important;
	box-shadow: none !important;
	font-size: 14px !important;
	background-color: transparent !important;
	color: #333;
	border: 1px solid #e5e5e5 !important;
}
.form-control:focus, .form-select:focus {
    border-color: #9b2023;
	box-shadow: none !important;
}
textarea {
	resize: none;
	line-height: 26px !important;
}
.form-floating > textarea.form-control {
	min-height: calc(8em + (0.75rem + 2px));
}
.form-floating > label {
	font-size: 15px;
	color: #999;
}
.form-floating>.form-control:focus~label {
	color: #333;
}
.form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after{
	background-color: #f5f5f5;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
b, strong {
    font-weight: 600;
}
.form-check-input:checked {
    color: #fff;
    border-color: transparent;
    background-color: #9b2023;
}
.form-check-input:focus {
    border-color: rgba(225, 116, 0, 0.3);
    outline: 0;
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(225, 116, 0, 0.3);
}
.form-check, .form-check-input {
	cursor: pointer;
}
.videobtn {
	width: 80px;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	-ms-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	cursor: pointer;
  	text-align: center;
	border-radius: 50%;
	transition: all .3s ease-in-out;
}
.video-btn {
	background: none;
    border: none;
	padding: 0;
}
.video-btn:hover .videobtn {
	-ms-transform: translate(-50%, -50%) scale(1.2);
  	transform: translate(-50%, -50%) scale(1.2);
}
.vert_move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes fadeIn {
  	0% { opacity: 0; }
  	100% { opacity: 1; }
}
.shine_ani:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)), to(rgba(255,255,255,0.15)));
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 1
}
.shine_ani:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
@-webkit-keyframes shine {
    100% {left: 125%}
}
@keyframes shine {
    100% {left: 125%}
}
/***************************** header *****************************/
.livechat {
	width: 60px;
	height: 60px;
	bottom: 50px;
	right: 15px;
	z-index: 10;
	padding: 0;
	background:#9b2023;
	border-radius: 50%;
}
.livechat i {
	color: #fff;
	font-size: 30px;
}
.top {
	width: 100%;
	height: 35px;
	float: left;
    background: #fff;
}
.top_search input[type="text"] {
  	width: 20px;
	float: right;
  	box-sizing: border-box;
  	font-size: 14px !important;
  	background-color: white;
  	background-image: url('../images/search_icon.svg');
  	background-position: 5px;
	background-size: 16px;
  	background-repeat: no-repeat;
  	padding: 4px 0px 4px 30px;
	border: none !important
}
.top_search input[type="text"]:hover, .top_search input[type="text"]:focus {
  	width: 250px;
	border: 1px solid #aaa !important;
}
.top .dropdown .btn {
    border-color: #fff !important;
	font-size: 14px;
    font-weight: 600;
}
.top .dropdown .dropdown-menu {
    z-index: 9999;
    min-width: 5rem;
}
.top .dropdown .btn:hover {
	color: #9b2023;
}
.header {
	height: 55px;
	padding: 5px 0;
	background: #fff;
	position: absolute;
	top: 35px;
}
.s_header {
	height: 55px;
	padding: 5px 0;
	background: rgba(255, 255, 255, 1);
	position: fixed;
	top: 0;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	animation: fadeIn 2s ease-in-out;
}
.header .logo img {
	width: 170px;
	margin: -32px 0 0 0;
}
.s_header .logo img {
	width: 130px;
	margin: 0;
}
/***************************** Menu *****************************/
.navbar-nav.sm-collapsible .sub-arrow {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -0.7em 0.5em 0 0;
	border-radius: .25rem;
	padding: 0;
	width: 2em;
	height: 1.4em;
	font-size: 1.25rem;
	line-height: 1.2em;
	text-align: center;
}
.navbar-nav.sm-collapsible .sub-arrow::before {
	content: '+';
}
.navbar-nav.sm-collapsible .show > a > .sub-arrow::before {
	content: '-';
}
.navbar-dark .navbar-nav.sm-collapsible .nav-link .sub-arrow {
	border-color: rgba(255, 255, 255, .1);
}
.navbar-nav.sm-collapsible .has-submenu {
	padding-right: 3em;
}
.navbar-nav.sm-collapsible .nav-link,
.navbar-nav.sm-collapsible .dropdown-item {
	position: relative;
}
.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-left: .3em solid transparent;
}
.fixed-bottom .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow,
.fixed-bottom .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-toggle::after {
	border-top: 0;
	border-bottom: .3em solid;
}
.navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow,
.navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	margin-top: -.3em;
	margin-right: 1em;
	border-top: .3em solid transparent;
	border-bottom: .3em solid transparent;
	border-left: .3em solid;
}
.navbar-nav:not(.sm-collapsible) .dropdown-item.has-submenu {
	padding-right: 2em;
}
.navbar-nav .scroll-up,
.navbar-nav .scroll-down {
	position: absolute;
	display: none;
	visibility: hidden;
	height: 20px;
	overflow: hidden;
	text-align: center;
}
.navbar-nav .scroll-up-arrow,
.navbar-nav .scroll-down-arrow {
	position: absolute;
	top: -2px;
	left: 50%;
	margin-left: -8px;
	width: 0;
	height: 0;
	overflow: hidden;
	border-top: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid;
	border-left: 7px solid transparent;
}
.navbar-nav .scroll-down-arrow {
	top: 6px;
	border-top: 7px solid;
	border-right: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 7px solid transparent;
}
.navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
	margin: .5em;
}
.navbar-nav:not([data-sm-skip]) .dropdown-item {
	white-space: normal;
}
.navbar-nav:not(.sm-collapsible) .sm-nowrap > li > .dropdown-item {
	white-space: nowrap;
}
.navbar .has-megamenu {
	position: static!important;
}
.navbar .megamenu {
	padding: 1rem;
	left: auto !important;
	width: 650px !important;
	max-width: 650px !important;
}
.has-megamenu:hover .megamenu {
    visibility: visible;
}
.navbar .megamenu .dropdown-item {
	text-align: center;
	padding: 8px 0;
}
.navbar-nav:not(.sm-collapsible) .has-megamenu .dropdown-item .sub-arrow {
	top: auto;
	margin-top: 8px;
}
.navbar {
	width: 100%;
	float: left;
	padding-top: 0;
	padding-bottom: 0;
}
.navbar-nav > li > a {
    color: #333;
    display: block;
    position: relative;
    padding: 15px 20px !important;
    font-size: 15px;
    font-weight: 700;
	letter-spacing: 1px;
}
.navbar-nav > li > a:hover, .navbar-nav li.active a {
	color: #9b2023;
}
.navbar-nav li.active a:before, .navbar-nav li a:before {
    position: absolute;
    bottom: 11px;
    left: 0;
	right: 0;
	margin: 0 auto;
    color: transparent;
    content: "";
    height: 1px;
    width: 40%;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(0);
   	transform: scale(0);
	background: #9b2023;
}
.navbar-nav li.active a:before {
    visibility: visible;
    -webkit-transform: scale(1);
   	transform: scale(1);
}
.navbar-nav li a:hover:before {
    visibility: visible;
    -webkit-transform: scale(1);
   	transform: scale(1);
}
.dropdown-item {
    width: auto;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: 0 !important;
	padding: 8px;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover, .dropdown-item:focus {
	color: #9b2023;
    background-color: #fff !important;
}
.dropdown-menu {
	animation: fadeIn 1s;
	padding: 0;
}
.menu_icon {
    width: 32px;
	float: right;
    padding: 0;
	display: none;
	border: none;
	z-index: 9;
}
.menu_icon > span {
	height: 2px;
	float: left;
  	background: #333;
  	margin: 3px 0;
}
.menu_icon:hover span {
	width: 100% !important;
}
.menu-close {
    width: 40px;
    height: 40px;
	border: none;
    z-index: 9;
    position: relative;
    background: #f4f4f4;
    border-radius: 50%;
}
.nav-link, .dropdown-item {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
/***************************** btn *****************************/
.send_btn {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
    padding: 10px 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	letter-spacing: 1px;
	border: 1px solid #fff;
	display: inline-block;
}
.send_btn:hover {
	border: 1px solid #9b2023;
    background: #fff;
    color: #9b2023;
}
/***************************** Banner *****************************/
.banner {
	width: 100%;
	float: left;
	position: relative;
	margin-top: 55px;
}
.carousel, .carousel-inner, .carousel-inner .carousel-item img {
	width: 100%;
  	height: 90vh !important;
  	object-fit: cover;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}
.carousel-control-next, .carousel-control-prev {
	width: 5% !important;
}
.carousel-indicators li {
	cursor: pointer;
}
.carousel-indicators [data-bs-target] {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
/***************************** hm_products *****************************/
.hm_products {
    width: 100%;
    float: left;
    padding: 30px 0 70px 0;
    background: #fff;
}
.hm_products h3 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	margin: 0 0 10px 0;
}
.hm_products h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
}
.hm_products img {
    height: 200px !important;
	object-fit: contain !important;
}
.hm_product_box1 {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
	padding: 20px;
	display: flex;
    overflow: hidden;
}
.hm_product_box2 {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
	padding: 20px;
	display: flex;
    overflow: hidden;
}
.hm_product_box3 {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
	padding: 20px;
	display: flex;
    overflow: hidden;
}
/***************************** welcome *****************************/
.welcome {
    width: 100%;
    float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
.welcome h1 {
    width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #333;
	line-height: 45px;
}
.welcome h4 {
    width: 100%;
	float: left;
	font-weight: 400;
	font-size: 16px;
	line-height: 35px;
	color: #333;
	text-align: justify;
	margin: 20px 0;
	hyphens: auto;
}
/***************************** top_products *****************************/
.top_products {
    width: 100%;
    float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
.top_products h2 {
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #333;
	line-height: 35px;
}
.top_products .nav-link {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
}
.top_products .nav-link:hover, .top_products .nav-link.active {
	color: #9b2023;
}
.top_products_box {
    width: 100%;
	min-height: 300px;
	float: left;
	background: #f5f5f5;
	padding: 20px;
	position: relative;
}
.top_products_box img {
	max-height: 200px;
}
.top_products_box .top_products_title {
	width: 100%;
    height: 100%;
	position: absolute;
    top: 0;
    left: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	flex-wrap: wrap;
    align-content: end;
	background-image: linear-gradient(to right, rgba(155, 32, 35, 0.5) , rgba(238, 66, 80, 0.5));
	padding: 10px;
	opacity: 0;
}
.top_products_box:hover .top_products_title {
	opacity: 1;
}
.top_products_title h3 {
	width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin: 0 0 5px 0;
}
.top_products_title h4 {
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}
.top_products .nav {
	justify-content: flex-end;	
}
/***************************** video *****************************/
.video {
    width: 100%;
    float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
/***************************** top_products2 *****************************/
.top_products2 {
    width: 100%;
    float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
.top_products2_box .top_products2_title {
	width: 100%;
    height: 100%;
	position: absolute;
    top: 0;
    left: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	flex-wrap: wrap;
    align-content: end;
	background-image: linear-gradient(to right, rgba(155, 32, 35, 0.5) , rgba(238, 66, 80, 0.5));
	padding: 10px;
	opacity: 0;
}
.top_products2_box:hover .top_products2_title {
	opacity: 1;
}
.top_products2_title h3 {
	width: 100%;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin: 0 0 5px 0;
}
.top_products2_title h4 {
	width: 100%;
	float: left;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}
/***************************** Latest News *****************************/
.hm_news {
    width: 100%;
    float: left;
    background: #fff;
}
.hm_news h2 {
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
}
.hm_news h3 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin: 10px 0;
}
.hm_news h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;
    hyphens: auto;
}
.hm_news h5 {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 12px;
    color: #9b2023;
}
.hm_news .swiper {
	top: -50px;
	padding-top: 60px;
    position: relative;
}
.hm_news .swiper-button-next, .hm_news .swiper-button-prev {
	width: auto !important;
	top: 30px !important;
	bottom: 0;
}
.hm_news .arbnext {
	left: 30px !important;
    right: auto !important;
}
.hm_news .arbprev {
	right: auto !important;
	left: 0 !important;
}
.hm_news .engnext {
	right: 0 !important;
    left: auto !important;
}
.hm_news .engprev {
	left: auto !important;
	right: 30px !important;
}
.hm_news .swiper-button-next::after, .hm_news .swiper-button-prev::after {
	font-size: 18px !important;
	font-weight: bold;
	color: #333;
	text-align: center;
	font: var(--fa-font-solid);
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}
.hm_news .swiper-button-next::after {
    content: "\f178";
}
.hm_news .swiper-button-prev::after {
    content: "\f177";
}
/***************************** innerbanner *****************************/
.innerbanner {
    width: 100%;
	float: left;
	position: relative;
	margin-top: 55px;
}
.innerbanner_bg {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}
.breadcrumb_bg {
	background: #f5f5f5;
}
.breadcrumb-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
	font-size: 14px;
	color: #9b2023 !important;
}
.breadcrumb-item a, .breadcrumb-item+.breadcrumb-item::before {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
	font-size: 14px;
	color: #666;
}
.breadcrumb-item a i {
	font-size: 13px;
}
.breadcrumb-item a:hover {
	color: #9b2023;
}
/***************************** about *****************************/
.about {
    width: 100%;
	float: left;
    padding: 70px 0;
    background: #fff;
}
.about h1 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 20px 0;
}
.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 45px;
	margin: 0 0 20px 0;
}
.about h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;
    hyphens: auto;
}
.about h4 p {
	margin: 0 0 15px 0;
}
.why_choose_us {
    width: 100%;
	float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
.why_choose_us h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
	text-align: center;
	margin: 0 0 30px 0;
    line-height: 35px;
}
.why_choose_us img {
    width: 50px;
    height: 50px !important;
    float: left;
}
.why_choose_us h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #333;
    margin: 0 0 10px 0;
}
.why_choose_us h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #333;
    text-align: justify;
    hyphens: auto;
}
/***************************** newlaunch *****************************/
.newlaunch {
    width: 100%;
	float: left;
    padding: 70px 0;
    background: #fff;
}
.newlaunch h1 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 20px 0;
}
.newlaunch h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
    hyphens: auto;
}
.newlaunch h4 p {
	margin: 0 0 15px 0;
}
.newlaunch_section2 {
    width: 100%;
    display: flex;
    background: #fff url("../images/newlaunch.jpg") no-repeat center center;
    background-size: cover;
	background-attachment: fixed;
}
.newlaunch_section2_bg {
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 150px 0;
}
.newlaunch_section2 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.newlaunch_section2 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #fff;
    text-align: justify;     hyphens: auto;
}
.newlaunch_section3 {
    width: 100%;
    display: flex;
    background: #fff url("../images/newlaunch_section3_bg.svg") no-repeat center center;
    background-size: cover;
    padding: 70px 0;
}
.newlaunch_section3 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.newlaunch_section3 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.newlaunch_section3 h4 p {
    margin: 0 0 15px 0;
}
.newlaunch_section4 {
    width: 100%;
	float: left;
    background: #fff;
}
.newlaunch_section4 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.newlaunch_section4 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.newlaunch_section4 h4 p {
    margin: 0 0 15px 0;
}
.newlaunch_section5 {
    width: 100%;
	float: left;
    background: #fff;
	padding: 70px 0;
}
.newlaunch_section5 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.newlaunch_section5 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.newlaunch_section5 h4 p {
    margin: 0 0 15px 0;
}
/***************************** products *****************************/
.products {
    width: 100%;
	float: left;
    padding: 0 0 70px 0;
    background: #fff;
}
.products h1 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.products h4 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #666;
    margin: 0 0 20px 0;
	letter-spacing: .5px;
}
.products h5 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    margin: 20px 0;
	letter-spacing: .5px;
}
.products ul {
    width: 100%;
    float: left;
	list-style: none;
}
.products ul li a {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    margin: 15px 0;
	letter-spacing: .5px;
	display: flex;
    justify-content: space-between;
}
.products ul li a i{
    margin-top:5px;
}

.subcat_drop_main{
    height:0;
    overflow: hidden;
    opacity: 0;
    transition: all 1s;
}
.products ul li a span {
    color: #b3b3b3;
}
.products ul li a:hover, .products ul li a:hover span {
	color: #9b2023;
}
.products ul li .active, .products ul li .active span {
	color: #9b2023;
}
.products_box {
    width: 100%;
	min-height: 300px;
	float: left;
	background: #f5f5f5;
	padding: 10px;
	position: relative;
}
.products_box img {
	max-height: 200px;
}
.products_box:hover img {
    margin: -10px 0 0 0;
}
.products h3 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin: 20px 0 0 0;
	letter-spacing: .5px;
}
.off_categories_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
	position: relative;
	z-index: 9;
	padding: 0;
    margin: 0 0 20px 0;
	border: none;
}
.products .offcanvas {
	width: 300px !important;
	border-left: none !important;
}
.products .offcanvas-body::-webkit-scrollbar {
	width: 8px;
	background: #f1f1f1;
}
.products .offcanvas-body::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
	border: 1px solid #fff;
}
#off_categories .btn-close {
    width: 40px;
    height: 40px;
    border: none;
    z-index: 9;
    position: relative;
    background: #f4f4f4;
    border-radius: 50%;
}
.products .form-check label {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    letter-spacing: .5px;
	line-height: 26px;
	cursor: pointer;
}
.products .form-check label:hover {
	color: #9b2023;
}
/***************************** product details *****************************/
.product_details {
    width: 100%;
	float: left;
    padding: 55px 0 70px 0;
    background: #fff;
}
.product_details .thumb a {
  	width: 18%;
  	float: left;
	margin: 0 1%;
  	transition: opacity .25s ease-out;
    height: 120px;
    padding: 10px;
    position: relative;
}
.product_details .thumb a img {
	max-height: 80px;
  	opacity: .4;
}
.product_details .thumb a .videobtn {
	width: 25px;
}
.product_details .thumb:hover a img, .product_details .thumb.active a img {
  	opacity: 1;
}
.product_details .zoom {
	width: 100%;
	max-height: 400px;
	float: left;
    text-align: center;
  	display: inline-block;
}
.product_details .zoom .zooming_img {
	max-height: 400px !important;
}
.product_details .zoom:hover .zooming_img {
	opacity: 0;
}
.product_details .zoom .zoomImg {
	background: #fff;
}
.product_details .thumbnails {
	width: 100%;
    float: left;
    margin: 20px 0 0 0;
}
.product_details h2 {
	width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #333;
	margin: 10px 0 0 0;
    line-height: 35px;
}
.product_details h3 {
	width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
	margin: 20px 0 10px 0;
	padding: 0;
    line-height: 35px;
}
.product_details h5 {
	width: 100%;
    float: left;
	font-size: 15px;
	font-weight: 400;
	color: #808080;
}
.product_details h6 button {
    float: left;
	font-size: 14px;
	font-weight: 400;
	color: #666;
}
.product_details ul {
	width: 100%;
    float: left;
	padding: 0 0 0 18px;
}
.product_details ul li {
	width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.product_details .accordion-button:not(.collapsed) {
	color: #333;
	background-color: #fff;
	box-shadow: none;
}
.accordion-button::after {
	width: 15px;
    background-size: 100% 100%;
    margin: 0 0 0 10px;
}
.product_share a {
	width: 100%;
	height: 30px;
	font-size: 16px;
	display: flex;
	color: #fff;
	margin: 0 0 10px 0;
	text-align: center;
	align-items: center;
    justify-content: center;
	border-radius: 5px;
}
.product_share span {
	width: 100%;
	float: left;
    font-weight: 400;
    font-size: 16px;
    color: #333;
	line-height: 35px;
	margin: 0 0 10px 0;
}
.product_share a:hover {
	transform: scale(1.2);
}
.product_share a.fb {
	background: #38548f;
}
.product_share a.tw {
	background: #55acee;
}
.product_share a.im {
	background: #fb3958;
}
.product_share a.in {
	background: #0976b4;
}
.product_share a.wa {
	background: #34af23;
}
.similar_products {
	width: 100%;
    float: left;
    background: #fff;
}
.similar_products h3 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
	margin: 0 0 10px 0;
	padding: 0;
    line-height: 35px;
}
.similar_products_box {
    width: 100%;
	min-height: 300px;
	float: left;
	background: #f5f5f5;
	padding: 10px;
	position: relative;
}
.similar_products_box img {
	max-height: 200px;
}
.similar_products_box:hover img {
    margin: -10px 0 0 0;
}
.similar_products h4 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 30px;
    color: #333;
    margin: 10px 0;
	text-align: center;
}
.similar_products h5 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    color: #666;
    text-align: justify;     hyphens: auto;
	text-transform: uppercase;
}
.similar_products .swiper {
	top: -50px;
	padding-top: 60px;
    position: relative;
}
.similar_products .swiper-button-next, .similar_products .swiper-button-prev {
	width: auto !important;
	top: 25px !important;
	bottom: 0;
}
.similar_products .arbnext {
	left: 30px !important;
    right: auto !important;
}
.similar_products .arbprev {
	right: auto !important;
	left: 0 !important;
}
.similar_products .engnext {
	right: 0 !important;
    left: auto !important;
}
.similar_products .engprev {
	left: auto !important;
	right: 30px !important;
}
.similar_products .swiper-button-next::after, .similar_products .swiper-button-prev::after {
	font-size: 18px !important;
	font-weight: bold;
	color: #333;
	text-align: center;
	font: var(--fa-font-solid);
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}
.similar_products .swiper-button-next::after {
    content: "\f178";
}
.similar_products .swiper-button-prev::after {
    content: "\f177";
}
/***************************** News & Events *****************************/
.news_events {
    width: 100%;
	float: left;
    padding: 70px 0;
    background: #fff;
}
.news_events h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 30px 0;
}
.news_box h3 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin: 10px 0;
}
.news_box h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.news_box h5 {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 12px;
    color: #9b2023;
}
/***************************** News Details *****************************/
.news_details {
    width: 100%;
	float: left;
    padding: 70px 0;
    background: #fff;
}
.news_details h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 30px 0;
}
.news_details h3 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #333;
    margin: 20px 0;
}
.news_details h5 {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 14px;
    color: #9b2023;
}
.news_details_img{
	background: #f5f5f5;
}
.news_content {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
	text-align: justify;     hyphens: auto;
}
.news_content p {
	margin: 0 0 15px 0;
}
.news_content ul, .news_content ol {
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #333;
    margin: 0 0 20px 0;
}
.news_content ul li:before {
	width: 17px;
    content: "\2756";
    color: #9b2023;
    font-size: 15px;
    font-weight: 600;
	display: inline-block;
}
.news_content_eng ul, .news_content_eng ol {
    padding: 0 0 0 15px;
}
.news_content_arb ul, .news_content_arb ol {
	padding: 0 15px 0 0;
}
.news_content_eng ul li:before {
    margin-left: -17px;
}
.news_content_arb ul li:before {
    margin-right: -17px;
}
.news_content ul li {
    margin: 0 0 5px 2px;
    line-height: 35px;
	list-style: none;
	text-align: justify;     hyphens: auto;
}
.news_content ol li {
    margin: 0 0 15px 2px;
    line-height: 35px;
	text-align: justify;     hyphens: auto;
}
/***************************** business *****************************/
.business {
    width: 100%;
	float: left;
    padding: 70px 0 0 0;
    background: #fff;
}
.business h1 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 20px 0;
}
.business h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 45px;
}
.business h4 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.business h4 p {
	margin: 0 0 15px 0;
}
.business_section1 {
    width: 100%;
    float: left;
    background: #fff;
    padding: 70px 0;
}
.business_section1 h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
    margin: 0 0 20px 0;
}
.business_section1 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
}
.business_section1 h4 p {
    margin: 0 0 15px 0;
}
.business_section1 img {
	position: -webkit-sticky;
	position: sticky;
	top: 70px;
}
.clients {
	width: 100%;
    float: left;
    background: #fff;
    padding: 0 0 70px 0;
}
.clients h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
    margin: 0 0 30px 0;
	text-align: center;
}
.clients img {
	width: 150px;
	padding: 10px;
}
/***************************** Contact Us *****************************/
.contact {
    width: 100%;
	float: left;
    padding: 70px 0;
    background: #fff;
}
.contact h1 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #333;
    line-height: 35px;
	margin: 0 0 20px 0;
}
.contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 35px;
}
.contact h3 {
    width: 100%;
    float: left;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #4d4d4d;
}
.contact h4, .contact h4 a {
    width: 100%;
	float: left;
    font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: #333;
	line-height: 22px;
}
.contact h4 a:hover {
	color: #9b2023;
	text-decoration: none;
}
.contact h5 {
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
    color: #333;
    text-align: justify;     hyphens: auto;
    margin: 5px 0 20px 0;
}
.contact_icon {
	width: 70px;
	height: 70px;
    float: left;
    margin: 0 20px 0 0;
	text-align: center;
}
.contact_icon img {
    width: 25px;
}
.contact_address {
    overflow: hidden;
    width: calc(100% - 70px);
}
.contact form textarea {
    height: 220px !important;
	background-color: #f5f5f5 !important;
	border: none !important;
	border-radius: 0px;
}
.contact form input {
	background-color: #f5f5f5 !important;
	border: none !important;
	border-radius: 0px;
}
.support {
	width: 100%;
	height: 100%;
    float: left;
    padding: 30px;
    background: #f5f5f5;
	align-content: space-between;
}
/***************************** not_found *****************************/
.not_found {
	width: 100%;
	float: left;
	padding: 70px 0;
	background: #fff;
}
.not_found h4 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
	text-align: center;
	letter-spacing: 1px;
}
/***************************** footer_product *****************************/
.footer_product h3 {
    width: 100%;
    float: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 17px;
	color: #fff;
	margin: 0 0 10px 0;
	line-height: 26px;
}
.footer_product h3 span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
.footer_product_box1 {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
	padding: 10px;
	display: flex;
    overflow: hidden;
	text-align: center;
}
.footer_product_box1_img1 {
    margin: 0 0 -20px -10px;
}
.footer_product_box2 {
	background-color: #9b2023;
    background-image: linear-gradient(to right, #9b2023 , #ee4250);
	padding: 10px;
	display: flex;
    overflow: hidden;
}
/************************* footer *************************/
.footer {
    width: 100%;
    float: left;
	padding: 0 50px;
	background: #fff;
}
.footer_bg {
    width: 100%;
    float: left;
	padding: 50px 0;
	background: #f5f5f5;
}
.footer h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #333;
	margin: 20px 0;
}
.footer h5 {
	font-weight: 600;
	font-size: 15px;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 30px;
}
.footer .input-group .btn:hover i {
	color: #9b2023;
}
.address {
	width: 100%;
	float: left;
	color: #fff;
}
.address_box {
    width: auto;
	line-height: 30px;
	font-weight: 400;
	font-size: 15px;
	color: #333;
}
.address a {
	line-height: 33px;
	font-weight: 600;
	font-size: 15px;
	color: #333;
}
.address a:hover {
	color: #9b2023;
	text-decoration: none;
}
.address i {
	margin: 0 3px 0 0;
	font-size: 13px;
}
.footer ul li {
    margin: 15px 0 0 0;
    line-height: 32px;
    list-style: none;
}
.footer ul li a {
	color: #333;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 0 0 0;
}
.footer ul li a:hover {
	color: #9b2023;
}
.footer ul li .active {
	color: #9b2023;
}
.footer_mapicon {
    float: left;
	margin: 4px 8px 0 0;
	line-height: 20px;
}
.footer_mapicon::before {
    font: var(--fa-font-solid);
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    content: "\f279";
	color: #333;
	font-size: 15px;
}
.footer_phicon {
    float: left;
	margin: 8px 8px 0 0;
	line-height: 20px;
}
.footer_phicon::before {
    font: var(--fa-font-solid);
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    content: "\f095";
	color: #333;
	font-size: 15px;
}
.footer_mailicon {
    float: left;
	margin: 8px 8px 0 0;
	line-height: 20px;
}
.footer_mailicon::before {
	font: var(--fa-font-solid);
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    content: "\f0e0";
	color: #333;
	font-size: 15px;
}
.f_box1 img {
	width: 140px;
}
.f_box1, .f_box5 {
	max-width: 25%;
	padding: 0 15px;
}
.f_box2, .f_box3, .f_box4 {
	max-width: 20%;
	padding: 0 15px;
}
/***************************** copyright *****************************/
.copyright_bg {
	width: 100%;
	float: left;
	padding: 13px 0;
	background: #fff;
}
.copyright {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 24px;
	text-align: center;
	letter-spacing: .5px;
}
.copyright a {
    color: #333;
}
.copyright a:hover {
    color: #9b2023;
}
/************************* social_media *************************/
.social_media a {
	width: 30px;
	height: 30px;
	font-size: 16px;
	display: inline-flex;
	line-height: 1;
	color: #333;
	margin: 0 3px;
	text-align: center;
	align-items: center;
    justify-content: center;
}
.footer_social a {
	background: #fdfdfd;
}
.social_media a:hover {
	transform: scale(1.2);
}
.social_media a.fb:hover, .social_media a.fb:focus {
	color: #38548f;
}
.social_media a.tw:hover, .social_media a.tw:focus {
	color: #55acee;
}
.social_media a.im:hover, .social_media a.im:focus {
	color: #fb3958;
}
.social_media a.yt:hover, .social_media a.yt:focus {
	color: #e52d27;
}
.social_media a.in:hover, .social_media a.in:focus {
	color: #0976b4;
}
.social_media a.be:hover, .social_media a.be:focus {
	color: #0067ff;
}
.social_media a.wa:hover, .social_media a.wa:focus {
	color: #34af23;
}
/*******************************scrollToTop*******************************/
#scroll {
    position:fixed;
    right:5px;
    bottom:5px;
    cursor:pointer;
    width:30px;
    height:40px;
    background-color:rgba(0, 0, 0, 0.5);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:20px;
	z-index: 999;
	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-ms-transition: background-color .3s ease-in-out;
	-o-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#9b2023;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
/***************************** Popup *****************************/
.modal-header {
	background: rgba(0, 0, 0, 0.7);
    padding: 4px 20px 8px 20px;
    text-align: center;
    position: relative;
}
.modal-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    display: block;
    background: linear-gradient(to right, rgba(0, 128, 0, 0.7), rgba(0, 0, 255, 0.6), rgba(75, 0, 130, 0.6), rgba(238, 130, 238, 0.6), rgba(255, 0, 0, 0.6), rgba(255, 165, 0, 0.6), rgba(255, 255, 0, 0.6));
}
.modal-title {
	width: 100%;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	padding: 0 15px;
}
.modal-header .close {
    padding: 0;
	font-size: 18px;
	color: #f00;
    background: none;
	border: none;
}
.modal-content {
	background: none;
	border: none;
}
.modal-open .modal {
	padding: 0 !important;
}
.video-modal-body {
	background: #000 !important;
	padding: 0;
}
.modal-body {
	background: #fff;
}
.modalclose {
	width: 40px;
    height: 40px;
	position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #f00;
    border-radius: 50%;
	z-index: 9;
    border: none;
}
/***************************** swiper *****************************/
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	height: auto !important;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet {
    background: #fff !important;
}
/***************************** Pagination *****************************/
.pagination_bg .active a, .pagination_bg .page-link:hover {
	background: #9b2023;
	color: #fff;
	border: 1px solid #fff;
}
.pagination_bg .page-link {
	color: #333;
	font-size: 14px;
    font-weight: 400;
}
.pagination_bg .disabled .page-link {
	color: #999;
}
@media (min-width: 200px) and (max-width: 1199.98px) {
	.s_header {
		height: 55px;
		position: fixed;
	}
	.products, .product_details {
		padding: 0 0 70px 0;
	}
	.footer_product_box1_img1 {
		margin: 0 0 0px 0px;
	}
	.f_box1 {
		width: 100%;
		max-width: 100%;
		float: left;
		margin: 0 0 20px 0;
		text-align: center;
	}
}
@media (min-width: 200px) and (max-width: 1199.98px) {
	.navbar .offcanvas {
		width: 300px !important;
		border-left: none !important;
	}
	.navbar .offcanvas-body::-webkit-scrollbar {
		width: 8px;
		background: #f1f1f1;
	}
	.navbar .offcanvas-body::-webkit-scrollbar-thumb {
		background-color: #c1c1c1;
		border: 1px solid #fff;
	}
	.menu_icon {
		display: block;
	}
	.dropdown-item {
    	width: 100%;
		text-align: center;
    	font-size: 14px;
    	font-weight: 600;
	}
	.navbar-nav > li > a {
		text-shadow: none;
		padding: 8px 0 !important;
		text-align: center;
    	border: 1px solid #fff;
		margin: 0 0 15px 0;
    	color: #333 !important;
	}
	.navbar-nav li.active a:before, .navbar-nav li a:before {
		height: 0;
	}
	.navbar-nav > li.active > a, .navbar-nav > li > a:hover, .navbar-nav > li > a:focus, .navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
		background: #9b2023;
    	color: #fff !important;
    	border-radius: 10px;
    	border: 1px solid #9b2023;
	}
	.has-megamenu:hover .megamenu {
		display: none;
	}
	.navbar .megamenu {
		max-width: 100% !important;
	}
}
@media (min-width: 200px) and (max-width: 991.98px) {
	.welcome h1 {
		margin: 10px 0;
	}
	.welcome img {
		max-width: 400px;
		margin: 0 auto;
	}
	.top_products_box .top_products_title, .top_products2_box .top_products2_title {
		background: rgba(0, 0, 0, 0.1);
		background-image: linear-gradient(rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 90%);
		opacity: 1;
	}
	.top_products_title h3, .top_products_title h4, .top_products2_title h3, .top_products2_title h4 {
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	}
	.newlaunch_section4 .container-fluid {
		max-width: 720px;
	}
	.business_section1 img {
		position: -webkit-static;
    	position: static;
	}
	.footer_product_box1_img1 {
		margin: 0 0 -20px -10px;
	}
	.f_box2, .f_box3, .f_box4, .f_box5 {
		width: 50%;
		max-width: 50%;
		float: left;
	}
}
@media (min-width: 200px) and (max-width: 767.98px) {
	.newlaunch_section4 .container-fluid {
		max-width: 540px;
	}
}
@media (min-width: 200px) and (max-width: 575.98px) {
	.s_header {
		padding: 2px 0;
	}
	.welcome h1, .top_products h2, .hm_news h2, .about h1, .about h2, .products h1, .business h1, .business h2, .why_choose_us h2, .newlaunch h1, .news_events h1, .news_details h1, .contact h1 {
		width: 100%;
		font-size: 22px;
		line-height: 35px;
	}
	.hm_products, .about, .news_events, .news_details, .contact {
    	padding: 30px 0 70px 0;
	}
	.newlaunch, .business, .business_section1 {
    	padding: 30px 0 15px 0;
	}
	.contact h2 {
    	font-size: 18px;
	}
	.top_products .nav {
		width: 100%;
    	float: left;
		justify-content: center;
		margin: 20px 0 0 0;
	}
	.hm_news .swiper-button-next, .hm_news .swiper-button-prev, .similar_products .swiper-button-next, .similar_products .swiper-button-prev {
		display: none;
	}
	.newlaunch_section4 .container-fluid {
		max-width: 100%;
	}
	.footer {
    	padding: 0;
	}
	.copyright {
    	font-size: 13px;
	}
}
@media (min-width: 200px) and (max-width: 480.98px) {
	.header .logo img {
		width: 120px;
		margin: 0;
	}
	.s_header .logo img {
		width: 100px;
	}
	.header {
		height: 45px;
		top: 35px;
	}
	.s_header {
		height: 45px;
		top: 0;
	}
	.send_btn {
		width: 100%;
		float: left;
		text-align: center;
	}
	.videobtn {
		width: 40px;
	}
	.top_products_title h3, .top_products2_title h3 {
		font-size: 16px;
	}
	.top_products_title h4, .top_products2_title h4 {
		font-size: 14px;
	}
	.address a {
		word-break: break-all;
	}
	.footer_product_box1, .footer_product_box2 {
		display: block;
	}
	.footer_product h3 {
		margin: 20px 0;
		text-align: center;
	}
	.xsm-100 {
		width: 100%;
	}
	.footer_product_box1 img {
		max-width: 200px;
	}
	.f_box4, .f_box5 {
		width: 100%;
		max-width: 100%;
	}
}
@media (min-width: 200px) and (max-width: 350.98px) {
	.top_search input[type="text"]:hover {
		width: 200px;
	}
	.f_box1, .f_box2, .f_box3, .f_box4, .f_box5 {
		width: 100%;
		max-width: 100%;
		float: left;
		text-align: center;
		padding: 0;
	}
	.footer .order-2 {
		order: 4!important;
	}
	.xxsm-100 {
		width: 100%;
	}
}

.custdivtitle{
	width: 100%;
    justify-content: space-between;
}

.custdivtitle h1{
	width: 60%;
	margin: 0;
}
.custdivtitle a{
	margin-top: 0px!important;
}

.custdivtitlenew{
	width: 100%;
    justify-content: space-between;
}
.custdivtitlenew h1{
	width: 60%;
	margin: 0;
}
.custdivtitlenew a{
	margin-top: 0px!important;
}

@media (max-width:767px){
	.custdivtitlenew{
		display: block!important;
	}
	.custdivtitlenew h1{
		width: 100%;
		margin-bottom: 15px;
	}
	.custdivtitlenew a{
		width: 100%;
		margin-bottom: 15px;
	}
	.custdivtitle h1{
		width: 50%;
	}
	.custdivtitle a{
		width: 70%;
	}
}

.serv_div_main {
	float: left;
	background-color:#fff;
	border-radius: 10px;
	padding: 15px 20px;
	text-align: center;
}
.serv_div_main img{
    width: 50%;
}
.serv_div_main h4{
	float:none;margin: 0;
	font-size: 22px;
}
.serv_div_main p{
	margin-top: 15px;
	margin-bottom: 20px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #000;
    background-size: 75% 75%;
    border-radius: 3px;
}
.vol_set_button{
    position: absolute;
    background-color:transparent;
    border:none;
    opacity: .5;
    font-size:30px;
    color: #000;
    right: 15%;
    z-index: 99;
    top: 8%;
}

.nav_slide_btn {
    position: absolute;
    z-index: 1;
    top: 28%;
    width: 35px!important;
    padding: 5px 10px;
}

.nav_slide_btn_right {
    right: 0;
}
.nav_slide_btn_left {
    left: 0;
}