@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*
{	
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:16px;
	color:#000
	
}
:root {
  --black-color: #000;
  --white-color: #FFF;  
  --red-color: #E02020;
  --grey-color: #484847;
}

::-webkit-scrollbar {
  width: 8px;
  height: 16px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--red-color);
}
html , body
{
	overflow-x:hidden;
	-webkit-overflow-scrolling: touch;

}
.transition
{
	transition:all 0.5s ease-in-out;
}
body
{
	
}
a {
	color:#0F0707;
	text-decoration:none;
	transition:0.8s;
	-webkit-transition:0.8s;
	-moz-transition:0.8s;
	-o-transition:0.8s;
}
a:hover{
	color:var(--red-color)
}
.displaynone
{
	display:none !important
}
.d-inline-block
{
	display:inline-block
}
.vError
{
	border:red 1px solid !important
}
.form-error
{
    color: red;
    font-size: 10px !important;
}
.h100{
	height:100%
}
.FormResult  , .FormResult1 , .FormResult *, .FormResult1 *, .FormResult2 *
{
	color:green;

}
.dnone
{
	display:none
}
.d-block{
	display:block
}
.d-flex
{
	display:flex;
	flex-wrap: wrap;
}
.italic
{
	font-style:italic
}
.white
{
	color:#FFF
}



.font-12, .font-12 *
{
	font-size:0.75rem
}
.font-13, .font-13 *
{
	font-size:0.8125rem
}
.font-14, .font-14 *
{
	font-size:0.875rem
}
.font-15, .font-15 *
{
	font-size:0.9375rem
}
.font-16, .font-16 *
{
	font-size:1rem
}
.font-17, .font-17 *
{
	font-size:1.0625rem
}
.font-18 , .font-18 *
{
	font-size:1.125rem
}
.font-20, .font-20 *
{
	font-size:1.25rem
}
.font-22, .font-22 *
{
	font-size:1.375rem;
}
.font-24, .font-24 *
{
	font-size:1.5rem
}
.font-25, .font-25 *
{
	font-size:1.5625rem
}
.font-26, .font-26 *
{
	font-size:1.625rem
}
.font-28, .font-28 *
{
	font-size:1.75rem
}
.font-30, .font-30 *
{
	font-size:1.875rem
}
.font-32, .font-32 *
{
	font-size:2rem;
}
.font-35, .font-35 *
{
	font-size:2.1875rem;
}
.font-36, .font-36 *
{
	font-size:2.25rem
}
.font-40, .font-40 *
{
	font-size:2.5rem
}
.font-42, .font-42 *
{
	font-size:2.625rem
}
.font-45, .font-45 *
{
	font-size:2.8125rem
}
.font-50, .font-50 *
{
	font-size:3.125rem;
}
.font-52, .font-52 *
{
	font-size:3.25rem
}
.font-55, .font-55 *
{
	font-size:3.437rem
}
.font-60, .font-60 *
{
	font-size:3.75rem;
}
.font-62, .font-62 *
{
	font-size:3.875rem
}
.font-70, .font-70 *
{
	font-size:4.375rem;
}
.font-80, .font-80 *
{
	font-size:5rem
}
.font-90, .font-90 *
{
	font-size:4.375rem;
}
.font-120, .font-120 *
{
	font-size:7.5rem
}
.text-center
{
	text-align:center
}
.line-height13
{
	line-height:1.3rem
}
.line-height14
{
	line-height:1.4rem
}
.line-height15
{
	line-height:1.5rem
}
.line-height2
{
	line-height:2rem
}
.line-height3
{
	line-height:3rem
}
.line-height4
{
	line-height:4rem
}
.inline-block
{
	display:inline-block
}
.flex-row {
    display: flex !important;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: center;
}
.flex-column {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.trigger{
	width: 35px;
	height: 25px;
	z-index: 999999999;
	cursor:pointer;
	display:none
}

.trigger > div{
	position: relative;
}

.trigger > div > span{
	position: absolute;
	height: 2px;
	width:35px;
	margin:0;
	background: var(--red-color);
	top:0;
	

	transition:.7s;
	-moz-transition:.7s;
	-webkit-transition:.7s;
	left:0
}

.trigger > div > span:nth-child(2){
    top: 9px;


}

.trigger > div > span:nth-child(3){
	top:18px;
}

.trigger > div.close > span:nth-child(1){
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
	top: 11px;
	background:var(--white-color)
}

.trigger > div.close > span:nth-child(2){

	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
	top: 11px;background:var(--white-color)
}
.trigger > div.close > span:nth-child(3){

	display:none
}
.trigger, .sitewrapper{
	transition:.7s;
	-moz-transition:.7s;
	-webkit-transition:.7s;
}

.slideddddd{
	-ms-transform: translate(-320px,0); /* IE 9 */
	-webkit-transform: translate(-320px,0); /* Safari */
	transform: translate(-320px,0); /* Standard syntax */
	
}
.white , .white *
{
	color:#FFF
}
.blur {
    
    background: transparent !important;
}
.z-100
{
	z-index:100
}
.relative
{
	position:relative;
}
b
{
	font-weight:700
}
.txt-justify
{
	text-align:justify
}
.py-75
{
	padding-top:4.6875rem;
	padding-bottom:4.6875rem
}
.py-100
{
	padding-top:6.25rem;
	padding-bottom:6.25rem
}
.pt-100
{
	padding-top:6.25rem;
}
.px-100
{
	padding-right: 6.25rem;
	padding-left: 6.25rem
}
.pl-100
{

	padding-left: 6.25rem
}
.ai-fs
{
	align-items:flex-start
}
.line-20 , .line-20 *
{
	line-height:1.25rem;
}
.line-22 , .line-22 *
{
	line-height:1.375rem
}
.line-24 , .line-24 *
{
	line-height:1.5rem
}
.line-25 , .line-25 *
{
	line-height:1.5625rem
}
.line-30 , .line-30 *
{
	line-height:1.875rem;
}
.line-35 , .line-35 *
{
	line-height:2.1875rem;
}
.line-40 , .line-40 *
{
	line-height:2.5rem;
}
.line-45 , .line-45 *
{
	line-height:2.8125rem;
}
.line-50 , .line-50 *
{
	line-height:3.125rem
}
.line-60 , .line-60 *
{
	line-height:3.75rem
}
.line-70 , .line-70 *
{
	line-height:4.375rem
}

.ai-initial
{
	align-items:initial
}
.ai-c
{
	align-items:center
}
.jc-c
{
	    justify-content: center;
}.jc-fe
{
	    justify-content: flex-end;
}
.ai-fe
{
	align-items:flex-end
}
.z-50
{
	z-index:50
}
.d-inline-block{
	display:inline-block
}
.open_left , .open_right , .area_layer_back 
{
	opacity:0
}
.open_right.aos-animate
{
	animation: 1s ease-in-out  window-fromleft both;
    /* -webkit-animation: 1.25s ease-in-out 0.75s window-fromright both; */
    opacity: 1;
}
.open_left.aos-animate
{
	animation: 1s ease-in-out  window-fromright both;
    /* -webkit-animation: 1.25s ease-in-out 0.75s window-fromright both; */
    opacity: 1;
}
.area_layer_back.aos-animate
{
	opacity: 1;
    animation: 1s ease-in-out  circle-fromcenter-over both;
    -webkit-animation: 1s ease-in-out 0.5s circle-fromcenter-over both;
}
.bg_white
{
	background:#FFF
}
.cur
{
	cursor:pointer
}
.z-70 {
    z-index: 70;
}
.ac-sb
{
		align-content:space-between
}
.jc-fs
{
	    justify-content: flex-start !important;
}
.jc-sb
{
	    justify-content: space-between !important
}
.red-color
{
	color:var(--red-color)
}
.border-right-1
{
	border-right:1px solid #A7A7A7
}
/**************************************************************/
.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.bg-1
{
	background:#F6F6F6
}
.bg-2
{
	background:#EDEDED
}
.color-1
{
	color:#A7A7A7
}
.br-r-30
{
	border-top-right-radius:30px;
	border-bottom-right-radius:30px;
}
.border-bottom-1{
	border-bottom:1px solid #CCCCCC
}
.border-bottom-2{
	border-bottom:1px solid #979797
}
.border-top-1
{
	border-top:1px solid #979797
}
/*///////////////////////////////////////*/
.h_social li a {
    width: 37px;
    height: 37px;
    background:var(--red-color);
    margin-right: 15px;
    border-radius: 50%;
}
.h_social li:last-child a {
    margin-right: 0;
}
.h_social li a span{

	color:var(--white-color);
}
.h_social li a:hover {
    background: var(--black-color);
}
.h_social li a:hover span{
    color: var(--white-color);
}
.footer-menu li
{
	display:block;
	margin-bottom:30px;
}
.footer-menu li:last-child
{
	
}
.f_fa_box
{
    width: 50px;
    height: 50px;
    border:1px solid #000;
    border-radius: 50%;	
}
footer
{
	border-top:20px solid #F6F6F6
}
.menu li
{
	margin:0 15px;
}

.menu li a.active , .menu li a.hover
{
	color: var(--red-color);
}
.search_form  input {
    width: 0 !important;
    height: 22px;
    padding: 0 !important;
    border: 0 !important;
	border-bottom:1px solid #000 !important;
	transition: 0.3s ease-in 0s;
    -moz-transition: 0.3s ease-in 0s;
    -webkit-transition: 0.3s ease-in 0s;
    outline: none;	    
    background: none;
}
.input_search.active {
    width: 150px !important;
}
.search img {
    cursor: pointer;
	width:25px;
}
.breadcrumbs_box
{
	height:150px;
	position:relative;
}
.breadcrumbs_box .img-bg
{
	height:100%;
	width:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:5
}
.bread-crumb li
{
	margin-right:5px;
}
.map{
	position:absolute;
	top:-50px;
	height:calc(100% + 100px);
	right:0;
	z-index:5;
	border-radius:0;
	overflow:hidden
}
.map iframe
{
	width:100%;
	height:100%;
}
.contact_box {
    border: 1px solid #D5D5D5;
    background-color: #FFFFFF;
}
.contact-form label {
    line-height: 1.875rem;
	margin-bottom:5px;
	display: block;
    color: var(--grey-color);
}
.contact-form button[type=submit]
{
	height:50px;
	border-radius:8px;
    background-color: var(--red-color)
}
.contact-form button[type=submit]:hover
{
    background-color: var(--grey-color)
}
button[disabled]
{
	opacity:0.5;
	cursor:inherit
}
.about_box
{
	height:150px;
	position:relative;
	overflow:hidden;
}
.b1
{
	position:absolute;
    top: -85px;
    left: -10px;
	z-index:50;
	border-radius:50%;
  height: 177px;
  width: 177px;
  background-color: var(--red-color);	
}
.b2
{
	position:absolute;
    top: 40px;
    left: 160px;
	z-index:50;
	border-radius:50%;
  height: 88px;
  width: 88px;
  background-color: var(--red-color);	
}
.overflow-hidden
{
	overflow:hidden
}

.h_parallax
{
	position:relative;
	overflow: hidden;
}
.h_parallax .img-bg
{
	height:400px;
	position:relative;
	overflow:hidden
}

.h_parallax .img-bg:before
{

	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	content:'';
	z-index:5;
	background-color: rgba(0,0,0,0.3);

	
}
.h_parallax_text
{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:50
}
.button-style a
{
	background:var(--red-color);
	color:#FFF;
	border-radius:8px;
	display:inline-block
}
.button-style a:hover
{
	background:#000;
	color:#FFF
}
.h_our_products
{
	border-top:2px solid var(--red-color);

}
.cover-opacity-1
{
	position:relative;
}
.cover-opacity-1:before
{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:175px;
	z-index:50;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 100%);
	content:'';	
}

.categories_box_info
{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	z-index:50;
}
.brand_box
{
	border-top:20px solid #EDEDED;
	border-bottom:20px solid #EDEDED
}
.brands_box_image
{
	height:150px;
}
.socam-1
{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	z-index:30;	
}

.p_categories_listing a
{
	background:#E3E0E0;
	color:#000;
	border-radius:8px;
	display:inline-block;
	padding:15px 50px;
	margin-right:10px;

}
.p_categories_listing a:hover , .p_categories_listing a.active
{
	background:var(--red-color);
	color:#FFF
}
.p_products_listing
{
  border: 1px solid #A7A7A7;
  border-radius: 16.5px;	overflow:hidden
}
.p_products_listing .border-top-11
{
	transition:all 0.5s ease-in-out;
}
.p_products_listing1:hover , .p_products_listing:hover .border-top-11{
	border-color:var(--red-color)
}
.p_products_image
{
	height:300px;
	overflow:hidden
}
.filter_select
{
	  border: 1px solid #D8D7D7;
  border-radius: 16.5px;
  height:35px;    padding:0 40px 0 20px;
}
.banners_box:before
{
	position:absolute;
	bottom:0;
	right:0;
	z-index:30;	
	content:'';
	height:300%;	
	width:50%;
	background:#EDEDED;
}
.banners-swiper .swiper-pagination
{
	bottom:-50px;
}
.banners-swiper .swiper-pagination .swiper-pagination-bullet
{
	width:auto;
	height:auto;
	background:none;
	margin:0 15px;
}
.button-style1 a
{
	background:#EFEFEF;
	color:#FFF;
	border-radius:3px;
	display:inline-block
}
.button-style1 a:hover
{
	background:#000;
	color:#FFF
}

 .button-style1 a:hover *
{

	color:#FFF
}





.button-style2 a
{
	background:var(--red-color);
	color:#FFF;
	border-radius:3px;
	display:inline-block
}
.button-style2 a .flex-row
{
	color:#FFF;
}
.button-style2 a:hover
{
	background:#000;
	color:#FFF
}

 .button-style2 a:hover *
{

	color:#FFF
}
.gap-5
{
	gap:5px;
}
.gallery_main
{
	border:1px solid #A7A7A7;
	border-radius:15px;
}

.products-slider-arrow .swiper-button-next:after , .products-slider-arrow .swiper-button-prev:after
{
	display:none
}

.products-slider-arrow .swiper-button-next , .products-slider-arrow .swiper-button-prev
{
	width:110px;
}


.products-slider-arrow .swiper-button-next 
{
	right:-40px;
	top:50%;
}

.products-slider-arrow .swiper-button-prev 
{
	left:-40px;
	top:50%;
}






/*//////////////////////////////////////////////////////////////////*/
.menu li a
{
	transition: color 0.2s, transform 0.2s ease-in-out;    display: inline-block;
}
.menu li a:hover
{
	/*transform: skew(-15deg, 0deg);*/
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// LOADERRRRRRRRR*/
a.tt-link {
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    background-image: -ms-linear-gradient(transparent 100%, currentColor 1px);
    transition: 0.6s cubic-bezier(.215,.61,.355,1) !important;
    background-size: 0 100%;
    border: none;
    opacity: 1;
}
a.tt-link:hover, a.tt-link:focus {
    background-size: 100% 100%;
    opacity: 1;
}

body.tt-transition .ptr-overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #EDEDED;
    z-index: 100;
}
body.tt-transition .ptr-preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 105;
    transform: translate(-50%, -50%);
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// BALLLLLLLLLLLLLL*/
#ball {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    pointer-events: none;
    border-style: solid;
    border-radius: 50%;
    border-color: red;
}
#magic-cursor {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
}
body.tt-magic-cursor #magic-cursor {
    display: block;
}
/* Ball view 
============= */
#ball.ball-view {
	background-color: var(--red-color);
	font-size: 15px;
	font-weight: 500;
	color: #FFF;
	line-height: 1.2;
	text-align: center;
}
#ball .ball-view-inner {
	padding: 0 5px;
	opacity: 0;color: #FFF;
	visibility: hidden;
	transform: scale(0);
}
#ball .ball-view-inner i {
	font-size: 19px;
}


/* Ball drag 
============= */
#ball .ball-drag {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0 5px;
	font-size: 15px;
	font-weight: 600;
	color: #FFF;
	line-height: 1.2;
	text-align: center;
	transition: all 0.3s;
}
#ball .ball-drag::before,
#ball .ball-drag::after {
	position: absolute;
	top: 50%;
	margin-top: -5px;
	font-size: 16px;
	color: #FFF;
	height: 10px;
	line-height: 10px;

	/* Font Awesome */
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
#ball .ball-drag::before {
	content: "\f060"; /* Font Awesome */
	left: 0;
	transform: translate3d(-30px, 0, 0);
	transition: all 0.25s;
}
#ball .ball-drag::after {
	content: "\f061"; /* Font Awesome */
	right: 0;
	transform: translate3d(30px, 0, 0);
	transition: all 0.25s;
}
/* Ball close 
============== */
#ball.ball-close-enabled {
	opacity: 1 !important;
}
#ball .ball-close {
	position: absolute;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 600;
	color: #FFF;
	line-height: 1;
	text-align: center;
}
#ball .fa-arrow-right
{
	font-size:35px !important;
	color:#FFF
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.tt-object
{
	object-fit: cover;
    object-position: 50% 50%;
    width: 100%;	
}
.ph-caption-title-ghost1 {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    padding-top: 5%;
    font-size: calc(16px + 19.5vw);
    font-weight: bold;
    font-weight: 600;
    color: #FFF;
    white-space: nowrap;
    line-height: 1;
    opacity: .1;
    z-index: 1;
    pointer-events: none;
}




/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// LINK HOVER UP*/
.tt-pn-link {
    position: relative;
    display: inline-flex;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
}
/* Page nav title */
.tt-pn-title,
.tt-pn-hover-title {
	display: block;
	left: 0;
	width:100%;
	transition: transform .5s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.tt-pn-title {
	position: relative;
	transform: translate3d(0, 0, 0);
}
/* Page nav hover title */
.tt-pn-hover-title {
	position: absolute;
	width: 100%;
	color: #FFF;
	white-space: nowrap;
	transform: translate3d(0, 100%, 0);

	/* Ellipsis */
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 1024px) {
	.tt-pn-hover-title {
		display: none;
	}
}
/* Page nav hover */
@media (min-width: 1025px) {
	.tt-pn-link:hover .tt-pn-title {
		transform: translate3d(0, -100%, 0);
		transition-delay: 0.1s;
	}
	.tt-pn-link:hover .tt-pn-hover-title {
		transform: translate3d(0, 0, 0);
		transition-delay: 0.1s;
	}
}


/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// IMAGE HOVER  */
@media (min-width: 768px) {
    .tt-gallery-item-inner {
        clip-path: inset(0 0 0 0);
        overflow: hidden;
        transition: clip-path 0.8s cubic-bezier(0.07, 0.72, 0.29, 0.96);
    }
}
@media (min-width: 768px) {
    .tt-gallery-item:hover .tt-gallery-item-inner {
         clip-path: inset(3% 3% 3% 3%); 
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


@media all and (max-width: 1400px){
}
@media all and (max-width: 1200px){
	.container{width:1100px}
	header:before{display:none}
	.menu li a{ color:var(--darkblue-color)}
}
/*m*/@media all and (max-width: 1025px){
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.menu li {
    margin: 0px 5px;
}.font-80, .font-80 * {
    font-size: 4rem;
}
}
/*xm*/@media all and (max-width: 868px){
.flex-row-xm{flex-direction:column}
.mt-25-xm{margin-top:1.5625rem;}
.mb-25-xm{margin-bottom:1.5625rem;}
.mt-50-xm{margin-top:3.125rem;}
.ai-fs-xm{align-items:flex-start}
.txt-cntr-xm{text-align:center}
.flex-row-xm{flex-direction: inherit;flex-wrap: wrap;}
.flex-row-xm > div{width:33.33%}
.flex-row-xm div:first-child{width:100%;align-items: center;display: flex;justify-content: center;}
.flex-row-xm  div .appointment_box{width:270px}
.pb-25-xm{padding-bottom:1.5625rem;}
.d-none-xm{display:none !important;}
.jc-c-xm{justify-content:center}
.pl-0-xm{padding-left:0}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.menu ul li:hover > ul {display: none;opacity: 0;visibility: hidden;transition: none; /* Remove transitions on mobile */}
.trigger_header{display:block}
.slided {-ms-transform: translate(-320px,0);-webkit-transform: translate(-320px,0);transform: translate(-320px,0);}
.trigger{display: block;position:relative;float: right;    margin-left: 25px;width: 45px;}
nav{position: fixed;z-index: 500;width: 320px;    overflow: scroll;height: 100vh;box-sizing: border-box;background: #000;left: 100%;padding: 20px;top: 0;
transition: .7s;-moz-transition: .7s;-webkit-transition: .7s;z-index:100000;display: flex !important;justify-content: center;flex-direction: column;align-content: center;align-items: center;}

.menu ul{flex-wrap:wrap;flex-direction: column;justify-content: center;}
.menu ul li {width:100%;margin:0;height: auto;border-left:0}
.menu ul li a{    color: #FFF;padding: 20px 0px;font-size: 20px;   width: 100%;display:inline-block;text-align:center}
.menu ul ul li{width:100%}
.menu ul ul {display:none}
.menu ul ul ul{position:relative;left:auto;top:auto;    padding-left: 0;}
.r_arrow.child2.active{transform: rotate(90deg);}
.menu-cur , .r_arrow{float:right;}
.subMenu.active{display: block !important;opacity: 1 !important;visibility: visible !important;    position: inherit;}
.r_arrow.child1 img , .r_arrow.child2 img{filter: brightness(0) invert(1);width:20px !important;}
header nav li a.active , .menu ul li:hover a{color: #FFF;}
.subMenu.active .has-submenu li{background:#545454}
.menu ul li:hover a {background-color:transparent;}
.r_arrow{display:block}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.p_categories_listing a{padding:15px 30px}
}
/*s*/@media all and (max-width: 576px){
html, body{font-size:12px;}
.flex-row-s{flex-direction:column}
.ai-fs-s{align-items:flex-start}
.mt-25-s{margin-top:1.5625rem;}
.mb-25-s{margin-bottom:1.5625rem;}
.mt-50-s{margin-top:3.125rem;}
.d-none-s{display:none !important}
.pl-0-s{padding-left:0}
.ml-0-s{margin-left:0}
.txt-cntr-s{text-align:center}
.txt-cntr-s img{display:inline-block}
.px-25-s{padding-right:1.5625rem;padding-left:1.5625rem;}
.mt-0-s{margin-top:0}
.pb-50-s{padding-bottom:3.125rem;}
.py-0-s{padding:0}
.mb-25-s{padding-bottom:1.5625rem}
.px-0-s{padding-left:0;padding-right:0}
.mt-20-s{margin-top:1.25rem}
.pt-0-s{padding-top:0}
.pr-0-s{padding-right:5px !important}
.py-50-s{padding-top:3.125rem;padding-bottom:3.125rem;}
.ml-20-s{margin-left:20px;}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.p_categories_listing a{padding:10px}
.border-right-1{border:0}
.map{position:relative;top:auto;right:auto;height:300px;width:100%;margin-top:25px;}
.input_search.active {width: 100px !important;}.logo img {width: 140px;}
.my-65 {margin-top: 25px;margin-bottom: 25px;}
}





















