@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.5s ease;
    background-color: var(--light);
}

@font-face {
    font-family: 'Lora';
    src: url('../font/Lora-Regular.html') format('woff2'),
        url('../font/Lora-Regular-2.html') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-ThinItalic.html') format('woff2'),
        url('../font/Raleway-ThinItalic-2.html') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg1:#184799;
    --bg2:#fe5867;
    --bg3: #184799;
    --btn-color: #fd7115;
    --dark: #000;
    --gray: #222222;
    --light: #fff;
    --bg: #f7f7f7;
    --secondary: #ddd;
    --font1: 'Raleway';
    --font2:'Lora';
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1180px;
    margin: auto;
}

.container-fluid {
    padding: 0;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font2);
    line-height: 1.6;
}

a:hover {
    color: var(--bg1);
}

section {
    overflow: hidden;
    background-color: var(--bg);
}

/*-------------*/
.wrap-sec{
        padding:50px 0
}
.title-sec {
    padding: 5px 0px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.11em;
    color: var(--bg1);
    font-weight: 600;
    display: inline-block;
    font-family: var(--font2), sans-serif;
}


.sub-title {
    margin: 0 0 16px 0;
    font-family: var(--font1);
    color: var(--gray);
    line-height: 1.2;
    font-weight: 400;
    font-size: 2rem;
    color: var(--dark);
}

.heading-sec {
    font-size: 24px;
    text-transform: capitalize;
    font-family: var(--font1);
    line-height: 1.6;
    font-weight: 600;
    color: var(--gray);
}

.content-sec {
    font-size: 16px;
    word-spacing: 1.3px;
    line-height: 1.8;
    font-family: var(--font2);
    font-weight: 500;
}

.header-part {
    display: block;
    text-align: start;
    margin-bottom: 30px;
}

.btn-sec {
    padding: 8px 20px;
    background-color: var(--bg1);   
    color: var(--light);
    transition: all 0.5s ease;
    text-transform: capitalize;
    position: relative;
    z-index: 10;
    border: none;
    outline: none;
   
    border-radius: 5px;
}
.btn-sec:after{
    left: 50%;
    top: 0;
    width: 0%;
    height: 100%;
    position: absolute;
    content: '';
    transform: translate(-50%);
    background-color: var(--btn-color);
    z-index: -1;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.btn-sec:hover::after{
    width: 100%;
    color: var(--light);
    border-radius: 5px;
}

.enquiry-sec {
    display: none;
    align-items: center;
}


/*--------top-header---------*/
/**********/
.th-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.t-header {
    background: var(--light);
    z-index: 999;
    display: block;
    position: relative;
    padding: 8px 0;
    background: linear-gradient(to right,#184799,#6c194f 100%);
}

.top-header {
    display: flex;
    justify-content: space-between;
    
}

.th-element {
    display: flex;
    color: var(--light);
    gap: 10px
}

.th-element .th-icon {
    font-size: 15px;
    color: var(--bg1);
}

.th-icon img {
    width: 30px;
}

.th-element a {
    color: var(--light);
    font-size: 16px;
    font-weight: 700;
}

.th-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.th-social-links a {
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    line-height: 30px;
}

.th-social-links a:hover {
    color: var(--light);
    transform: scale(1.1);
}

.s-icon {
    border-radius: 50%;
    color: var(--light);
}

.s-icon img {
    width: 35px;
    transition: all 1s ease-in-out;
}


/*--------header---------*/
header {
    background-color: var(--light);
    box-sizing: border-box;
    box-shadow: 0px 1px 1px var(--dark);
   box-shadow: rgba(17, 17, 26, 0.6) 0px 2px 0px;
   height: 110px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    box-sizing: border-box;
    width: 100%;
}

.logo img {
    width: 210px;
    object-fit: content;
}

.nav-menu {
    display: flex;
     align-items: center;
     gap: 20px;
}

.nav-menu li {
    display: inline-block;
    position: relative;
  
}

.nav-menu li a {
    font-family: var(--font2);
    text-transform: capitalize;
    display: block;
    padding: 15px 15px 5px 15px;
    font-weight: 500;
    line-height: 40px;
    font-size: 20px;
    color: #00000;
}
.nav-menu li a:nth-child(:last){
    padding-right: 0;
}
.nav-menu li.drop-menu {
    position: relative;
    display: block;
    transition-delay: 0.6s;
}

.drop-content {
    position: absolute;
    top: 40px;
    width: 260px;
    height: 350px;
    display: none;
    background-color: var(--dark);
    z-index: 999;
    box-shadow: rgba(9, 9, 9, 0.2) 0px 2px 2px 0px;
    overflow: auto;
    /*border: 1px solid var(--secondary);*/
    transition:all 0.6s ease-in-out 0.4s;
}

.drop-menu:hover .drop-content {
    display: block;
    top: 60px;
}

.drop-content li {
    line-height: 50px;
    display: block;
    transition: all 1.8s ease;
    box-shadow: 0px 0px 1px var(--secondary);
}

.drop-content li a {
        color: var(--light);
    display: block;
    width: 100%;
    padding: 8px 10px;
    line-height: 1.3;
    font-size:15px;
    font-weight:400;
    transition: all 0.4s ease;
}

.drop-content li a:hover {
    color: var(--bg1);
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    color: var(--bg1);
    background-color: var(--light);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--bg1);
    background-color: var(--bg1);
    border-radius: 5px;
}
ul.drop-content li:after{
    display: none;
}

.click-btn {
    position: absolute;
    right: -3px;
    top: 26px;
    /*left: 3px;*/
    color: var(--light);
}
#navbar-sec.sticky .logo img{
        width: 200px;
}
#navbar-sec.sticky .nav-menu li a{
        padding: 15px 20px 15px;
        color:#00000;
}

.enq-icon img {
    width: 40px;
    animation: wave 0.8s ease infinite;
}

@keyframes wave {
    from {
        transform: roate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

.enq-number {
    display: inline-block;
    margin-left: 10px;
    padding: 14px 30px;
}

.enq-number:hover {
    color: var(--bg2);
}

/*----sticky-header----------*/

 /* sticky-header */
 #navbar-sec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fffff;
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 0px 1px var(--dark);
}

#navbar-sec.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
#navbar-sec{
    background: #ffff;
}
#navbar-sec.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

/*=========banner========*/
.banner-section {
    position: relative;
}

.ban-next.slick-arrow,
.ban-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 26px;
    font-weight:700;
    padding: 8px;
    cursor: pointer;
    color: var(--light);
    background-color: var(--bg1);
    transition: all 0.3s ease-in-out;
}
.ban-next.slick-arrow:hover,
.ban-back.slick-arrow:hover {  
    color: var(--bg1);
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.ban-next.slick-arrow {
    right: 1px;
}

.ban-back.slick-arrow {
    left: 1px;
}

.banner-img img{
    height: auto;
    object-fit: cover;
}

.banner-slider{
    position: relative;
}
.banner-slider .slick-dots button {
    width: 14px;
    height: 14px;
    background-color: var(--dark);
    text-indent: -9999px;
    padding: 4px;
    border: none;
    border-radius: 50%;
}

.banner-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
    position: absolute;
    bottom: 1rem;
    left: 45%;
}

.banner-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.banner-slider ul.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/*----about-us-------*/
.about-us {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 580px;
}
.about-us-img{
    width:50%;
    float: left;
}
.about-us-img img{
    width:100%;
    height: 520px;
    object-fit: cover;
    padding-right: 1rem;
    padding-bottom: 1rem;
}
.about-header .sub-title {
    color: var(--dark) !important;
    font-weight: 500;
}

.ab_btn {
    padding-left: 25px;
    padding-right: 25px;
    display: inline-flex;
}
.ab_btn:hover{    
    color: var(--light)!important;
}

.ab_btn span {
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: var(--light);
    transition: all 0.5s ease;
}

.ab_btn:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

.about-box-content p {
    font-family: var(--font2);
    color: var(--dark) !important;
    font-weight: 400;
    margin-top: 20px;
}

.about-btn {
    margin-top: 30px;
}

/*--=====about-sec-end========----*/
/*------counter-------*/
.counter-sec{
    background-image: url(../../image/img/bg/machine/4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}
.counter-sec:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    opacity: 0.8;
    z-index: -1;
}
.counter-element .sub-title{
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.5px;
}
.counter-element p{
    color: var(--light);
    font-family: var(--font2);
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 1.5;
}
.counter-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
    padding: 20px 20px 15px; 
    margin: 15px 0px;   
    border-radius:30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
}
.counter-box:hover{
    border-radius: 0px;
}
.counter-box::after{
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid var(--light);
}
.counter-icon {
    color: var(--light);
    font-size: 40px;
}
.counter-icon img{
    width: 60px;
    object-fit: cover;
}
.counter-content{
    color: var(--light);
    font-family: var(--font2);
    text-align: center;
    position: relative;
}

.counter-content .count-number{
font-size: 30px;
font-weight: 400;
letter-spacing: 1.3px;
display: inline-block;
margin-top: 0.6rem;
}
.counter-content span{
    font-size: 20px;
}
.count-name{
font-size: 25px;
font-weight: 300;
font-family: var(--font2);
text-transform: capitalize;
}

/*--=====category-sec-start========----
.p-slide{
    margin: 20px;
}
.category-section {
    background-color: var(--light);
}

.category-header .title-sec {
    background-color: var(--secondary);
}

.category-box {
    background-color: var(--secondary);
    padding: 1rem 1rem 0 1.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    margin: 30px 0;
    transition: all 0.5s ease-in-out;
}

.category-box:hover {
    background-color: var(--bg2);
    transform: translatey(10px);
}


.category-img {
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    z-index: 1;
    box-shadow: rgba(17, 17, 12, 0.5) 0px 3px 9px 0px;
}

.category-content {
    margin-top: 20px;
}

.category-img::after {
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--bg1);
    opacity: 0.9;
    border-radius: 50%;

}

.category-img img {
    width: 60px;
    transition: all 0.5s ease-in-out;
}

.category-box:hover .category-img img {
    transform: rotateY(360deg);
}

.category-bottom-sec {
    padding: 30px 10px;
}

.category-bottom-sec a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.category-box:hover .category-content p {

    color: var(--light);
}

.category-box:hover .category-bottom-sec .btn-more,
.category-box:hover .category-bottom-sec .btn-more span {
    color: var(--bg1);
}

/*--=====category-sec-end========----*/




/*--=========md-banner_start=========--*/
.md-ban-section{
    background-image: url(../../image/img/bg/machine/1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}
.md-ban-section:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color:rgba(24, 72, 153, 0.4);
    z-index: -1;
}
.md-ban-section .row{
    align-items: center;
}

.md-ban-bg{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: 0;
}
.md-ban-box{
    position: relative;
    padding: 2rem 4rem 2rem;
    background-color:rgba(19, 19, 20, 0.6);
    box-shadow: rgba(250, 250, 250, 0.3) 0px 1px 3px 0px, rgba(250, 250, 250, 0.16) 0px 1px 2px 0px;
}
.md-ban-box .sub-title{
    color: var(--btn-color);
    font-size: 4rem;
    font-family: var(--font2);
    font-weight: 500;
    text-align:left!important;
}
.md-ban-title{
    color: var(--light);
    font-family: var(--font2);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.md-ban-content{
    margin: 1rem auto;
}
.md-ban-content p{
    font-family: var(--font1);
    font-weight: 300;
    word-spacing: 1.4px;
    font-size: 15px;
}
.md-ban-content .heading-sec{
    font-family: var(--font1);
    color: var(--light);
    font-style: italic;
    font-weight: 700;
}
.md-ban-content p{
    font-family: var(--font2);
    color: var(--light);
    font-weight: 300;
}
.md_ban_box{
    background-color: var(--light);
    text-align: center;
}
/*--=========md-ban-end=========--*/

/********** client ************/
.our-client {
    background-color: var(--light);
    z-index: 9;

}

.client-title {
    color: var(--bg2);
}

.c-img {
    overflow: hidden;
    display: block;
    transition: all 0.3s ease;
    border-radius: 1px;
    padding: 10px;
    background-color: transparent;
}

.c-img img {
    height: 65px;
    width: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
    cursor: grab;
    border-radius: 1px;
    background-color: transparent;
}

.c-box {
    margin: 10px 5px;
    float: left;
    position: relative;
    background-color: var(--light);
    padding: 10px;    
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}

.client-slider {
    padding: 10px;
    background-color: var(--light);
}


/*-------why-us------- */
.why-us{
    position: relative;
    z-index: 9;
    background-image: url(../../image/img/bg/why-us.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-size: cover;
}
.why-us:after{
    background-color: var(--bg);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
 .why-header .sub-title{
        color: var(--bg1);
        font-family: var(--font2);
        text-transform: capitalize;
    }
    .why-header p{
        color: var(--dark);
        font-family: var(--font2);
    }
   

.why-box{
    text-align: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light);
    border-radius: 5px;
    min-height:230px;
    margin-bottom: 25px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition:all 0.4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.why-box:hover{
    transform:translateY(-10px);
}
.why-content{
    margin-top: 1rem;
}
.why-content .heading-sec{
    line-height: 1.4;
    color: var(--dark);
    font-weight: 300;
    font-family: var(--font2);
    margin-bottom: 15px;
    min-height: 25px;

}
.why-icon img{
    width: 40px;
}
.why-element{
    position: relative;
    z-index: 9;
}
.why-element::after{
    top: 30%;
    left: 30%;
    position: absolute;
    content: '';
    background-color: var(--bg1);
    border-radius: 0%;
    height: 40%;
    width: 40%;
    z-index: -1;
}
/*------product-sec-------*/
.product-sec{
  background-color: var(--light);
  position:relative;
}
.product-img img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.product-img{
    overflow: hidden;
}
.product-img img:hover{
transform: scale(1.1);
}
.product-box{
    background-color: var(--light);
    margin: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 5px 5px 0px 5px;
    border: 1px solid var(--light);
}
.product-name{
    background-color: var(--bg1);  
}
.product-name a{
    display: block;
    text-align: center;
    color: var(--light);
    padding: 10px 5px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
}
.product-name a:hover{
    background-color: var(--btn-color);
}

.product-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.product-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.product-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.product-slider ul.slick-dots .slick-active button {
    background-color: var(--btn-color);
    width: 20px;
}

.testi-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--bg);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.testi-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.testi-slider ul.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
}


.product-img img{
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.p-slider{
    position:static;
}

/*----services-------
.service-img {
    padding: 2rem 3rem;
    
}
.service-img img{
    width: 200px;
    
}

.service-card {
    padding: 2rem;
    background-color: var(--secondary);
    text-align: center;
    transition: all 0.2s ease;
    border-radius: 1rem;
    border: 1px solid rgba(155, 154, 152, 0.2);
    box-shadow: rgba(141, 138, 132, 0.4) 0px 5px, rgba(255, 254, 251, 0.3) 0px 10px,
     rgba(155, 154, 152, 0.2) 0px 15px;
     margin: 30px auto;
     box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
     text-align: center;
}
.bg-1{background-color: var(--bg1);}


.service-card:hover {
    background-color: var(--bg1);
}

.service-card:hover p {
    color: var(--light);
}

.service-card:hover .service-btn {
    border-color: var(--bg2);
    color: var(--light);
    background-color: var(--bg2);
}

a.service-btn {
    border-radius: 30px;
    border: 1px solid var(--bg2);
    padding: 0.4rem 1rem;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    font-family: var(--font2);
}

a.service-btn:hover {
    border-color: var(--bg2);
    background-color: var(--bg2);
}


/*********contact_us******/
select.input-select{
        width: 100%;
    border: none;
    padding-left: 1.3rem;
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 500;
    color: #75758b;
    outline: none;
}
.contact-box {
    border: 4px solid rgba(250, 250, 250, .5);
    padding: 25px 30px;
    margin: 0px 0 30px 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  }
  .contact-section{
    background-color: var(--bg);
  }
  .contact-title p {
    padding: 5px 0px;
    border-radius: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.11em;
    color: var(--dark);
    font-weight: 700;
    display: inline-block;
    font-family: var(--font2), sans-serif;
  }
  
  .con-ul {
    margin: 0px 0;
    padding-bottom: 0px;
  }
  
  .c-list {
    width: 100%;
    position: relative;
    margin: 0px 0 20px 0;
    min-height: 80px;
  }
  .comp-logo {
    z-index: 9;
    padding:10px ;
}
  .c-icon {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  
  .c-icon i {
    width: 30px;
    height: 30px;
    background: var(--bg1);
    border-radius: 50%;
    text-align: center;
    padding: 20px;
    color: var(--light);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cb-content {
    margin-left: 20px;
  }
  
  .cb-content span {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    display: inline-block;
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--font2);
    text-transform: capitalize;
    font-weight: 600;
  }
  
  .cb-content p {
    font-size: 14px;
    line-height: 26px;
    width: 100%;
    color: #333;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .cb-content p a:hover {
    text-decoration: underline;
    color: var(--bg1);
  }
  
  .cb2-content {
    font-size: 24px;
    line-height: 34px;
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 500;
  }
  
  /*****message_box******/
  .contact-message {
    padding: 20px 0;
    width: 100%;
    font-size: 15px;
    line-height: 28px;
    color: #666;
    display: inline-block;
  }
  .message1{
    font-family: var(--font2);
    font-weight: 400;
    color: var(--dark);
  }
  
  .message1 p {
    font-size: 24px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--font1);
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .message1 p span {
    color: var(--bg1);
    padding-right: 14px;
  }
  
  .message2 {
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    padding: 15px 15px 15px 10px;
    vertical-align: middle;
    transition: all 0.3s;
    border: 1px solid #e6e6e6;
    color: #222;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 10px 0;
  }
  
  .message2 span {
    color: var(--bg1);
  }
  
  .message2 input {
    border: none;
    padding-left: 15px;
    outline: none;
    width: 100%;
  }
  
  .message3 {
    width: 100%;
    height: 190px;
    background: #fff;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    padding: 15px 15px 15px 10px;
    vertical-align: middle;
    transition: all 0.3s;
    border: 1px solid #e6e6e6;
    color: #222;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 10px 0;
  }
  
  .message3 textarea {
    padding-left: 15px;
    border: none;
    outline: none;
    height: 160px;
    width: 100%;
  }
  
  .contact-form textarea.input-text {
    height: 190px;
    padding-top: 25px;
    padding-bottom: 10px;
  }
  
  .contact-btn{
    color: var(--light);
    margin-top: 1rem;
  }
  
 
/*_________testimonail________*/

.testimonial-sec{
    background-color: var(--light);
    position: relative;
    background-image: url(../../image/img/bg/machine/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.testimonial-sec:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: var(--gray);
    opacity: 0.9;
    z-index: -1;
}
.testimonial-header .title-sec{
    background-color: var(--bg1);
    color: var(--light);
    padding: 5px 10px;
}
.testi-slider{
    position: relative;
    background-color: transparent;
}
.testi-slider .f-back.slick-arrow{
    left: -2rem;
}
.testi-slider .f-next.slick-arrow{
    right: -2rem;
}
.testi-box{
    padding: 2rem;
    background-color:transparent;
    border-radius: 1rem;
    margin: 2rem ;
    position: relative;
    z-index: 9;
}
.testi-box:after{
    position: absolute;
    left: 0;
    top: 0;
    content: '\f10d';
    font-family: FontAwesome;
    z-index: 1;
    color: var(--btn-color);
    font-size: 32px;
}
.testi-slider .content-sec{
    color: var(--light);
}
.testi-img img{
    width: 60px;
    height: 60px;
}
.testi-thumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testi-name{
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 2rem;
    font-weight: 600;
    color: var(--btn-color);
}
.t-name{
    color:var(--light);
    font-family: var(--font2);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 1.3px;
}

/*_________footer________*/

footer {
    background-color: var(--dark);
    background-color: var(--gray);
    padding: 40px 0 10px 0;
}

.footer-logo img {
    width: 80px;
    background-color: var(--light);
    border: 1px solid white;
    /*padding: px;*/
}

.footer-content p {
    color: var(--light) !important;
    font-family: var(--font1), sans-serif;
    padding: 0px 0;
}
.footer-content  ol li{
    color :white !important;
    margin: 0;
}
.footer-content  ol{
     margin: 0 !important;
     padding: 0;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

ul.footer-icons li a {
    display: flex;
    font-size: 16px;
    color: var(--light);
    border: 1px solid var(--bg3);
    padding: 11px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    font-family: var(--font2);
}

ul.footer-icons li a:hover {
    background-color: var(--dark);

}

.footer-heading {
    font-size: 20px;
    font-family: var(--font2);
    color: var(--bg1);
    color: var(--light);
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid  var(--bg1);
    display: inline-block;
}
.footer-element{
    height: 250px;
    overflow-x: hidden; 
}
.footer-element li {
    padding: 5px 0;
    margin-bottom: 5px;
}

.footer-element li a {
    font-family: var(--font2);
    color: var(--light);
    /*text-transform: capitalize;*/
}

li.footer-list {
    display: flex;
    gap: 1rem;
}

li.footer-list span.f-icon {
    color: var(--light);
    font-size: 18px;
}

.footer-item {
    /*height: 270px;*/
    /*overflow-x: hidden;*/
}
ul.footer-element li span{
    color: var(--light);
    padding-right: 10px;
    color: var(--bg1);
}

.footer-element::-webkit-scrollbar {
    width: 3px;
}

.footer-element::-webkit-scrollbar-track {
    background: var(--bg1);
    border-radius: 20px;
}

.footer-element::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 1px;
}
.copy_right_sec{
    background-color: var(--gray);
}
.copy-right {
    text-align: center;
    padding: 10px 0;
}

.copy-right span {
    color: var(--light);
    font-family: var(--font2);
}

.copy-right span a {
    color: var(--bg1);
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.3px;
}

.copy-right span span {
    color: var(--light);
    font-family: var(--font2);
    font-weight: 400;
    font-size: 18px;
}


/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--dark);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 40px;
    color: var(--light);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--secondary);
    color: var(--bg1);
}

#scroll-top:active {
    background-color: var(--bg2);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    top: 90vh;
    left: 2px;
    display: block;
    width: 3.5rem;
    padding: 5px;
    border-radius: 0 5px 5px 0;
    z-index: 999;
    transition: all 1s ease;
}

.fixed-wtsp:hover {
    transform: scale(1.1);
}


/* --------inner-page----- */


/******breadcrump*******/

.breadcrump-sec{
    background: url('../../image/img/bg/machine/1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    }
    
    .bread-title{
        font-family: var(--font1);
        font-size: 35px;
        text-transform: capitalize  ;
        letter-spacing: 1.5px;
        font-weight: 700;
        color:var(--light);
        margin-bottom: 50px;
      
    }
    .b-links{
      display: inline-block;
      background-color: var(--light);
      padding: 10px 20px;
      color:var(--dark);
      border-radius: 10px;
      font-family: var(--font2);
      font-weight: 800;
      text-transform: capitalize;
    }
    .b-links a{
      font-size: 18px;
      letter-spacing: 1.1px;
      padding: 0 5px;
      text-transform: capitalize;
      font-weight: 600;
      text-decoration: none;
      color:var(--dark);
      margin-bottom: 50px;
    }
    .b-item.active{
      color:var(--bg1);
        text-transform: capitalize;
        font-family: var(--font1);
        letter-spacing: 1.2px;
        font-size: 18px;
        font-weight: 600;
    }
   span.fa-solid{
      color: #000;
      
    }




.market-place {
    background-color: var(--secondary);
    padding: 40px 0;
    position: relative;
}
a.market-btn {
    display: block;
    border-radius: 5px!important;
}
.market-title{
    color: var(--bg1);
}
.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font1),sans-serif;
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font1),sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
    height: 60px;
}
/*----media_queries-------*/
@media (max-width:992px) {
    section {
        padding: 30px 0;
        overflow: hidden;
    }

    .title-sec {
        color: var(--bg1);
        font-family: var(--font1), sans-serif;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 1.2px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2);
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 500;
        word-spacing: 2px;
        letter-spacing: 1.2px;
    }

    .heading-sec {
        font-size: 16px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.5;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.6;
        font-family: var(--font2);
        font-weight: 300;
        text-align: left;
    }

    .header-part {
        padding: 0px 0px;
    }

    /*-------top-header--------*/
    .t-header {
        display: flex;
    }
    .th-links{
        display: none;
    }
    .th-social-links{
        gap:10px;
    }

    .nav-menu {
        display: none;
    }
    .top-header{
        justify-content: center;
    }
    header {
        position: relative;
        width: 100%;
        background-color: var(--light);
        z-index: 999;
        overflow: visible;
    }
    .header{
        display: flex;
        justify-content: space-between;
    }

    .comp-logo img {
        
        width: 80px;
    }

    .enq-icon {
        display: none;
        align-items: center;
    }

    .enq-icon img {
        width: 30px;
    }

    .enq-number {
        font-size: 13px;
        font-family: var(--font1);
    }

    .toggle-btn {
        margin: 10px;
        cursor: pointer;
        height: 30px;
        width: 30px;
        order: 3;
    }

    .toggle-btn>* {
        background-color: var(--bg1);
        background-color: var(--light);
        display: block;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
    }

    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        opacity: 0;
    }

    .toggle-btn.active .span3 {
        transform: rotate(-45deg) translate(1px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        z-index: 999;
        background-color: var(--secondary);
        background-color: var(--dark);
        flex-direction: column;
        width: 100%;
        left: 0;
    }

    .nav-menu>li {
        display: block;
        line-height: 35px;
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 30px;
        font-weight: 600;
        font-size: 1rem;
        line-height: 30px;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
        color: var(--light);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--dark);
        background-color: var(--secondary);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        top: 10px;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--bg);
        background-color: var(--dark);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
    }
    .drop-content li a{
        font-size: 16px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    }
    .enquiry-sec{
        display: none;
    }

    /* -----banner----- */
    .banner-img img{
        min-height: 100px;
        height: auto;
        object-fit: cover;
    }
    .ban-next.slick-arrow, .ban-back.slick-arrow{
        position: absolute;
        content: '';
        z-index: 1;
        top: 45%;
        font-size: 16px;
        font-weight:400;
        padding: 8px;
    }
    /*-----about-us------ */
    .about-us{
        margin-bottom: 30px;
    }
    .about-us-img{
        width: 100%;        
    }

    .about-us-img img{
        padding-right: 0rem;
        height: auto;
    }
    .cb2-content {
        font-size: 20px;
        line-height: 40px;
        color: var(--dark);
        text-transform: capitalize;
        font-family: var(--font1);
        font-weight: 500;
      }
    /* -------- */
    .md-ban-box{
        position: relative;
        padding: 1rem 2rem 1rem;
        margin-bottom: 2rem;
        background-color: rgba(19, 19, 20, 0.8);
    }
 

    .why-element::after{
        display: none;
    }
    /* -------- */
    /* ----product-box---- */
    .product-box{
        margin: 0;
    }
    /* -------- */
    .counter-box{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .c-img img{
        height: 80px;
    }
    .service-img img{
        width: 180px;
    }
    .service-content{
        text-align: center;
    }

    /*-------why-choose */
   
    .footer-heading{
        margin-bottom: 0px;
    }
    .footer-wrapper{
        margin-bottom: 30px;
    }
    .contact-form{
        padding: 1rem 0;
    }
    .testi-slider .f-back.slick-arrow{
        left: -1rem;
    }
    .testi-slider .f-next.slick-arrow{
        right:-1rem
    }
    .feature-slider .f-back.slick-arrow,
    .feature-slider .f-next.slick-arrow{
  top:90%;
    }
    .feature-sec{
        padding-bottom: 100px;
    }
 
}
