@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-family: "Span-Regular";
    src: url(../fonts/Span-regular.otf);
}

:root {
--heading-font-family: "Playfair Display", serif;
--text-font-family:"DM Sans", sans-serif;
--theme-color-bg-color: #f6f5ed;
--theme-font-family: Span-Regular;
--theme-color1: #18191a;
--theme-color-text-link: #C19A5B;
--theme-color-text-hover: #B48B48;
--theme-color-text-link2: #763235;
--theme-color-text-hover2: #5E2326;
--theme-color-text: #727272;
--theme-border:#ECEAE0;
}

/*
*,::after,::before{
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}*/

h1, h2, h3, h4, h5, h6{
font-family: var(--theme-font-family);
}

p{
font-family: var(--text-font-family);
color: var(--theme-color-text);
font-size: 17px;
letter-spacing: 0.3px;
}

.offcanvas{
transition: all .7s ease;
-webkit-transition: all .7s ease;
-moz-transition: all .7s ease;
}

body{
overflow-x: hidden;
background-color: var(--theme-color-bg-color);
}

.container-fluid{
max-width: 1300px;
}

header{
padding: 25px 0;
}

.logo{
display: flex;
justify-content: center;
}

.logo img{
  width: 180px;
}

.top-left{
  height: 100%;
  display: flex;
  align-items: center;
}

.top-left a{
text-decoration: none;
font-family: var(--theme-font-family);
color: var(--theme-color1);
font-size: 20px;
}

.top-left a i{
padding-right: 4px;
color: var(--theme-color-text-link);
}

.top-right{
display: flex;
justify-content: space-between;
font-family: var(--theme-font-family);
align-items: center;
height: 100%;
}

.top-right a{
text-decoration: none;
}

.top-right a.t-ph{
font-size: 22px;
color: var(--theme-color1);
}

.top-right a.t-ph i{
padding-right: 4px;
color: var(--theme-color-text-link);
}

.top-right a.lets{
background: var(--theme-color-text-link);
color: var(--bs-white);
display: block;
padding: 12px 28px;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.top-right a.lets:hover{
  background-color:var(--theme-color-text-hover) ; 
}

.top-right a.lets i{
  padding-left: 4px;
}



.navigation{
padding: 15px 0;
}

.navigation .container-fluid{
  border-top: 1px solid var(--theme-border);
}

.navbar {
  padding:8px 0;
}

#navbarTogglerDemo02 {
justify-content: end;
}


.navbar-light .navbar-nav .nav-link {
  font-family: var(--theme-font-family);
  padding:10px 18px;
  color: var(--theme-color1);
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  position: relative;
 font-size: 17px;
 margin: 0 3px;
}



.navbar-light .navbar-nav .nav-link::after{
content: "";
position: absolute;
z-index: -1;
left: 51%;
right: 51%;
bottom: 0;
background: var(--theme-color-text-hover);
height: 2px;
-webkit-transition-property: left, right;
transition-property: left, right;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}


.navbar-light .navbar-nav .nav-link:hover::after, .navbar-light .navbar-nav .nav-link:focus::after, .navbar-light .navbar-nav .nav-link.active::after {
  left: 0;
  right: 0;
}

.dropdown-toggle::after {
display: inline-block;
border: none;
}


.navbar-light .navbar-nav .nav-link:hover::after, .navbar-light .navbar-nav .nav-link.active::after{
opacity: 1;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
color: var(--theme-color-text-hover);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
color: var(--theme-color-text-hover);
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px dashed;
/*  border-top: 4px solid\9;*/
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;

}

.dropdown-item {
padding: 10px 14px;
position: relative;
font-size: 15px;
font-family: var(--heading-font-family);
color: var(--text-color);
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
border-radius: 0;
font-weight: 500;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  background-color: var(--theme-color1);
}

.dropdown:hover .dropdown-menu{
opacity: 1;
visibility: visible;
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-ms-transform: scaleY(1);
-o-transform: scaleY(1);
transform: scaleY(1);
}

.dropdown .dropdown-menu{
visibility: hidden;
display: block;
opacity: 0;
-webkit-transition: all 320ms linear 0ms;
-moz-transition: all 320ms linear 0ms;
-ms-transition: all 320ms linear 0ms;
-o-transition: all 320ms linear 0ms;
transition: all 320ms linear 0ms;
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-ms-transform: scaleY(0);
-o-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: 0 0 0;
-moz-transform-origin: 0 0 0;
-ms-transform-origin: 0 0 0;
-o-transform-origin: 0 0 0;
transform-origin: 0 0 0;
border-radius: 0px;
}


 .dropdown-submenu {
      position: relative;
      cursor: pointer;
    }

    .dropdown-submenu > .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
      display: none;
      position: absolute;
    }

     @media (min-width: 992px) {
      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
      }
    }

.dropdown-submenu .dropdown-menu {
left: 98%;
}

.carousel-caption{
top: 0;
bottom: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}



.carousel-caption h2{
font-family: var(--heading-font-family);
font-weight: 600;
font-size: 40px;
}

.carousel-caption p{
font-family: var(--text-font-family);
line-height: 28px;
color: var(--bs-white);
margin: 0;
padding: 15px 0;
}

.ban1{
left: 20%;
right: 20%;
height: 100%;
align-items: center;
padding: 0;
}


.ban2{
left: 10%;
right: 55%;
align-items: start;
text-align: left;
color: var(--theme-color1);
}

.ban2 p{
  color: var(--theme-color-text);
}

.carousel-caption a{
text-decoration: none;
font-family: var(--theme-font-family);
color: var(--bs-white);
position: relative;
overflow: hidden;
background: var(--theme-color-text-link2);
padding: 12px 16px;
display: inline-block;
margin-top: 10px;
}


.carousel-caption a span{
  padding-left: 4px;
  position: relative;
  top: 1px;
}

.carousel-caption a::before {
  content: "";
display: block;
  height: 100%;
position: absolute;
top: 0;
  width: 140%;
  left: -20%;
  z-index: -1;
  background-color:var(--theme-color-text-hover2);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: skew(-35deg) scaleX(0);
  -ms-transform: skew(-35deg) scaleX(0);
  transform: skew(-35deg) scaleX(0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  -o-transition: transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease,-webkit-transform .5s ease;
  height: 110%;
}

.carousel-caption a:hover::before{
-webkit-transform: skew(-35deg) scaleX(1);
-ms-transform: skew(-35deg) scaleX(1);
transform: skew(-35deg) scaleX(1);
}

.carousel .carousel-item.active .animated1 {
  -webkit-animation: fadeInRight 1s ease-in-out 500ms both;
  animation: fadeInRight 1s ease-in-out 500ms both;
}
.carousel .carousel-item.active .animated2 {
  -webkit-animation: fadeInLeft 1s ease-in-out 500ms both;
  animation: fadeInLeft 1s ease-in-out 500ms both;
}
.carousel .carousel-item.active .animated3 {
  -webkit-animation: fadeInDown 1s ease-in-out 500ms both;
  animation: fadeInDown 1s ease-in-out 500ms both;    
}
.carousel .animated4 {
  -webkit-animation: fadeInUp 1s ease-in-out 500ms both;
  animation: fadeInUp 1s ease-in-out 500ms both;    
}


.carousel-caption {
transition: opacity 500ms;
}

.carousel .carousel-item img{
  width: 100%;
}

.carousel-inner > .carousel-item .carousel-caption {
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

.carousel .carousel-item.active .carousel-caption {
  z-index: 99;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;  
}

.carousel-fade .carousel-control {
  z-index: 2;
}
.carousel-control.right {
  background: none;
}
.carousel-control.left {
  background: none;
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}
.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}


.sec-1{
padding: 70px 0 140px;
}

.sec1-left{
  padding-right: 50px;
}

.sec1-left h6{
font-size: 14px;
letter-spacing: 0.13em;
}

.sec1-left h2{
font-size: 50px;
font-family: var(--heading-font-family);
}

.sec1-left p{
text-align: justify;
line-height: 28px;
}

.sec1-left ul{
padding: 0;
}

.sec1-left ul li{
  font-family: var(--text-font-family);
  font-size: 17px;
  color: var(--theme-color-text-hover);
  letter-spacing: 0.3px;
  list-style: none;
  line-height: 28px;
}

.sec1-left ul li i{
padding-right: 4px;
}

.sec1-left a.mre{
font-family: var(--heading-font-family);
text-decoration: none;
background: var(--theme-color-text-link2);
color: var(--bs-white);
display: inline-block;
padding: 14px 25px;
font-size: 17px;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.sec1-left a.mre i{
padding-left: 4px;
}

.sec1-left a.mre:hover{
  background: var(--theme-color-text-hover2);
}


.sec1-right{
display: flex;
justify-content: end;
position: relative;
}

.sec1-img1{
  position: absolute;
  left: -40px;
  bottom: -70px;
  width: 65%;
}

.sec1-img2{
  width: 80%;
}

.sec-2{
padding: 30px 0 70px;
}


.title h2{
font-size: 50px;
}


.title h6 {
  font-size: 14px;
  letter-spacing: 0.13em;
}

.sec2-bx a{
display: block;
text-decoration: none;
margin: 20px 0;
position: relative;
overflow: hidden;
color: var(--bs-white);
font-family: var(--theme-font-family);
}

.sec2-bx a::before{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.sec2-bx a:hover::before{
opacity: 0.7;
}

.sec2-title{
position: absolute;
bottom: 0;
z-index: 99;
padding: 8px 25px;
width: 100%;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}
.sec2-title h4{
font-family: var(--heading-font-family);
}

.sec2-title span{
opacity: 0;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.sec2-title span i{
padding-left: 3px;
font-size: 15px;
}

.sec2-bx a:hover .sec2-title{
margin-bottom: 15px;
}

.sec2-bx a:hover span{
  opacity: 1;
}


.sec-3{
background:url(../images/sec3-bg.png); 
padding: 80px 0;
}

.sec-3 h2{
color: var(--bs-white);
font-size: 65px;
margin-bottom: 20px;
}

.sec-3 p{
color: var(--bs-white);
margin: 0;
width: 85%;
}

.sec3-btm{
display: flex;
align-items: center;
}

.sec3-btm a{
text-decoration: none;
font-family: var(--theme-font-family);
width: 150px;
height: 150px;
text-align: center;
background: var(--theme-color-text-link);
color: var(--bs-white);
display: flex;
align-items: center;
border-radius: 50%;
justify-content: center;
margin-right: 25px;
}



.sec-4{
padding: 70px 0;
}

.sec4-bx{
margin: 15px 15px 0;
text-align: center;
}

.sec4-bx img{
background: var(--theme-border);
padding: 10px;
margin-bottom: 15px;
}

.sec4-bx h5{
  font-family: var(--heading-font-family);
}

.slick-pre {
  position: absolute;
  left: -20px;
  background: var(--theme-color-text-link);
  height: 40px;
  width: 40px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px !important;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%,-50%);
}

.slick-nxt {
  position: absolute;
  right: -55px;
  background: var(--theme-color-text-link);
  height: 40px;
  width: 40px;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 40px !important;
  top: 50%;
    transform: translate(-50%,-50%);
}



.sec-5{
background: var(--bs-white);
}

.sec5-left{
padding: 60px 70px;
display: flex;
justify-content: center;
flex-direction: column;
height: 100%;
}

.sec5-bx{
display: flex;
margin-bottom: 20px;
align-items: center;
}

.sec5-bx span {
clip-path: polygon(50% 0, 100% 12%, 100% 100%, 50% 88%, 0 100%, 0 12%);
  background: var(--theme-color-text-link);
  color: var(--bs-white);
  font-family: var(--theme-font-family);
  width: 80px;
  height: 80px;
  margin-right: 16px;
  font-size: 22px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec5-bx div {
  width: 100%;
}

.sec5-bx p {
  margin: 0;
}

.sec5-right img{
height: 100%;
object-fit: cover;
}


.sec-6{
background: url(../images/sec3-bg.png);
padding: 80px 0;
text-align: center;
}

.sec-6 h6{
color: var(--bs-white);
font-size: 14px;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.sec-6 h1{
  color: var(--bs-white);
  font-size: 71px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sec-6 a {
  font-family: var(--heading-font-family);
  text-decoration: none;
  background: var(--theme-color-text-link2);
  color: var(--bs-white);
  display: inline-block;
  padding: 14px 25px;
  font-size: 17px;
  transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.sec-6 a:hover{
background:var(--theme-color-text-hover2); 
}

.sec-6 a i{
padding-right: 3px;
}

.sec-7{
padding: 60px 0;
}


.client-bx {
  margin: 20px 12px 10px;
  border: 4px solid var(--theme-border);
  padding: 6px;
  background: var(--bs-white);
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  filter: grayscale(100%);
}

.client-bx:hover{
transform: scale(1.06);
  filter: grayscale(0%);
}

.inner-banner{
padding: 70px 0;
position: relative;
background: url(../images/in-banner.jpg) center;
background-size: cover;
z-index: 9;
}

.inner-banner::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color1);
  opacity: 0.5;
  z-index: -1;
}


.in-ban-matter{
text-align: center;
}

.in-ban-matter h1{
text-transform: uppercase;
color: var(--bs-white);
font-weight: 600;
position: relative;
font-size: 48px;
font-family: var(--heading-font-family);
}

.in-ban-matter h1::before{
position: absolute;
content: '';
left: 50%;
top: 104%;
width: 35px;
height: 2px;
background: var(--theme-color-text-link);
transform: translateX(-50%);
}

.in-ban-matter ul{
padding-left: 0;
display: flex;
margin: 0;
justify-content: center;
}

.in-ban-matter ul li{
list-style: none;
font-family: var(--text-font-family);
color: #F7D59E;
}

.in-ban-matter ul li a{
  text-decoration: none;
  color: var(--bs-white);
}

.in-ban-matter ul li a i{
padding: 0 6px;
}


.inner-matter{
padding: 70px 0;
}

.inner-matter p {
line-height: 28px;
}


.abtl {
background: var(--theme-color-text-link);
padding: 46px 15px;
}

.abt-ct .icon-wrapper img{
width: 53px;
float: left;
margin-right: 10px;
}

.abt-ct h4 {
  font-size: 46px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 0;
  color: #fff;
  transition: 0.4s;
  display: inline-block;
  font-family: var(--text-font-family)
}

.abt-ct span {
color: #fff;
font-size: 40px;
font-weight: 600;
margin-left: -7px;
position: absolute;
top: -30px;
font-family: var(--text-font-family);
}

.abt-ct h6 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding-top: 14px;
  color: #fff;
  font-family: var(--text-font-family);
  letter-spacing: 0.3px;
}

.abt-cc {
border-left: 1px solid rgba(255,255,255,0.2);
border-right: 1px solid rgba(255,255,255,0.2);
}

.abt-ct {
padding: 0 30px;
position: relative;
}

.about-sec{
background: url(../images/about-sec.jpg) center fixed;
padding: 80px 0;
background-size: cover;
position: relative;
z-index: 9;
}

.about-sec::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color1);
  opacity: 0.8;
  z-index: -1;
}

.about-sec h2{
font-size: 40px;
color: var(--bs-white);
}

.about-sec p, .about-sec ul li{
color: var(--bs-white);
font-family: var(--text-font-family);
letter-spacing: 0.3px;
}

.about-sec ul li{
  line-height: 27px;
}

.about-sec ul li i{
  color: var(--theme-color-text-link);
}


.about-sec2{
padding: 70px 0;
}

.about-sec2 h2{
  font-size: 45px;
  margin-bottom: 40px;
}

.about-sec2 h6{
letter-spacing: 0.13em;
}


.abt2-bx {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.08));
  background-color: #fff;
  padding: 30px;
  position: relative;
  text-align: left;
}

.abt2-bx p{
  text-align: justify;
  display: -webkit-box;
      -webkit-line-clamp: 7; /* Show only 5 lines */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
}

.abt2-bx span {
  position: absolute;
  top: 110%;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #fff;
  line-height: 39px;
  text-align: center;
  left: 22px;
  font-size: 14px;
  font-weight: 500;
  color:var(--theme-color-text-link);
  font-family: inherit;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-family: var(--text-font-family);
}

.style2 {
  margin-top: 65px;
  position: relative;
}

.abt2-bx:hover span{
  background-color: var(--theme-color-text-hover);
  color: #fff;
}

.abt2-bx::before{
  top: 100%;
left: 50%;
border: solid transparent;
content: "";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(194,225,245,0);
border-top-color: #fff;
border-width: 16px;
left: 25px;
}

.style2::before{
top: -30px;
left: 50%;
border: solid transparent;
content: "";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(194, 225, 245, 0);
border-bottom-color: #fff;
border-width: 16px;
left: 25px;
}
.style2 span{
  top: -60px;
}


.about-sec3{
padding: 50px 0;
}


.abt3-bx{
clip-path: polygon(100% 0, 100% 91%, 95% 100%, 0 100%, 0 0);
background-color:var(--theme-color-text-link); 
padding: 30px;
height: 100%;
color: var(--bs-white);
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
position: relative;
z-index: 9;
}

.abt3-bx img{
width: 130px;
z-index: -1;
position: absolute;
right: 20px;
bottom: 20px;
opacity: 0.2;
filter: invert(100%);
}

.abt3-bx:hover{
transform: scale(1.05);
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
}

.abt3-bx ul li{
font-family: var(--text-font-family);  
letter-spacing: 0.3px;
font-size: 17px;
}

.machinery-table table{
overflow-x: auto;
-webkit-overflow-scrolling: touch;
width: 100%;
letter-spacing: 0.3px;
margin: 15px 0;
}

.machinery-table table tr:nth-child(2n+1) {
  
}

.machinery-table table tr:nth-child(2n) {
  background: #ECEAE0;
}
.machinery-table table tr th {
  padding: 10px;
  font-family: var(--text-font-family);
  background:var(--theme-color-text-link); 
  color: var(--bs-white);
}

.machinery-table table tr td {
  padding: 10px;
  font-size: 15px;
  font-family: var(--text-font-family);
  color: var(--theme-color-text);
}


.infra-bx a{
border:1px solid #d1d1d1;
padding: 5px;
margin: 15px 0;
display: block;
text-decoration: none;
position: relative;
overflow: hidden;
}

.infra-bx a span{
position: absolute;
right: 12px;
top: 12px;
width: 38px;
height: 38px;
line-height: 38px;
text-align: center;
background: var(--theme-color-text-link);
color: var(--bs-white);
border-radius: 50%;
}


.infra-bx a img{
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.infra-bx a:hover img{
transform: scale(1.05);
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
}


.cnt-outter{
  background: var(--theme-color-text-link);
  padding: 12px;
  position: relative;
  z-index: 9;
  margin-top: 15px;
}

.cnt-outter::before{
  position: absolute;
  content: '';
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: 12px;
  background: #fff url(../images/globe2.png);
  background-size: cover; 
  z-index: -1;
}

.cnt-outter h5{
font-family: var(--heading-font-family);
color: var(--theme-color1);
font-weight: 600;
padding-left: 20px;
font-size: 18px;
margin: 30px 0px 16px;
position: relative;
}

.cnt-outter h5::before{
border-top: 18px solid transparent;
border-right: 18px solid #fff;
content: "";
display: block;
height: 0px;
left: 38px;
position: absolute;
bottom: -23px;
width: 6px;
transform: rotate(45deg);
z-index: 9;
}

.cnt-box{
border-bottom: 1px solid #ececec;
padding: 22px 15px;
margin: 0 20px;
display: flex;
}

.cnt-box h4{
font-family: var(--heading-font-family);
color: var(--theme-color1);
font-size: 22px;
margin-bottom: 4px;
}

.cnt-box span{
background: var(--theme-border);
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
text-align: center;
line-height: 60px;
font-size: 22px;
}

.cnt-box p{
  margin-bottom: 0;
}

.cnt-box .cnt-info{
margin-left: 20px;
width: 70%;
}

.cnt-outter ul{
margin: 0;
padding:23px 0 20px 30px;
background: var(--theme-color-text-link);
position: relative;
}

.cnt-outter ul li{
  display: inline-block;
}

.cnt-outter ul li a{
  display: block;
 width: 35px;
 height: 35px;
  background: #fff;
  text-decoration: none;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #fff;
  font-size: 15px;
  margin-right: 8px;
}

.cnt-outter ul li:nth-child(1) a{
  background: #3055ae;
}

.cnt-outter ul li:nth-child(2) a {
 background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.cnt-outter ul li:nth-child(3) a {
  background: #9f0505;
}

.cnt-outter ul li:nth-child(4) a {
  background: #000;
}

.cnt-outter ul li:nth-child(5) a {
  background: #00669a;
}


.enq-right .form-control{
border: none;
border-bottom: 1px solid #ddd;
border-radius: 0;
box-shadow: none !important;
font-family: var(--text-font-family);
font-size: 15px;
margin-bottom: 20px;
padding: 15px 10px 15px 40px;
background: none;
}

.enq-right span{
position: absolute;
padding: 6px;
color: #b48b48;
font-size: 25px;
}


.enq-right .form-control:hover, .enq-right .form-control:focus{
  border-bottom: 1px solid #bb8734;
  -webkit-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease
}

.enq-right .sendbtn{
color: #fff;
border: none;
font-weight: 500;
padding: 12px 30px;
transition: 0.4s;
display: inline-block;
background: var(--theme-color-text-link);
text-transform: uppercase;
font-size: 15px;
border-radius: 30px;
font-family: var(--text-font-family);
cursor: pointer;
}

.enq-right .sendbtn i{
padding-right: 5px;
}

.pro-box{
padding: 6px;
margin:10px 0;
border-bottom: 1px solid #DBD8C8;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.pro-box:hover{
border-bottom: 1px solid var(--theme-color-text-link);  
}

.pro-box a{
  text-decoration: none;
  display: block;
}

.pro-box p{
margin: 0;
line-height: 24px;
padding-top: 5px;
display: flex;
height: 55px;
justify-content: space-between;
align-items: center;
}

.pro-box p span{
background: var(--theme-color-text-link);
color: var(--bs-white);
padding: 8px;
border-radius: 50%;
font-size: 15px;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.pro-box:hover p span{
  background: var(--theme-color1);
}



.single-product{
position: relative;
}

.single-product i{
position: absolute;
right: 12px;
top: 12px;
width: 38px;
height: 38px;
line-height: 38px;
text-align: center;
background: var(--theme-color-text-link);
color: var(--bs-white);
border-radius: 50%;
z-index: 99;
}

.slider-nav{
  position: absolute !important;
  bottom: 10px;
  width: 100%;
}


.slider-nav .s-pro-img {
 width: 80px !important;
  margin: 0 5px;
}

.slider-nav .s-pro-img img{
 margin: 0 5px;
  border: 1px solid var(--theme-color-text-link);
  cursor: pointer;
}
.slider-nav .slick-track{
  display: flex;
  justify-content: center;
}

.slider-nav .s-pro-img.slick-current img{
  opacity: 0.7;
}



.pro-title h1{
font-family: var(--heading-font-family) !important;
font-size: 38px;
}

.pro-details h3, .pro-details h4, .pro-details h5{
font-family: var(--heading-font-family) !important;
}

.pro-details .nav-tabs li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.pro-details .nav-tabs li a::before {
    content: '';
    position: absolute;
    background: var(--theme-color-text-hover);
    height: 2px;
    width: 100%; /* Full width */
    bottom: 0;
    left: 0;
    transform-origin: right center; /* Initially start from the right */
    transform: scaleX(0); /* Initially the line is not visible */
    transition: transform 0.7s ease; /* Animate the transform property */
}

.pro-details .nav-tabs li a:hover::before,
.pro-details .nav-tabs li a.active::before {
    transform: scaleX(1); /* Scale to full width on hover */
    transform-origin: left center; /* Move to left side when hovering */
}

.rating{
color: #FFC107;
}

.pro-details ul{
  display: flex;
  padding: 0;
}

.pro-details ul li{
list-style: none;
font-family: var(--text-font-family);
font-weight: 600;
color: #848484;
display: block;
/*width: 40px;
height: 40px;*/
text-align: center;
line-height: 40px;
margin-right: 15px;
background: var(--theme-border);
font-size: 15px;
padding: 0px 12px;
}

#details ul{
    display:block;
}

#details ul li{
text-align: left;
  background: none;
  line-height: 30px;
  font-weight: 500;
  list-style:square;
}

#details ul li::before {
	content: "\f26f";
	display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color:var(--theme-color-text-hover);
  padding-right:5px;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

.pro-details table{
width: 100%;
margin-bottom: 15px;
font-family: var(--text-font-family);
}

.pro-details table tr{
border-bottom: 1px solid #dfdbd3;
}

.pro-details table tr th{
padding: 10px;
font-weight: 600;
}

.pro-details table tr td{
color: var(--theme-color-text);
letter-spacing: 0.3px;
padding: 10px;
}


footer{
background:#151617; 
}

footer p{
text-align: left;
}

.f-links h4{
color: var(--bs-white);
position: relative;
}

.f-links h4::before{
display: inline-block;
width: 35px;
content: '';
height: 1px;
background: var(--bs-white);
margin-bottom: 7px;
margin-right: 10px;
}

.f-links h5{
    color: var(--bs-white);
    font-family: var(--text-font-family);
}
.f-links ul{
    padding-left: 0;
}

.f-links ul li{
    list-style: none;
    /*width: calc( 50% - 3px);*/
    /*display: inline-block;*/
}

.f-links ul li a{
    color: var(--theme-color-text);
    text-decoration: none;
    font-family: var(--text-font-family);
    font-size: 17px;
    display: block;
    line-height: 30px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
}

.f-links ul li a i{
    padding-right: 5px;
    color: var(--theme-color-text-link);
}

.f-links ul li a:hover{
    color: var(--theme-color-text-link);
}

.f-cnt i{
color: var(--theme-color-text-hover);
font-size: 28px;
padding-right: 12px;
}

.social-links{
padding-left: 0;
display: flex;
}

.social-links li{
    width: auto !important;
    list-style: none;
}

.social-links li a{
width: 42px;
height: 42px;
border: 1px solid var(--bs-gray-700);
text-align: center;
line-height: 42px !important;
font-size: 15px !important;
margin-right: 8px;
border-radius: 50%;
color: var(--bs-white) !important;
display: block;
transition: .4s;
-webkit-transition: .4s;
-moz-transition: .4s;
}

.social-links li a:hover{
    background:var(--theme-color-text-link); 
    border: 1px solid var(--theme-color-text-link);
}

.f-links .f-map {
text-decoration: none;
color: var(--theme-color-text-link);
letter-spacing: 2px;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
transition: .4s;
-moz-transition: .4s;
-webkit-transition: .4s;
border-bottom: 1px solid #444;
margin: 0px 0 0 30px;
padding-top: 12px;
display: inline-block;
}

.f-links .f-map:hover{
color: var(--bs-white);
}



.fixed-tp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: var(--theme-color-text-link);
  z-index: 999;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  color: #fff !important;
  text-decoration: none;
}



@media only screen and (min-width:0px) and (max-width:390px){ 

.navbar-toggler {
padding: 4px 9px !important;
}

}


@media only screen and (min-width:0px) and (max-width:575px){ 

.navbar-light .navbar-nav .nav-link.t-quote {
  display: inline-block;
  color: var(--bs-white) !important;
}

.offcanvas .btn-close{
  box-shadow: none !important;
font-size: 13px;
color: var(--bs-white);
}

.sub-menu .dropdown-menu {
  left: 30%;
}

.navbar-toggler {
  background: var(--theme-color1);
  color: var(--bs-white);
  padding: 6px 12px;
  font-size: 17px;
}


.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
  color: var(--theme-color2);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: var(--theme-color2);
}

.dropdown .dropdown-menu {
visibility: visible;
opacity: 1; 
display: none;
-webkit-transform: none; 
-moz-transform: none; 
-ms-transform: none);
-o-transform: none; 
transform:none; 
-webkit-transform-origin: none; 
-moz-transform-origin: none; 
-ms-transform-origin: none; 
-o-transform-origin: none; 
transform-origin: none; 
}

.dropdown .dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 1px 25px 0;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
}


.dropdown-submenu .dropdown-menu {
  left: 0;
  position: relative;
  max-width: 100%;
  margin: 0 10px;
}


.carousel-caption{
padding-bottom: 0px;
}

.carousel-caption h2 {
  font-size: 18px;
}

.carousel-caption p{
  display: none;
}

.carousel-caption a{
  font-size: 14px;
  padding: 6px 10px;
}

}

@media only screen and (min-width:576px) and (max-width:767px){ 
.dropdown .dropdown-menu {
visibility: visible;
opacity: 1; 
display: none;
-webkit-transform: none; 
-moz-transform: none; 
-ms-transform: none);
-o-transform: none; 
transform:none; 
-webkit-transform-origin: none; 
-moz-transform-origin: none; 
-ms-transform-origin: none; 
-o-transform-origin: none; 
transform-origin: none; 
}

.dropdown .dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 1px 25px 0;
  font-size: 14px;
  line-height: 30px;
}
}


@media only screen and (min-width:768px) and (max-width:991px){
.dropdown .dropdown-menu {
visibility: visible;
opacity: 1; 
display: none;
-webkit-transform: none; 
-moz-transform: none; 
-ms-transform: none);
-o-transform: none; 
transform:none; 
-webkit-transform-origin: none; 
-moz-transform-origin: none; 
-ms-transform-origin: none; 
-o-transform-origin: none; 
transform-origin: none; 
}

.dropdown .dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 1px 25px 0;
  font-size: 14px;
  line-height: 30px;
}
}


@media only screen and (max-width:991px){

.top-left, .top-right{
display: none;
}

.navbar-toggler {
background: var(--theme-color1);
color: var(--bs-white);
padding: 8px 15px;
font-size: 17px;
}

.logo {
  align-items: center;
  justify-content: space-between;
}

.navigation, .navbar {
  padding: 0;
}

.navigation .container-fluid {
  border-top: 0px solid var(--theme-border);
}

  }

 @media (min-width: 992px){
.navbar-toggler {
  display: none;
}
 }


@media only screen and (min-width:992px) and (max-width:1199px){ 

}

@media (width:1024px){

}


@media only screen and (min-width:1200px) and (max-width:1399px){ 

}

@media (min-width:1400px){ 

}