@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
:root {
  --red-color: #a50909;

}
*
{	
	font-family: 'Inter', sans-serif;
	font-size:16px;
	color:#110F0F;
	font-weight:300;
	
}
::-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:#363636;
	text-decoration:none;
	transition:0.8s;
	-webkit-transition:0.8s;
	-moz-transition:0.8s;
	-o-transition:0.8s;
}
.displaynone
{
	display:none !important
}
.font-big-caslon{ font-family: 'big-caslon';
}
.d-inline-block
{
	display:inline-block
}
.li_listing li
{
    display: list-item;
    list-style: disc;
    margin-left: 20px;
    /* list-style-position: */
}
.vError
{
	border:red 1px solid !important
}
.form-error
{
    color: red;
    font-size: 10px !important;
}
.h100{
	height:100%
}
.FormResult  , .FormResult1
{
	color:green;
	width:100%;
}
.dnone
{
	display:none
}
.d-block{
	display:block
}
.d-flex
{
	display:flex;
	flex-wrap: wrap;
}
.italic
{
	font-style:italic
}
.white
{
	color:#FFF
}
.font-regular , .font-regular *
{
	 font-weight: 400;
}
.font-semibold , .font-semibold *
{
	 font-weight: 600;
}
.font-bold , .font-bold *
{
	 font-weight: 700;
}
.font-black , .font-black *
{
	 font-weight: 900;
}
.font-light , .font-light *
{
	 font-weight: 300;
}
.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-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-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;
	line-height:2rem
}
.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;
	line-height: 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;
	line-height:3.75rem
}
.font-62, .font-62 *
{
	font-size:3.875rem
}
.font-70, .font-70 *
{
	font-size:4.375rem;
	line-height: 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;
}
.jc-fs
{
	    justify-content: flex-start !important;
}
.jc-sb
{
	    justify-content: space-between !important
}
.trigger{
	width: 35px;
	height: 25px;
	z-index: 999999999;
	cursor:pointer;
	display:none

}

.trigger > div{
	position: relative;
}

.trigger > div > span{
	position: absolute;
	height: 4px;
	width:30px;
	margin:0;
	background: #000;
	top:0;
	

	transition:.7s;
	-moz-transition:.7s;
	-webkit-transition:.7s;
	left:0
}

.trigger > div > span:nth-child(2){
    top: 9px;
	width:20px;

}

.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: 19px;
	background:#FFF
}

.trigger > div.close > span:nth-child(2){
	display: none;
}

.trigger > div.close > span:nth-child(3){
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
	top: 19px;background:#FFF
}

.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
}
.ai-fs
{
	align-items:flex-start
}
.line-20 , .line-20 *
{
	line-height:1.25rem
}
.line-22 , .line-22 *
{
	line-height:1.375rem
}
.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-50 , .line-50 *
{
	line-height:3.125rem
}
.line-60 , .line-60 *
{
	line-height:3.75rem
}
a:hover
{
	color:var(--red-color)
}
.ai-initial
{
	align-items:initial
}
.jc-c
{
	    justify-content: center;
}.jc-fe
{
	    justify-content: flex-end;
}
.ai-fe
{
	align-items:flex-end
}
/****************************************************************************************************************************/
.bg1
{
	background:#26261A
}
.bg2{
	background:#10100A
}
.bg3
{
	background:var(--red-color)
}
.bg4
{
	background:#f6f6f6
}

.footer_menu li
{
	margin:0 20px;
}
.footer_menu li a
{
	color:#FFF
}
.footer_menu li a:hover
{
	color:var(--red-color)
}
.footer_icon div
{
	border:1px solid #FFF;
	width:65px;
	height:65px;
}
.map
{
	background:grey;
	height:400px;
	position:relative
}
.map iframe
{
	width:100%;
	height:100%;
}
.map_box
{
	position:absolute;
	top:0;
	left:0;
	z-index:50;
	width:100%
}
.bg_white
{
	background:#FFF
}
.bg33
{
	background:#f4f4f4
}
.map_white
{
	width:35%;
}
.bg_parallax
{
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
	background-position:center center;
	height:700px;
}
.bg_parallax1
{
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
	background-position:center center;
	height:500px;
}
.facts_box .colw-33
{
	border:1px solid #FFF
}
.border1
{
	height:2px;
	background:var(--red-color);
	width:50px;
}
.red
{
	color:var(--red-color);
}

header nav li a.active {
    color: var(--red-color);
}

.categories_home_box
{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	z-index:50
}
.categories_home_box .icon_box{
	width:180px;
	height:140px;
	background:var(--red-color);
}
.categories_home_listing .bg_hover:before
{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;z-index: 50;
	background:rgba(0,0,0,0.35);    transition: all 1s ease-in-out;
	content:''
}
.categories_home_listing .bg_hover:hover:before , .categories_home_listing .colw-33:hover .bg_hover:before 
{
	opacity:0
}
.categories_home_listing .colw-33:hover .bg_hover img {
    transform: scale(1.1);

	
}

.categories_home_listing .colw-33.aos-animate h2 {
	-webkit-animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand-fwd-top 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
.categories_home_listing .colw-33.aos-animate .icon_box
{
		-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.link a
{
  border-radius: 8px;
  background-color: var(--red-color);
  color:#FFF;
  padding:15px 25px; 
}
.link a:hover
{

  background-color: #FFF;
  color:var(--red-color); 
}


.banners {
    margin-bottom: -5px !important;
}
.main_bg {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}
.banners_bg {
    position: absolute;
    transition: all 1s ease-in;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;background-repeat:no-repeat;background-size:cover
}
.banners_bg:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.46);
    z-index: 50;
	content:'';

}.banners_text {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    padding-top: 0;
}


.banners  .slick-dots li , .d_slick .slick-dots li
{
	width:15px;
	height:15px;
	border-radius:25px;
}
.banners .slick-dots li 
{
margin:5px 0;	
}
 .d_slick .slick-dots li
{
	margin:0 2.5px;
}
 .banners .slick-dots li button , .d_slick .slick-dots li button
{
	width:15px;
	height:15px;border-radius:25px;
	background:var(--red-color);transition: all 0.5s ease-in;
	padding:0
}
.banners .slick-dots li button:before , .d_slick .slick-dots li button:before
{
	display:none
}
 .banners .slick-dots li button:hover , .banners .slick-dots li.slick-active button ,  .d_slick .slick-dots li button:hover , .d_slick .slick-dots li.slick-active button
{
	background:#FFF;
}
.banners .slick-dots {
    top: 0;
    z-index: 10;
    width: 15px;
    height: 100%;
	right:25px;
	    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
 .d_slick .slick-dots{
    bottom: 2vh;
	z-index:10
}



.banners .slick-current .banners_bg
{
	 animation: kenburns-top 5s ease-out both;
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.05) translateY(-15px);
            transform: scale(1.05) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.05) translateY(-15px);
            transform: scale(1.05) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
header
{
	border-top:6px solid var(--red-color);
	border-bottom:1px solid #979797;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:50;
	background:#FFF
}
header nav{
	height:100%
}
header nav li
{
	padding: 0 25px;height:100%;
	border-left:1px solid #979797;
	margin:0
}
header nav li a
{
	color:#000
}
.ai-n
{
	align-items:normal
}
.social a
{
	width:40px;
	height:40px;
	background:#484847;
	border-radius:50%;
	
}
.social a span
{
	color:#FFF;
}
.social a:hover
{
	background:var(--red-color);
}
header nav li.call
{
	background:var(--red-color)
}
header nav li.call a:hover
{
	color:#FFF
}

.breadcrumbs
{
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
	height:300px;
	position:relative
}
.breadcrumbs:before
{
	
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.46);
    z-index: 20;
	content:'';
}
.z-100
{
	z-index:100
}
.breadcrumbs li
{
	padding:0 5px;
}
.about_desc h3
{
	font-size:20px;
}

.about_desc li
{
	display:inline-block;
	width:100%;
	background:url(../img/li.svg) no-repeat left center;
	padding-left:15px;
}


.mission_vison .colw-50 .mission_box
{
	background:#FFF;
	border:1px solid #D1D1D1;
	height:100%
}
.mission_vison .colw-50 .bb1
{
	width:160px;
	height:6px;display: block;
	background:var(--red-color)
}
.package_deal span
{
	border: 1px solid #FFF;
    width: 100px;
    height: 100px;
	display:block
}
.package_deal
{
	position:relative
}
.package_deal:before
{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--red-color);
    z-index: 20;
	content:'';	
}
.about_p
{
	position:absolute;
	right:-5px;
	top:0;
	width:100%;
	z-index:50
}
.about_p img
{
	max-width:inherit
}




.preloader {
  position: fixed;
  overflow: hidden;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #4b4b4b;
  text-align: center;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  z-index:100;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--red-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.logo img
{
	width:300px;
}
.w_100
{
	width:100% !important
}



.z-150{
z-index:150
}

.contact_box
{
	background:#FFF;
	border:1px solid #D1D1D1;
	height:100%
}
.google_map iframe
{
	width:100%;
	height:600px;
}
.contact_box iframe
{
	width:100%;
	height:200px;
}
.h20
{
	min-height:55px
}
.services_gallery , .services_gallery_for
{
	margin-bottom:0 !important
}
.services_for
{
	position:absolute;
	bottom:0;
	right:0;
	z-index:50;
	background:#FFF;
	padding:10px;
}


.services_gallery_for .slick-slide  {
      margin: 0 5px;
  }

  /* the parent */
.services_gallery_for .slick-list {
      margin: 0 -5px;
  }
   .services_gallery_for .latest_arrow  
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: calc(50% - 30px);
    display: block;
	z-index:500;
	width:35px;
	height:60px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;	
}


.services_gallery_for .rightLst  
{
	      right: -55px;
}
.services_gallery_for .leftLst  
{
	  left: 20px;display:none !important
}



.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	z-index:600;
	bottom: 20px;
	right: 20px;
	font-size: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 30px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
.btn-whatsapp-pulse i
{
	color:#FFF
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 20px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 20px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.rtl
{
	direction:rtl;
	text-align:right;
	font-family: 'Cairo', sans-serif;

}.rtl *
{
	font-family: 'Cairo', sans-serif;

}
.file-custom {
    position: absolute;
    width: 65px;
    height: 25px;
    right: 0;
    top: 12px;
}
.file-custom img
{
	width:20px;
}
.file_none {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 50;
    opacity: 0;
}
button[type=submit]
{
border-radius: 8px;
    background-color: var(--red-color);
    color: #FFF;
    padding: 15px 25px;
}
.success
{
	color:green
}
.products_listings .bg_white
{
	height:100%
}
.products_listings h2
{
	/*min-height:60px*/
}


.bg2_c {
    background: #F5F5F5;
}.search_form input {
    background: none;
    border: 0;
}.advance_search {
    background: #E6E6E6 url(../img/down.svg) 95% no-repeat;
    background-size: 10px;
    padding: 20px 50px 20px 25px;
    cursor: pointer;
}.sort_by select {
    height: 40px;
    border-radius: 5px;
    padding: 0 25px 0 15px;
}select {
    width: 100%;
    background: #FFF url(../img/down.svg) 95% no-repeat;
    background-size: 15px;
}.bg1_c {
    background: #ECECEC;
}
.price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}
.price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
.field input {
  width: 100%;
  height: 100%;
  outline: none;
  height:30px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #D1D1D1;
  -moz-appearance: textfield;
}
.wrapper input[type="number"]::-webkit-outer-spin-button,
.wrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.slider {
  height: 5px;
  position: relative;
  background: #FFF;
  border-radius: 5px;
}
.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #FFF;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #E02020;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type=radio] {
    border-radius: 50%;
    border: 1px solid #979797;
    background-color: #FFFFFF;
}
.selecotr-item{
	displaY:flex;
}
.selecotr-item input
{
	display:none;
	appearance: none;
}

.selecotr-item .selector-item_label
{
  border: 1px solid #D1D1D1;
  border-radius: 3px;
  background-color: #FFFFFF;
	width:100%;

	font-size:12px;
	line-height:15px;
	font-weight:500;
	    display: flex !important;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    align-items: center;
	padding:20px;
	text-align:center;
}
.selector-item_radio:checked + .selector-item_label {
    background-color: #E02020;
    color: white;
}


.selector-item_radio:checked + .selector-item_label img {
   filter: brightness(0) invert(1);
}


.gallery_count{
	position:absolute;
	right:15px;
	top:15px;
	z-index:50;
	  border-radius: 7px;
  background-color: #000000;
}
.gallery_slick
{
	margin-bottom:5px !important;
}


.gallery_slick .latest_arrow 
{
	position:absolute;
	top:calc(50% - 10px);
	z-index:50;
	background:none;
	width:50px;
}
.gallery_slick .leftLst 
{
	left:15px;
}

.gallery_slick .rightLst  
{
	right:15px;
}




.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}


.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #E02020;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #E02020;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}



.related_slick .slick-slide {
      margin: 0 5px;
  }

  /* the parent */
.related_slick .slick-list  {
      margin: 0 -5px;
  }
  
  
  
  .gallery_slick_for .slick-slide {
      margin: 0 5px;
  }

  /* the parent */
.gallery_slick_for .slick-list  {
      margin: 0 -5px;
  }
  .filter_box label, .signin-up label {
    font-size: 1rem;
    line-height: 1.375rem;font-weight:bold;
    margin-bottom: 5px;
    display: block;
}
  
  
  
  
 .related_slick .slick-dots{
    bottom: -45px;;
}
.related_slick  .slick-dots li 
{
	width:30px;
	height:5px;
	border-radius:25px;
}

.related_slick .slick-dots li 
{
	margin:0 2.5px;
}
 .related_slick .slick-dots li button
{
	width:30px;
	height:5px;border-radius:25px;
	background:#D11F42;transition: all 0.5s ease-in;
	padding:0
}
.related_slick .slick-dots li button:before 
{
	display:none
}
 .related_slick  .slick-dots li.slick-active , .related_slick .slick-dots li.slick-active button   {
 width:50px;
 }
 .related_slick .slick-dots li button:hover , .related_slick .slick-dots li.slick-active button 
{
	background:#FFF;
	
}

.products_slick
{
	margin-bottom:0 !important
}



.products_slick .slick-slide {
      margin: 0 5px;
  }

  /* the parent */
.products_slick .slick-list  {
      margin: 0 -5px;
  }

.products_slick .c
{
	border:1px solid #FFF
}

.advance_search
{
	display:none
}




.min-height-1
{
	min-height:95px;
}

@media all and (max-width: 960px){
	.logo img{width:220px;}
.advance_search
{
	display:block
}	
	.services_for
	{
		position:relative;
		top:auto;
		bottom:auto;
		
	}
	header{z-index:500}
.slided {
    -ms-transform: translate(-320px,0);
    -webkit-transform: translate(-320px,0);
    transform: translate(-320px,0);
}	
.trigger{
		display: block;
	}

	nav{
		position: fixed;
		z-index: 500;
		width: 320px;
		height: 100vh !important;
		box-sizing: border-box;
		background: var(--red-color);
		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: row;
    align-content: center;
    align-items: center;
	}

	nav ul{
		margin:0;
	}

	nav ul li{
		margin:0;
		padding:0 10px;
	}

	nav ul li a{
		padding: 5px 15px;
		line-height: 30px;
		text-align: left;
		position: relative;
		width: 100%;
		color:#FFF;
		box-sizing: border-box;
		display: block;
	}

	header li .ddm{
		position: relative;
		top: 10px;
		padding: 10px;
		opacity:1;
		overflow:hidden;
		background:none;
		top:-5px;
		left:20px;
		visibility:hidden
	}

	.ddm li {
    		display: block;
    		float: none;
    		width: 100%;
		box-sizing: border-box;
    		padding: 0 15px;
		text-align: left;
	}

	.ddm li a{
		text-align: left;
	}
	.trigger > div > span{
		    z-index: 5000001;
	}
	header nav li{height:auto;border:0;padding:25px 0}
	header nav li.call{background:transparent}
	header li .ddm{padding:0}
	header .tophd ul.hdlang {
		margin-right: 60px;
	}

	header .tophd ul.hdlang {
		margin-right: 60px;
	}

	header .tophd ul.hdlang li{
		display: inline-block;
		width: auto !important;
	}
.header_right{padding-right:30px;}
.slided .trigger > div > span{background:#FFF}
.slided .trigger {top: 5px;}	
h1, h2, h3, h4, h5, h6{line-height:initial}
.flex-row-m{flex-direction:column}
.ai-n {align-items: center;}
.font-60, .font-60 * {font-size: 1.75rem;line-height: 3.75rem;}
.breadcrumbs{height:245px;}
.py-100 {padding-top: 3.25rem;padding-bottom: 3.25rem;}
.footer_menu li{margin:10px 5px;}
.pt-25-m{padding-top:1.5625rem;}
.pb-25-m{padding-bottom:1.5625rem;}
.pt-50-m{padding-top:3.125rem;}
.txt-justify-m{text-align:justify}
.pr-25-m{padding-right:1.5625rem;}
.pt-25-m{padding-top:1.5625rem;}
.pb-25-m{padding-bottom:1.5625rem;}
.pt-50-m{padding-top:3.125rem;}
.pt-0-m{padding-top:0;}
.pb-0-m{padding-bottom:0;}
.pr-0-m{padding-right:0}
.pl-0-m{padding-left:0}
.mt-0-m{margin-top:0}
.ml-0-m{margin-left:0 }
.mr-0-m{margin-right:0}
.bg_parallax1{background-attachment:inherit;height:250px;}
.bg_parallax {background-attachment: inherit;padding: 3rem 0;height: auto;}
.about_p{position:relative;right:auto;top:auto}
.about_p img{max-width:100%}
.package_deal:before{display:none;}
.package_deal{padding-left:25px;padding-right:25px;}
.map_white{width:100%}
.main_bg{height:50vh}
.banners .font-28{line-height:2rem}
.categories_home_listing .colw-33{margin-bottom:5rem}
.categories_home_listing .colw-33:last-child{margin-bottom:0}
.font-42, .font-42 *{font-size:2rem}
.banners .slick-dots{right:10px;}.pl-0-s {
    padding-left: 0;
}.advance_mob {
    display: none;
}.px-25-m {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
}.advance_search {
    padding: 20px 30px 20px 15px;
}.search_form input {
    width: 100px;
}

header nav li a.active {
    color: #FFF !important;
}header nav li a {
    color: #FFF !important;
}
}