:root {
    --primary: #ED6941;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 7px;
    padding: 8px 18px;
    color: #000000;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.navbar.sticky-top.shadow-sm {
    transition: .5s;
    position: fixed;
    top: 0;
    background: #fff;
}
.navbar.sticky-top.shadow-sm a.navbar-brand img {
    width: 70px;
}
@media (max-width: 991.98px) {
    .navbar.sticky-top.shadow-sm {
    padding: 1px 11px;
}
    .navbar .navbar-nav .nav-link.active{
color: var(--primary) !important;
        background: transparent !important;
    }
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 7px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .sub-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        column-count: 2;
        padding: 20px;
        box-shadow: 0px 3px 5px #ddd;
        border-radius: 0px 0px 7px 7px;
        position: absolute;
        z-index: 999;
        background: #fff;
        list-style: none;
    }

    .navbar .nav-item:hover .sub-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .0);
}

@media (max-width: 768px) {
	.header-carousel .owl-carousel-item .pt-5{
		padding-top:0px !important;
	}
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 320px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 100px;
    height: 100px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 120px;
    transition: .5s;
    border: 3px solid #fff;
}

.fact-item:hover .fact-icon {
    background: #ed6941;
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 93%;
    height: 85%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 2% 0 0 3%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 0%;
    left: 0%;
    border: 5px solid #ed6941;
    z-index: 0;
}


/*** Service ***/
.service-item:hover .property-block_one-content::before {
    transition: .5s;
 /* filter: invert(50%) sepia(80%) saturate(600%) hue-rotate(345deg) brightness(98%) contrast(95%);*/
}
.service-item:hover .service-text p{
    color: #fff;
}
.service-item .service-text p{
   color: #ED6941;
   position: relative;
}

.service-item * {
    transition: .5s;
}

/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.sub-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000000;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s;
    font-size: 15px;
}
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 0.5px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 20px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background: #eee;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/*start css*/
a.navbar-brand img {
    width: 80px;
}
.blue{
color:#3A3A76;
}
.orange{
  color:#ED6941;
}
section.mainbaner {
    background-size: cover;
    background-repeat: no-repeat;
}
.backreward {
    padding: 50px;
    height: 100%;
}
.backreward ul{padding-left: 16px;}.backreward h5{
    color: #fff;
}.backreward ul li{
    color: #fff;
    padding: 10px 0px;
}
.contsec_white {
    padding: 50px;
}
.contsec_white label{
    color:#ed6941;
    margin-bottom: 5px;
}
.footer h3{font-size: 21px;}
.text-orange{
  color:#ed6941;  
}
.iconsx p{
    display: flex;
}.iconsx i{
    width: 14px;
}
.iconsx span{
   margin-left: 2px;
   width: 95%;
}
.main-title{
    font-weight:600;
}
.main-title span{
    font-weight: 400;
}
.iconsx span a{
    color:#000;
}
.febric_item {
    border: 1px solid #ed6941;
    margin-top: 30px;
    padding: 35px;
    text-align: center;
    box-shadow: 0px 0px 2px #dd7657;
    position: relative;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.febric_item:hover{
  transition: all 0.4s ease-in-out;
  background-color:#ed6941;
  transform: scale(1.02);
}
.febric_item:hover p, .febric_item:hover h4, .febric_item:hover p strong{
    color:#fff !important;
}
.feb_content h4{margin-bottom: 15px;}.feb_content p{
    font-weight: 500;
}
.febs_icons{width: 85px;height: 85px;border: 1px solid #ed6941;border-radius: 100%;position: absolute;background: #f8f8f8;padding: 16px;text-align: center;margin: 0 auto;left: 0;right: 0;bottom: -42px;}
.febs_icons span{
    font-size: 30px;
    color: #ed6941;
    font-weight: 600;
}
.febimage_x{
    display: block;
    overflow: hidden;
}.febimage_x img{
 width: 100%;
 transition: 0.4s ease-in-out;
}
.febimage_x:hover img{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
}
.headfeb h3{background: #ed6941;color: #fff;text-align: center;font-size: 20px;padding: 15px;}
.maindiv{
    position: relative;
}
.poback_imgs{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    width: 100%;
}
.poback_imgs img{
    width:100%;
}
.topcategory {
    width: 25%;
}
.fact-item h5{
 color: #ed6941;   
}
.fact-item:hover .fact-icon img{
  filter: brightness(0) invert(1);
}
.fact-item {
    padding: 20px;
    border-radius: 10px;
}
.fact-item:hover {
   background-color: #ed6941 !important;
   transition: all 0.4s ease-in-out;
   margin-top: -2px;
}
.fact-item:hover h5, .fact-item:hover p{
    color:#fff;
}
.property-block_one-image {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
    height: 345px;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.service-item .property-block_one-content::before{
  content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 164px; 
     background-size: cover;  
}
.service-item.propertycls1 .property-block_one-content::before,
.service-item.propertycls5 .property-block_one-content::before {
    background-image: url(../img/atch1.png);  
}
.service-item.propertycls2 .property-block_one-content::before, 
.service-item.propertycls6 .property-block_one-content::before,
.service-item.propertycls9 .property-block_one-content::before, 
.service-item.propertycls12 .property-block_one-content::before {
    background-image: url(../img/atch2.png);
    height: 117px;
}
.service-item.propertycls3 .property-block_one-content::before, 
.service-item.propertycls7 .property-block_one-content::before, 
.service-item.propertycls10 .property-block_one-content::before {
    background-image: url(../img/atch3.png);
}
.service-item.propertycls4 .property-block_one-content::before, 
.service-item.propertycls8 .property-block_one-content::before,
.service-item.propertycls11 .property-block_one-content::before {
    background-image: url(../img/atch4.png);
    height: 133px;
}

.property-block_one-content {
    position: absolute;
    padding: 20px 20px 10px;
    bottom: 5px;
    left: 0;
    right: 0;
}
.service-item{
    overflow: hidden;
    z-index: 99;
    transition: 0.4s ease-in-out;
    box-shadow: 0px 2px 6px #c7c7c7;
    border-radius: 20px;
}
.service-item:hover{
    margin-top: -3px;
    transition: 0.4s ease-in-out;
}
.navbar{
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}
section.contactus {
    background-size: cover;
    background-repeat: no-repeat;
}
.topsocial a:hover i{
    color: var(--primary);
}
.service-item.propertycls1:hover .property-block_one-content::before, 
.service-item.propertycls5:hover .property-block_one-content::before {
    transition: .5s;
    background-image: url(../img/atch1-color.png);
}
.service-item.propertycls2:hover .property-block_one-content::before, 
.service-item.propertycls6:hover .property-block_one-content::before,
.service-item.propertycls9:hover .property-block_one-content::before, 
.service-item.propertycls12:hover .property-block_one-content::before {
    transition: .5s;
    background-image: url(../img/atch2-color.png);
}
.service-item.propertycls3:hover .property-block_one-content::before, 
.service-item.propertycls7:hover .property-block_one-content::before,
.service-item.propertycls10:hover .property-block_one-content::before {
    transition: .5s;
    background-image: url(../img/atch3-color.png);
}
.service-item.propertycls4:hover .property-block_one-content::before, 
.service-item.propertycls8:hover .property-block_one-content::before, 
.service-item.propertycls11:hover .property-block_one-content::before {
    transition: .5s;
    background-image: url(../img/atch4-color.png);
}
.product-thumb-link img {
    width: 100%;
    height: 300px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}
.image-hover:hover {
    opacity: 1;
}
.image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-out;
}
.febimage_x2 img{
    margin: 0 auto;
    display: table;
    width: 100px;
}
.header-carousel {
    display: table;
    table-layout: fixed;
    clear: both;
    position: relative;
    width: 100%;
}
.productcategory{padding-right: 30px;}
.productcategory h3{
    color: #ED6941;
    font-size: 21px;
    margin-bottom: 15px;
    background: #eee;
    padding: 11px 20px;
    border-radius: 3px;
}
.leftnav{padding: 0px;}.leftnav li{
    list-style: none;
    position: relative;
    border-bottom: 1px solid #f1eeee;
}.leftnav li a{
    color: #000;
    /* border-bottom: 1px solid #f1eeee; */
    display: block;
    padding: 10px 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
}.leftnav li a:hover, .leftnav li a.active{
    color: #ed6941;
}
.leftnav li:last-child{
  border-bottom:none;  
}
.leftnav li a:before{
    content:'';
    border: 1px solid #c9c7c7;
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block;
    transform: rotate(45deg);
    margin-right: 7px;
}
.leftnav li a:hover:before, .leftnav li a.active:before{
background-color:#ed6941;
border-color: #ed6941;
}
.pagination{margin-top: 30px;justify-content: center;}.pagination > ul > a{
    margin: 0px 5px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    padding: 1px 12px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}.pagination > ul > a.active, .pagination > ul > a:hover, .pagination > ul li span.page-numbers.current
{
    background: #ed6941;
    padding: 3px 9px;
    color: #fff;
    border-radius: 3px;
}.pagination span{
    background: #e7e7e7;
    padding: 4px 13px;
    border-radius: 4px;
    margin: 0px 9px;
}
ul.page-numbers{
    display: flex;
}
ul.page-numbers li a.page-numbers {padding: 5px 8px;font-weight: bold;}
.pagination span a{
  color: #fff;   
}
.pagination ul{
    padding: 0px;
    margin: 0px;
	list-style:none;
}
.gallery {
  width: 100%;
  max-width: 100%;
  margin: 0px auto;
  table-layout: fixed;
  overflow: hidden;
  display: table;
  clear: both;
  position: relative;
}
.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}
.gallery-slider .swiper-slide {
  width: auto;
  height: 460px;
  border: 1px solid #eee;
}
.gallery-slider .swiper-wrapper{
	z-index:unset !important;
}
.gallery-slider .swiper-slide img {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.gallery-thumbs {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.gallery-thumbs .swiper-slide {
  width: 80px;
  height: 80px;
  text-align: center;
  overflow: hidden;
  opacity: 0.4;
  border: 1px solid #ddd;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
}
.productmodal .modal-dialog{
max-width: 60%;
}
.productmodal .modal-content {
    border-radius: 12px !important;
    }
button.btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    /*background-color: #ed6941;*/
    opacity: 1;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    z-index: 99;
background: #ed6941 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;

}
.leftnav li ul{
	padding-left:10px;
	display:none;
}
.leftnav li.parent-cat.has-children > a {
     width: 100%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
    color: #fff;
    }
.swiper-button-next, .swiper-button-prev {
    top: 40%;
}
.text_trim ul{
	padding-left: 16px;
}
.text_trim ul li{
	list-style: none;
	position: relative;
	margin: 6px 0px;
}
.text_trim p{
margin-bottom: 9px;
    }.text_trim ul li:before{
		content:'';
		margin-right: 7px;
		left: -15px;
		top: 9px;
		display: inline-block;
		background: #ed6941;
		width: 6px;
		height: 6px;
		border-radius: 100%;
		position: absolute;
}
.detail-right h4{
    font-size: 22px;
}
.faq-section {
    background: #fdfdfd;
    padding: 6vh 0
}

.faq-title h2 {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1
}

.faq-title h2:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: gold;
    bottom: -25px;
    margin-left: -30px
}

.faq-title p {
    padding: 0 190px;
    margin-bottom: 10px
}

.faq {
    background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0,0,0,.06);
    border-radius: 4px
}

.faq .card {
    border: none;
    background: 0 0;
    border-bottom: 1px dashed #ebebeb
}

.faq .card .card-header {
    padding: 0;
    border: none;
    background: 0 0;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.faq .card .card-header:hover {
    background: rgb(237 105 65 / 34%);
    padding-left: 10px
}

.faq .card .card-header .faq-title {
    width: 100%;
    text-align: left;
    padding: 0;
    padding-left: 20px;
    padding-right: 30px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000;
    text-decoration: none !important;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px
}

.faq .card .card-header .faq-title .badge {
    width: 35px;
    height: 35px;
    line-height: 23px;
    float: right;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #ed6941;
    color: #ffffff;
    font-size: 19px;
    font-weight: normal;
}

.faq .card .card-body {
    padding: 30px;
    padding-left: 35px;
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6f8ba4;
    line-height: 28px;
    letter-spacing: 1px;
    border-top: 1px solid #f3f8ff
}

.faq .card .card-body p {
    margin-bottom: 14px
}
 ul.hts-list {
    width: 100%;
    position: relative;
    margin-top: 0;
    padding: 0px;
    margin-bottom: 30px;
}

ul.hts-list:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #ddd;
    top: 10px;
    left: 50%
}

ul.hts-list li {
    width: 49%;
    margin: 0 auto;
    margin-right: 0;
    margin-bottom: 60px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    list-style: none;
}

ul.hts-list li:before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-color: #ed6941;
    background-clip: padding-box;
    border: 6px solid rgb(237 105 65 / 46%);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: -24.5px;
    z-index: 2
}

ul.hts-list li:nth-child(2n) {
    margin: 0 auto;
    margin-left: 0;
    text-align: right;
    margin-bottom: 40px;
    padding-left: unset;
    padding-right: 30px
}

ul.hts-list li:nth-child(2n):before {
    left: unset;
    right: -26px;
}

ul.hts-list li p {
    margin-bottom: 0;
    max-width: 460px;
    display: inline-block
}

.value-text {
    width: 48%;
    text-align: right;
    padding-right: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateY(72px);
    -ms-transform: translateY(72px);
    transform: translateY(72px);
}
img.wit20 {
    width: 215px;
}
.menufac_page .sec-text {
    border: 1px solid #d1b285;
    padding: 40px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.sec-text img {
    margin-top: 0;
    margin-right: 40px;
}
.sec-text p {
    margin-bottom: 0;
}
.owlsiders{
    position: relative;
}
.owlsiders .owl-prev {position: absolute;top: 48%;transform: translateY(-54%);left: 0;background: transparent !important;font-size: 65px !important;font-weight: normal;}
.owlsiders .owl-next {
position: absolute;top: 48%;transform: translateY(-54%);right: 0;background: transparent !important;font-size: 65px !important;font-weight: normal;
}
.owlsiders .owl-nav img{
    width:30px;
}
.owlsiders .owl-next:hover img, .owlsiders .owl-prev:hover img{
    background: rgb(255 255 255 / 74%);
    padding: 2px;
    border-radius: 3px;
}
.dyning-process ul.dy-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px;
}
.dyning-process ul.dy-list li {
    margin-top: 50px;
    width: 24%;
    max-width: 300px;
    background-color: #fff;
    -webkit-box-shadow: 2px 7px 16px 0 rgba(161, 144, 121, .1);
    box-shadow: 2px 7px 16px 0 rgba(161, 144, 121, .1);
    text-align: center;
    min-height: 497px;
    list-style: none;
}
.dyning-process ul.dy-list li img{
    width:100%;
}
.dyning-process .num {
    display: inline-block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    background-color: #ed6941;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    color: #fffbf6;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
.dyning-process .text {
    padding: 0px 17px 20px;
}
.dyning-process h4 {
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #ed6941;
}
.man-overflow {
    overflow: hidden;
    display: block;
    height: 200px;
}
.man-overflow:hover img{
    transform: scale(1.04);
}
img{
 transition: all 0.3s ease-in-out;   
}
ul.tab-btn{
    padding-left: 13px;
}
ul.tab-btn li:before{
    content:'';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #ed6941;
    left: -12px;
    top: 8px;
}
ul.tab-btn li {
    position: relative;
display: inline-block;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #ed6941;
    width: 48%;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}
.headfeb_cl{
    padding: 20px 0px;
}
.headfeb_cl h3{
font-size: 20px;
}
.shadowdiv {
    margin-bottom: -60px;
    position: relative;
    z-index: 999;
    background: #fff;
}
.mainpinv{
padding: 70px 0px 30px;
}
.mainpinv h4{
    color: #ffffff;
    font-size: 20px;
    margin: 20px 0px;
}
.mainpinv p{
    color: #fff;
}
.mainpinv img{
    
}
.btn.bg-dark:hover{
        background-color: #ed6941 !important;
}
.navbar .navbar-nav > li > ul > li > .nav-link:before{
    content:'';
    border-radius: 100%;
    top: 13px;
    position: absolute;
    background-color: #ed6941;
    width: 6px;
    height: 6px;
    left: 0;
    margin-right: 3px;
}
.sub-menu > li > a{position: relative;font-size: 14px;border-top: 1px solid #f8f8f8;}

@media (max-width: 960px) {
    
    .about-s02 ul li {
        padding: 10px
    }

    ul.hts-list li:before {
        left: -20px
    }

  ul.hts-list li:nth-child(2n)::before {
        right: -22px
    }
}

@media (max-width: 991px) {
    .footer .row{
        margin: 0px;
    }
    .menufac_page .sec-text{
       -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    }
         .dyning-process ul.dy-list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }
    .dyning-process ul.dy-list li {
        width: 48%;
        max-width: 100%;
    }
    .faq {
        margin-bottom:30px
    }

    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px
    }
}



@media (max-width:767px){
	ol.breadcrumb li {
    font-size: 13px;
}
	.sub-menu{
		list-style:none;
	 display: none;
	padding-left: 20px;
	}
	.dlekop {
          position: absolute;
        right: 15px;
        top: 10px;
        color: #fff;
}
	.navbar .navbar-nav li{
	position: relative;	
	}
	.navbar .dropdown-toggle::after{
		display:none;
	}
	.navbar-nav .dropdown-menu {
    padding-left: 20px;
}
    section.refined-process.my-5.py-5 {
    margin-top: 0px !important;
}
    .mainpinv {
    padding: 50px 0px 0px;
}
    .widtha{
        width:100px !important;
        margin-bottom: 10px;
    }
    .over_dl{
        width: 100%;
    }
    .sanolv{
        display: block !important;
    }
    .about-img, .feature-img {
    min-height: 285px;
}
    .contact_page  h6{
        word-break: break-all;
    }
    .text-wrap {
    margin-top: 12px;
}
    .selnem  img{
        width: 100%;
    }
    .text {
    margin-top: 20px;
}
    .dyning-process ul.dy-list li {
        width: 100%;
        max-width: 100%;
    }
 ul.hts-list li:before {
        left: -18px
    }

 ul.hts-list li:nth-child(2n)::before {
        right: -20px
    }
    .detail-right {
    margin-top: 23px;
}
    .gallery-slider .swiper-slide {
    height: 325px;
}
     .productmodal .p-4 {
    padding: 0px !important;
}
    .productmodal .modal-dialog {
    max-width: 100%;
}
    .attension_tov .deg{
        padding-top:0px !important;
    }
    .febimage_x2 {
    padding: 15px 0px;
}
    a.navbar-brand img {
    width: 65px;
}
    .navbar {
    position: relative;
    top: 0px;
    padding: 1px 11px;
}
    .poback_imgs {
    width: 100%;
    height: 100%;
}
    .poback_imgs img {
    height: 100%;
    object-fit: cover;
}
    .customfebric .container-xxl{
        padding-bottom: 20px !important;
    }
    .febric_item {
    height: auto;
    padding-bottom: 60px;
}
    .proselv {
    margin-bottom: 20px;
}
    .back-to-top {
    bottom: 100px;
}
    .footer .col-lg-3, .footer .col-lg-2 {
    margin-bottom: 10px !important;
    margin-top: 20px !important;
}
    .contsec_white {
    padding: 23px;
}
    .backreward {
    padding: 28px;
}
    section.contactus.py-5 {
    padding: 0px !important;
    background-size: cover;
    background-repeat: no-repeat;
}
    .mainhead img{
        width: 100%;
    }
    .ca_topmain .topcategory:last-child{
        margin-bottom: 0px;
    }
    .topcategory {
    width:100%;
    margin-bottom: 90px;
}
.ca_topmain{
    display: block !important;
}
}
@media (max-width:1150px) and (min-width:992px){
    .navbar .navbar-nav .nav-link {
    padding: 8px 9px;
}
}
@media (max-width:1024px) and (min-width:768px){
	.sub-menu{
		list-style:none;
	 display: none;
	padding-left: 20px;
	}
	.dlekop {
          position: absolute;
        right: 15px;
        top: 10px;
        color: #fff;
}
	.navbar .navbar-nav li{
	position: relative;	
	}
	.navbar .dropdown-toggle::after{
		display:none;
	}
    .navbar {
    position: relative;
    top: 0px;
    padding: 0px 30px;
}
    .febric_item{
height:auto;
margin-bottom:10px;
    }
.ca_topmain {
    flex-wrap: wrap;
    }
    .topcategory {
        width: 49%;
        margin-bottom: 50px;
    }

}
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 1px 3px !important;
}
input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    border: none;
    color: #fff;
    padding: 15px 0px;
    text-transform: uppercase;
    font-weight: 700;
}
.navbar .navbar-nav > li.current-menu-item > .nav-link, .navbar .navbar-nav > li > ul > li.current-menu-item .nav-link{
background: var(--primary);
    color: #fff;	
}
section.homepage-product-page {
    margin-bottom: 50px;
}
.blog-item {
	height: 277px;
	position: relative;
	border-radius: 10px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
	box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
}
.blog-item::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: "";
    height: 70%;
    width: 100%;
    transition: 0.35s ease-in-out;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 92%) 100%) 0px 0px repeat scroll rgba(0, 0, 0, 0);
}
.blog-item:hover::after {
    height: 100%;
}
.blog-item.large-item {
	height: 575px;
}
.blog-item.large-item .bi-text {
	padding: 0 30px;
	bottom: 28px;
}

.blog-item .bi-text {
	position: absolute;
	left: 0;
	bottom: 18px;
	width: 100%;
	padding: 0 20px;
	z-index: 99;
}

.blog-item .bi-text h5 {
	margin-bottom: 10px;
}

.blog-item .bi-text h5 a {
	color: #ffffff;
	line-height: 24px;
	font-weight: 600;
	display: block;
}

.blog-item .bi-text h3 {
	margin-bottom: 15px;
}

.blog-item .bi-text h3 a {
	font-size: 28px;
	color: #ffffff;
	font-weight: 600;
	line-height: 36px;
	display: block;
}

.blog-item .bi-text span {
	font-size: 14px;
	color: #ffffff;
	display: block;
}

.blog-item .bi-text span i {
	color: #f44949;
}
.bd-text .bd-title {
    margin-bottom: 28px;
}

.bd-text .bd-title h2 {
    color: #171822;
    font-size: 19px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.blog-list img{width:100%;height: 100%;object-fit: contain;}
.blog{padding: 0px 0;}

.blog-list-content{
    padding: 15px 20px;
    background-color: #f5f8fa;
    box-shadow: 0 6px 15px 0 rgb(0 0 0 / 7%);
    margin:-50px 20px 20px;
    position: relative;
    z-index: 1
    }
.blog-footer{padding: 5px 0;}
.blog-list {
    margin-bottom: 20px;
    height: 275px;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #f9f7f7;
}
.blog-list-content .title a{
  font-size: 17px;
  font-weight: 500;
  color: #666;
  transition: all .50s;
  }
.fa-calendar:before{
	font-weight:normal;
	color: #ed6941;
}
.title:hover a{
color: #ed6941;
  }
.blog-footer {font-weight: 100;font-size: 13px;}
.blog-footer span{color: #131313;margin-left: 4px;font-weight: 600;}
.title.rainbow{
    margin-bottom: 10px;
}
.blog-list-content .btn{
	border-radius:5px;
}
.pagination span span{
	padding:0px;
	    margin: 0px;
}
span.togle {
	cursor:pointer;
	position: absolute;
	right: 0;
	padding: 8px 8px;
	top: 6px;
	font-size: 11px;
	color: #878787;
}
li.parent-cat.has-children.active > ul {
    display: block;
}
li.parent-cat.has-children.active > ul > li.active > a{
    color: #ED6941;	
}
li.parent-cat.has-children.active > a, li.parent-cat.active > a{
    color: #ED6941;
}
.leftnav li.parent-cat.has-children.active > a:before, .leftnav li.parent-cat.has-children.active li > a.active:before {
    background-color: #ed6941;
    border-color: #ed6941;
}
.leftnav li ul.showing {
    display: block;
}
li.child-cat.active a {
    color: #ed6941;
}
ul.leftnav ul {
    padding-left: 20px;
}
/* li.parent-cat.has-children.active .togle .fa-plus:before {
    content: "\f068";
} */
/* li.parent-cat.has-children.active > ul{
	display:block !important;
} */