
@font-face {
    font-family: 'Gulliver-Bold';
    src: url('../fonts/Gulliver-Bold.otf');
} 

@font-face {
    font-family: 'Gulliver-Regular';
    src: url('../fonts/Gulliver-Regular.otf');
} 

@font-face {
    font-family: 'Lato-Regular';
    src: url('../fonts/Lato-Regular.ttf');
} 

@font-face {
    font-family: 'Lato-Medium';
    src: url('../fonts/Lato-Medium.ttf');
} 

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/Lato-Bold.ttf');
} 

html {
    scroll-behavior: smooth;
  }
  
:root {
    --blue-primary: #3C99DC;
    --lightblue: #00BFFF;
    --darkblue: #2B4592;
    /* --lightgrey: #f3f3f3; */
    --lightgrey: #f7f7f7;
    --dimgrey:#eeeeee;
    --grey:#333333;
  /*  --black-primary: #0f0f0f;*/
    --black-primary:#2f2f2fd4;
    --white-primary: #ffffff;
    --headingbold-font: 'Gulliver-Bold';
    --headinglight-font: 'Gulliver-Regular';
    --body-font: 'Lato-Regular';
    --body-font-medium: 'Lato-Medium';
    --body-font-bold: 'Lato-Bold';
}

body{
    font-family: var(--body-font);
    top:0px!important;
}  

h1{
    font-size: 28px;
    line-height: auto;
}


h2{
    font-size: 24px;
    line-height: auto;
}

h3{
    font-size: 20px;
    line-height: auto;
}

h4{
    font-size: 16px;
    line-height: auto;
}

a{
    text-decoration: none;
}

.clj_business_unit .section-title-center-light h2{
    color: #2f2f2fd4 !important;
}



.section-title-left-dark h2{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-left-dark h2::after{
    content: '';
    height:5px;
    width:102px;
    background: var(--blue-primary);
    display: block;
    margin: 15px 0px 35px 0px;
}


.section-title-left-dark h1{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-left-dark h1::after{
    content: '';
    height:5px;
    width:102px;
    background: var(--blue-primary);
    display: block;
    margin: 15px 0px 35px 0px;
}

.section-title-center-dark h1{
    font-family: var(--headingbold-font);
    /*color: var(--black-primary);*/
    color:#2f2f2fd4;
    text-align: center;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-center-dark h1::after{
    content: '';
    height:5px;
    width:102px;
    /*background: var(--blue-primary);*/
    background:#2f2f2fd4;
    display: block;
    margin: 15px auto 35px auto;
}


.section-title-center-dark h2{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: center;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-center-dark h2::after{
    content: '';
    height:5px;
    width:102px;
    background: var(--blue-primary);
    display: block;
    margin: 15px auto 35px auto;
}


.section-title-left-light h2{
    font-family: var(--headingbold-font);
    color: var(--white-primary);
    text-align:left;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-left-light h2::after{
    content: '';
    height:5px;
    width:102px;
    background: var(--white-primary);
    display: block;
    margin: 15px 0px 35px 0px;
}



.section-title-center-light h2{
    font-family: var(--headingbold-font);
   color: var(--white-primary); /*ashraf*/
    /*color:#2f2f2fd4;*/
    text-align: center;
    margin-bottom: 36px;
    font-size: 28px;
    line-height: auto;
}

.section-title-center-light h2::after{
    content: '';
    height:5px;
    width:102px;
   /* background: var(--white-primary);ashraf*/
   background:#2f2f2fd4;
    display: block;
    margin: 15px auto 35px auto;
}

.blue-btn{
    background: var(--darkblue);
    color: var(--white-primary);
    text-decoration: none;
    display: block;
    width: max-content;
    padding: 10px 20px;
    font-family: var(--body-font-bold);
    border: 2px solid var(--darkblue);
    transition: ease-in-out;
    font-size: 16px;
}

.blue-btn:hover{
    background: var(--white-primary);
    color: var(--darkblue);
    border: 2px solid var(--darkblue);
}


form input{
    background: var(--dimgrey);
    color: var(--black-primary);
    border: 1px solid var(--black-primary);
    border-radius: 0px;
    padding: 12px 24px;
    --webkit-appearance:none;
    color: #212529;
}

form input::placeholder{
    color: #212529;
    opacity: 1; 
}

form input::-moz-placeholder{
    color: #212529;
    opacity: 1; 
}

form input::-webkit-input-placeholder{
    color: #212529;
    opacity: 1; 
}


form input[type="submit"]{
    background: var(--darkblue);
    color: var(--white-primary);
    border: 1px solid var(--darkblue);
    border-radius: 0px;
    padding: 12px 24px;
}

form input:focus{
    outline: 0;
}

header{
    background:linear-gradient(to top, transparent, black) 
    no-repeat top;
	background-size: 100% 100%;
    height:100px;
    position: fixed;
    z-index: 999;
    width: 100%;
}

header .row{
    align-items: center;
}

.clj_topbar{
    padding: 5px 0px;
    border-bottom: 1px solid #9b9b9b;
}

.clj_topbar .row{
    align-items: center;
}

.clj_topbar .left-block{
    color:var(--white-primary);
    font-size: 13px;
}

@media (max-width:767px){
    .clj_topbar .left-block{
        display: none;
    }
}

.clj_topbar .left-block i{
    color: var(--white-primary);
    margin-right: 10px;
}

.clj_topbar .left-block .seprate-pipe{
    padding: 0px 15px;
}

.clj_topbar .right-block{
    display: flex;
    justify-content: right;
    align-items: center;
}

.dropdown-language{
    color: var(--white-primary);
    font-size: 13px;
    margin-right: 15px;
}

.topbar-social i{
    background: var(--dimgrey);
    border-radius: 50%;
    color: var(--black-primary);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
}

.header-logo{
    width: 218px;
    height: auto;
}

.navbar{
    justify-content: right;
}

.mainmenu{
    list-style: none;
    display: inline-flex;
    margin: 0;
    padding: 0;
    align-items: center;
    margin-right: 20px;
}


.mainmenu li a{
    color: var(--white-primary);
    font-size: 14px;
    font-family: var(--body-font);
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 0px;
}

.seprater-menu{
    color: var(--white-primary);
    margin: 0px 20px;
}

.sub-menu{
    background: var(--white-primary);
    padding: 20px;
    position: absolute;
    min-width: 180px;
    margin-top: 0px;
    display: none;
    z-index: 999;
    padding: 0;
    padding-bottom: 10px;
}

.sub-menu li{
    border-bottom: 1px solid #9b9b9b;
    list-style-type: none;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0;
    border-bottom: 1px solid #9b9b9b;
    list-style-type: none;
}

.sub-menu li a{
    font-size: 15px!important;
    font-family: var(--body-font)!important;
    text-transform: capitalize!important;
}



.sub-menu li:last-child{
    border-bottom: 0px solid var(--lightgrey);
    margin-bottom: 0px;
    padding-bottom: 0px;
}


.mainmenu li .sub-menu a{
    color: var(--black-primary)!important;
    font-size: 15px;
    font-family: var(--body-font);
    text-transform:capitalize;
    display: inline;
}

.mainmenu li .sub-menu a:hover{
    color: var(--blue-primary)!important; 
}

.mainmenu li .sub-menu a::before{
    content: '';
    border: solid var(--black-primary);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-right: 10px;
}

.mainmenu li .sub-menu a:hover::before {
    border: solid var(--blue-primary);
    border-width: 0 1px 1px 0;
}

.has-children::after{
    content:'';
    border: solid var(--white-primary);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
    transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
    margin-bottom:4px;
    margin-left: 5px;
    cursor: pointer;
}


.innerpage-header .has-children::after{
    content:'';
    border: solid var(--black-primary);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
    transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
    margin-bottom:4px;
    margin-left: 5px;
    cursor: pointer;
}

.navbar ul li:hover > ul{
    display: block;
}

.navbar ul ul ul{
    left: 100%;
    top: 0px;
}



@media(max-width:767px){

 
    .navbar{
        left: -100%;
        position:absolute;
        height: 100vh;
        width:100%;
        background: var(--lightgrey);
        transition: all 0.5s ease-in-out;
        margin-top: -45px;
        align-items: flex-start;
        padding-top: 75px;
    }

    .navbar.slideleft{
        left: 0%;
        transition: all 0.5s ease-in-out;
        height: 100vh;
        width:70%;
        background: var(--lightgrey);
        margin-top: -45px;
        overflow: hidden;
        align-items: flex-start;
        padding-top: 75px;
    }

    .overflow-stop{
        overflow: hidden;
    }

    .mainmenu{
        background: var(--lightgrey);
        padding: 15px 15px;
        width: 100%;
        display: block;
        margin-right: 0px;
        margin-top: 5px;
    }

    header{
        height: 95px;
    }

    


}


.search-icon i{
    color: var(--white-primary);
    cursor: pointer;
}


.innerpage-header{
    background:var(--white-primary);
	background-size: 100% 100%;
    height:115px;
    position: fixed;
    z-index: 9999;
    width: 100%;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.innerpage-header .row{
    align-items: center;
}


.innerpage-header .clj_topbar{
    padding: 5px 0px;
    background: var(--blue-primary);
}

.innerpage-header .clj_topbar .row{
    align-items: center;
}

.innerpage-header .clj_topbar .left-block{
    color:var(--white-primary);
    font-size: 13px;
}

.innerpage-header .clj_topbar .left-block i{
    color: var(--white-primary);
    margin-right: 10px;
}

.innerpage-header .clj_topbar .left-block .seprate-pipe{
    padding: 0px 15px;
}

.innerpage-header .clj_topbar .right-block{
    display: flex;
    justify-content: right;
    align-items: center;
}

.innerpage-header .dropdown-language{
    color: var(--white-primary);
    font-size: 13px;
    margin-right: 15px;
}

.innerpage-header .topbar-social i{
    background: var(--dimgrey);
    border-radius: 50%;
    color: var(--black-primary);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
}


.innerpage-header .mainmenu li a{
    color: var(--black-primary);
    font-size: 14px;
    font-family: var(--body-font);
    text-transform: uppercase;
}

.innerpage-header .seprater-menu{
    color: var(--black-primary);
    margin: 0px 20px;
}

.innerpage-header .search-icon i {
    color: var(--white-primary);
    background: var(--blue-primary);
    padding: 5px;
    border-radius: 0px;
}







.headerbgwhite{
    background:var(--white-primary);
	background-size: 100% 100%;
    height:110px;
    position: fixed;
    z-index: 9999;
    width: 100%;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  display: none;
}

.headerbgwhite .row{
    align-items: center;
}


.headerbgwhite .clj_topbar{
    padding: 5px 0px;
    background: var(--blue-primary);
}

.headerbgwhite .clj_topbar .row{
    align-items: center;
}

.headerbgwhite .clj_topbar .left-block{
    color:var(--white-primary);
    font-size: 13px;
}

.headerbgwhite .clj_topbar .left-block i{
    color: var(--white-primary);
    margin-right: 10px;
}

.headerbgwhite .clj_topbar .left-block .seprate-pipe{
    padding: 0px 15px;
}

.headerbgwhite .clj_topbar .right-block{
    display: flex;
    justify-content: right;
    align-items: center;
}

.headerbgwhite .dropdown-language{
    color: var(--white-primary);
    font-size: 13px;
    margin-right: 15px;
}


.headerbgwhite .topbar-social i{
    background: var(--dimgrey);
    border-radius: 50%;
    color: var(--black-primary);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}


.headerbgwhite .mainmenu li a{
    color: var(--black-primary);
    font-size: 14px;
    font-family: var(--body-font);
    text-transform: uppercase;
}



.togglemenu_btn{
    position: absolute;
    top: 54%;
    left: 88%;
    display:none;
}

@media (max-width:767px){

    header .col-md-9{
        padding:0;
    }

    .togglemenu_btn{
        position: absolute;
        top: 54%;
        left: 88%;
        display:block;
    }

    .togglemenu_btn i{
        color: var(--white-primary);
        font-size: 22px;
    }

    .headerbgwhite .togglemenu_btn i{
        color: var(--grey);
        font-size: 22px;
    }

    .innerpage-header .togglemenu_btn i{
        color: var(--grey);
        font-size: 22px;
    }

  

    header .mainmenu li{
        padding: 0px 0px;
        border-bottom: 1px solid var(--dimgrey);
    }

    .headerbgwhite .mainmenu li:last-child{
        padding: 0px 0px;
        border-bottom: 0px solid var(--white-primary);
    }

    header .mainmenu li a{
        color: var(--black-primary);
        display: inline-block;
        font-size: 18px;
    }

    header.transparent{
        display: none;
    }

    header.headerbgwhite {
        height: 95px;
        display: block!important;
    }


    .header-logo img{
        z-index: 999;
        position: relative;
    }

    
    .headerbgwhite .mainmenu li a{
        color: var(--black-primary);
        display: inline-block;
        font-size: 18px;
    }

    .innerpage-header .mainmenu li a{
        font-size: 18px;
    }

    .sub-menu{
        background: var(--lightgrey);
        padding:0px 10px!important;
        min-width:100%;
        position: static;
    }

    .sub-menu li a{
        font-size: 18px!important;
        font-family: var(--body-font)!important;
        text-transform: capitalize!important;
    }

    .togglemenu_btn.on .fa-close{
        display: block;
        width: 25px;
        height: 25px;
        background: var(--blue-primary);
        text-align: center;
        color: var(--white-primary);
        border-radius: 50%;
        font-size: 18px;
        line-height: 24px;
    }

    .togglemenu_btn.on .fa-bars{
        display: none;
    }

    .togglemenu_btn .fa-close{
        display: none;
    }

    .togglemenu_btn .fa-bars{
        display: block;
    }


}

.headerbgwhite .seprater-menu{
    color: var(--black-primary);
    margin: 0px 20px;
}

.headerbgwhite .search-icon i {
    color: var(--white-primary);
    background: var(--blue-primary);
    padding: 5px;
    border-radius: 50px;
}



.main-banner{
    margin-top: -100px;
}


.btn-fixed-navigate{
    position: absolute;
    right: 0;
    margin-top: -50px;
    z-index: 9;
}

@media (max-width:767px){
    .btn-fixed-navigate{
        position: absolute;
        right: 0;
        margin-top: -50px;
        z-index: 9;
        bottom: 0;
    }
    
}

.textile_nav_btn{
    background: var(--darkblue);
    color: var(--white-primary);
    text-decoration: none;
    display: inline-block;
    width: max-content;
    padding: 13px 35px;
    font-family: var(--body-font-medium);
    border: 0;
    transition: ease-in-out;
    font-size: 16px;
}

.signage_nav_btn{
    background: var(--darkblue);
    color: var(--white-primary);
    text-decoration: none;
    display: inline-block;
    width: max-content;
    padding: 13px 35px;
    font-family: var(--body-font-medium);
    border: 0;
    transition: ease-in-out;
    font-size: 16px;
}

@media(max-width:767px){
    .textile_nav_btn{
        background: var(--darkblue);
        color: var(--white-primary);
        text-decoration: none;
        display: inline-block;
        width: max-content;
        padding: 8px 24px;
        font-family: var(--body-font-medium);
        border: 0;
        transition: ease-in-out;
        font-size: 13px;
    }
    
    .signage_nav_btn{
        background: var(--darkblue);
        color: var(--white-primary);
        text-decoration: none;
        display: inline-block;
        width: max-content;
        padding: 8px 24px;
        font-family: var(--body-font-medium);
        border: 0;
        transition: ease-in-out;
        font-size: 13px;
    } 

    
}

.textile_nav_btn:hover{
    background: var(--lightblue);
    color: var(--white-primary);
}

.signage_nav_btn:hover{
    background: var(--lightblue);
    color: var(--white-primary);
}

.product_single_banner{
    margin-top: 0px;
}


.clj_why_colorjet{
    padding: 50px 0px;
}


.clj_why_colorjet .icon-box{
    text-align:center;
}

.clj_why_colorjet .icon-box i{
    font-size: 95px;
    color: var(--blue-primary);
    background: var(--white-primary);
    border: 4px solid var(--blue-primary);
    border-radius: 50%;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.clj_why_colorjet .icon-box i:hover{
    color: var(--white-primary);
    background: var(--blue-primary);
}

.clj_why_colorjet .icon-box img{
    margin-bottom: 15px;
    height: 135px;
    width: 135px;
}

@media(max-width:767px){
    .clj_why_colorjet .icon-box img{
        margin-bottom: 15px;
        height: 90px;
        width: 90px;
    }    
}

.clj_why_colorjet .icon-box h3{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    margin-bottom: 15px;
}

.clj_why_colorjet .icon-box p{
    font-size: 16px;
    color: var(--black-primary);
    font-weight: 400;
    height: max-content;
    overflow: hidden;
}


.clj_business_unit{
    /*background: var(--blue-primary);*/
    background: radial-gradient(circle, rgba(221,221,221,1) 0%, rgba(255,255,255,1) 60%, rgba(60,153,220,1) 100%);
    padding:80px 0px;
    
}

@media (min-width:768px){
.clj_business_unit .col-md-6:nth-child(even){
    padding-left:0;
}

.clj_business_unit .col-md-6:nth-child(odd){
    padding-right:0;
}
}

.clj_business_unit .image-block{
    background: var(--dimgrey);
    position: relative;
    height: 100%;
}

.clj_business_unit .image-block img{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
}

.clj_business_unit .content-block{
    background: var(--white-primary);
    padding:50px 75px; /*ashraf old 1-100px*/
    min-height: 552px;
}

@media (max-width:767px){
    .clj_business_unit .image-block{
        background: var(--dimgrey);
        position: relative;
        height: 300px;
    }

    .clj_business_unit .content-block{
        padding:30px 30px;
        min-height: 300px; 
    }
}

.clj_business_unit .content-block h2{
    color: var(--black-primary);
    font-family: var(--headingbold-font);
    margin-bottom: 30px;
}

.clj_business_unit .content-block p{
    color: var(--black-primary);
    font-family: var(--body-font);
    margin-bottom: 30px;
    font-size: 16px;
}

.clj_business_unit .sub-title{
    font-family: var(--body-font);
    /*color: #f3f3f3;*/
    color:#2f2f2fd4;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
}

.clj_business_unit .sub-title::after{
    content: '';
    height: 1px;
    width: 20px;
    background:#f3f3f3;
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 4px;
}

.clj_business_unit .sub-title::before{
    content: '';
    height: 1px;
    width: 20px;
    background:#f3f3f3;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.clj_business_unit .section-title-center-light h1::after{
    display: none;
}


.clj_new_lauch{
    background:var(--dimgrey);
    padding: 80px 0px;
}

.clj_new_lauch .sub-title{
    font-family: var(--body-font);
    color: #9b9b9b;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
}

.clj_new_lauch .sub-title::before{
    content: '';
    height: 1px;
    width: 20px;
    background:#9b9b9b;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.clj_new_lauch .section-title{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    text-transform: capitalize;
    font-size: 28px;
    line-height: auto;
}

@media (min-width:768px){
    .clj_new_lauch .col-md-6:nth-child(even){
        padding-left:0;
    }
    
    .clj_new_lauch .col-md-6:nth-child(odd){
        padding-right:0;
    }
    }

.clj_new_lauch .image-block{
    background: var(--lightblue);
    background-size: cover;
    position: relative;
    height: 100%;
}

.clj_new_lauch .image-block img{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.clj_new_lauch .content-block{
    background: var(--white-primary);
    background-size: cover;
    padding: 75px 75px;
    min-height: 500px;
    position: relative;
}

@media (max-width:767px){
    .clj_new_lauch .image-block{
        background: var(--lightblue);
        background-size: cover;
        position: relative;
        height: 300px;
    }

    .clj_new_lauch .content-block{
        background: var(--white-primary);
        background-size: cover;
        padding: 75px 75px;
        min-height: 300px;
        position: relative;
    }   
}

.clj_new_lauch .content-block .context{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.clj_new_lauch .content-block .context h2{
    color: var(--black-primary);
    font-family: var(--headingbold-font);
    margin-bottom: 30px;
    text-align: center;
    height: 32px;
    overflow: hidden;
}

.clj_new_lauch .content-block  .context p{
    color: var(--black-primary);
    font-family: var(--body-font);
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    height: 55px;
    overflow: hidden;
}


.clj_new_lauch .content-block .blue-btn{
    margin: auto;
}



.newlaunchslick .slick-prev:before, .slick-next:before{
    opacity: 1;
    color: black;
    }
    
    
    .newlaunchslick .prev-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .newlaunchslick .next-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .newlaunchslick .slick-prev{
      top: -16%;
      left: 90%!important;
      position: absolute;
    }
    
    .newlaunchslick .slick-prev::before{
      content: '⟵'!important;
      font-size: 36px;
    }
    
    .newlaunchslick .slick-next{
      top: -16%;
      right: 2%;
      position: absolute;
    }
    
    .newlaunchslick .slick-next::before{
      content: '⟶'!important;
      font-size: 36px;
    }
    
    @media (max-width:767px){
      .saf-partner .slick-prev{
        top: -8%;
        left: 70%!important;
        position: absolute;
      }
      
    .saf-partner .slick-next{
      top: -8%;
      right: 10%;
      position: absolute;
    }
    }

.clj_events{
    background:var(--dimgrey);
    padding: 80px 0px;
}

.clj_events .sub-title{
    font-family: var(--body-font);
    color: #9b9b9b;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
}

.clj_events .sub-title::before{
    content: '';
    height: 1px;
    width: 20px;
    background:#9b9b9b;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.clj_events .section-title{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    text-transform: capitalize;
    font-size: 28px;
    line-height: auto;
}

.clj_latest_news{
    background:var(--white-primary);
    padding: 120px 0px 60px 0px;
}

.clj_latest_news .row{
    align-items: center;
}

.clj_latest_news .sub-title{
    font-family: var(--body-font);
    color: #9b9b9b;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
}

.clj_latest_news .sub-title::before{
    content: '';
    height: 1px;
    width: 20px;
    background:#9b9b9b;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.clj_latest_news .section-title{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-size:28px;
    line-height: auto;
}

.clj_latest_news .desc{
    margin-bottom: 30px;
    font-size: 16px;
}

.clj_latest_news .blue-btn{
    display: inline-block;
}

.news-card{
    position: relative;
    width: 100%;
    height: 425px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* .news-card .news-image{
    width: 100%;
    height: 425px;
    object-fit: cover;
    object-position: center;
} */

.news-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background:linear-gradient(to bottom, transparent, black) 
    no-repeat bottom;
  }

  .news-card-overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background:linear-gradient(to bottom, transparent, black) 
    no-repeat bottom;
  }


  .news-card .news-context {
    position: absolute;
    padding: 20px 20px;
    bottom:0;
  }

  .news-card .news-context .title{
    font-size: 18px;
    color: var(--white-primary);
    font-family: var(--headingbold-font);
    line-height: 26px;
  }

  .news-card .news-context .anchor-link{
    font-size: 24px;
    color: var(--white-primary);
    display: block;
    margin-bottom: 0%;
    transition: 0.3s ease-in-out;
  }

  .news-card .news-context .anchor-link:hover{
    margin-left: 10px;

  }

  .news-card .news-context .showarrow{
    margin-bottom: 0%;
  }

/* .news-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 20em;
    height: 20em;
    background: rgba(250,140,50, 0.6);
  } */



  .news-slick .slick-prev:before, .slick-next:before{
    opacity: 1;
    color: black;
    }

    .date-tag{
        width: 55px;
        position: absolute;
        right: 5%;
        top: 5%; 
        background: var(--white-primary);
        padding: 5px 5px;
    }
    
    .date-tag .date{
        font-size: 20px;
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        line-height: 20px;
        text-align: center;
    }

    .date-tag .month{
        font-size: 14px;
        font-family: var(--body-font);
        color: var(--black-primary);
        line-height: 16px;
        margin-bottom: 5px;
        text-align: center;
    }

    .date-tag .year{
        background: var(--blue-primary);
        padding: 2px;
        font-size: 10px;
        color: var(--white-primary);
        text-align: center;
    }
    
    .news-slick .prev-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .news-slick .next-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .news-slick .slick-prev{
      top: -16%;
      left: 82%!important;
      position: absolute;
    }
    
    .news-slick .slick-prev::before{
      content: '⟵'!important;
      font-size: 36px;
    }
    
    .news-slick .slick-next{
      top: -16%;
      right: 2%;
      position: absolute;
    }
    
    .news-slick .slick-next::before{
      content: '⟶'!important;
      font-size: 36px;
    }
    
    @media (max-width:767px){
        
      .news-slick .slick-prev{
        top: -8%;
        left: 70%!important;
        position: absolute;
      }
      
    .news-slick .slick-next{
      top: -8%;
      right: 10%;
      position: absolute;
    }
    }


    @media (max-width:767px){
        .clj_latest_news{
            padding: 60px 0px 60px 0px;
        }

        .news-slick{
           margin-top: 60px;
        }

        .news-card{
            height: 485px;
        }
    }


    .featured-news{
        margin-bottom: 50px;
    }

    .featured-news .row{
        align-items: center;
    }

    .featured-news .image_block{
        width: 98%;
    }

    .featured-news .image_block img{
        width: 100%;
        height: 28rem;
        border-radius: 20px;
        object-fit: cover;
        border: 1px solid var(--dimgrey);
    }

    .featured-news .news-context .title{
        font-size: 24px;
        color: var(--black-primary);
        font-family: var(--headingbold-font);
        line-height: 36px;
        margin-bottom: 1rem;
        height: 70px;
        overflow:hidden ;
    }

    .featured-news .news-context .blog-desc {
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom: 10px;
        font-size: 16px;
        overflow: hidden;
    }

    .featured-news  .news-context .author-block i{
        background: var(--blue-primary);
        width: 1.6rem;
        height: 1.6rem;
        text-align: center;
        line-height: 1.6rem;
        font-size: 14px;
        border-radius: 50px;
        color: var(--white-primary);
    }

    .featured-news .news-context .author-block{
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom: 10px;
        font-size: 14px;
    }

    .featured-news .news-context .author-block span{
        color: var(--black-primary);
        font-family: var(--body-font-medium);
    }

    .featured-news .news-context .cat-block p{
        color: var(--blue-primary);
        font-family: var(--body-font);
        margin-bottom: 0px;
        font-size: 14px;
    }


    .bloggridfour .image_block img{
        width: 100%;
        height: 18rem;
        border-radius: 10px;
        object-fit: cover;
        margin-bottom: 1.2rem;
        border: 1px solid var(--dimgrey);
    }

    .bloggridfour .news-context .title{
        font-size: 18px;
        color: var(--black-primary);
        font-family: var(--headingbold-font);
        line-height: 26px;
        margin-bottom: 1rem;
        height: 80px;
        overflow: hidden;
    }

    .bloggridfour .news-context .blog-desc {
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom: 10px;
        font-size: 14px;
        overflow: hidden;
    }

    .bloggridfour .news-context .author-block{
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom: 10px;
        font-size: 14px;
    }

    .bloggridfour  .news-context .author-block i{
        background: var(--blue-primary);
        width: 1.6rem;
        height: 1.6rem;
        text-align: center;
        line-height: 1.6rem;
        font-size: 14px;
        border-radius: 50px;
        color: var(--white-primary);
    }

    .bloggridfour .news-context .author-block span{
        color: #959595;
    }

    .bloggridfour .news-context .cat-block p{
        color: var(--blue-primary);
        font-family: var(--body-font);
        margin-bottom: 0px;
        font-size: 14px;
    }

    .bloggridfour .col-md-3{
        margin-bottom: 2.5rem;
    }


    @media (max-width:767px){

        .featured-news .image_block{
            width: 100%;
        }

        .featured-news .image_block img{
            width: 100%;
            height: 20rem;
            margin-bottom: 1.2rem;
            border: 1px solid var(--dimgrey);
        }

        .featured-news .news-context .title {
            font-size: 18px;
            color: var(--black-primary);
            font-family: var(--headingbold-font);
            line-height: 26px;
            margin-bottom: 1rem;
            height: max-content;
            overflow: hidden;
        }

        .featured-news .news-context .blog-desc{
            font-size: 14px;
        }

        .bloggridfour .news-context .title{
            height: 50px;
            overflow: hidden;
        }

        .bloggridfour .image_block img{
            height: 20rem;
            border: 1px solid var(--dimgrey);
        }
    }


.event-slick .single-item{
    width: 100%;
    position: relative;
}

.event-slick .single-item img{
    width: 100%;
    height:265px;
    object-fit: cover;
}

.event-slick .item-content{
    background: var(--white-primary);
    padding: 15px 15px;
    width: 100%;
}

.event-slick .item-content .title{
    font-size: 20px;
    font-family: var(--headingbold-font);
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--black-primary);
}

.event-slick .item-content .title a{
    color: var(--black-primary);
}

.event-slick .item-content .title:hover{
    color: var(--blue-primary);
}

.event-slick .item-content .title a:hover{
    color: var(--blue-primary);
}

.event-slick .item-content .desc{
    font-size: 16px;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--black-primary);
    height: 50px;
    overflow: hidden;
}


.event-slick .item-content .date-time{
    font-size: 12px;
    font-family: var(--body-font);
    margin-bottom: 0px;
    color: var(--black-primary);
}


.event-slick .slick-prev:before, .slick-next:before{
    opacity: 1;
    color: black;
    }
    
    
    .event-slick .prev-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .event-slick.next-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .event-slick .slick-prev{
      top: -16%;
      left: 90%!important;
      position: absolute;
    }
    
    .event-slick .slick-prev::before{
      content: '⟵'!important;
      font-size: 36px;
    }
    
    .event-slick .slick-next{
      top: -16%;
      right: 2%;
      position: absolute;
    }
    
    .event-slick .slick-next::before{
      content: '⟶'!important;
      font-size: 36px;
    }
    
    @media (max-width:767px){
      .event-slick .slick-prev{
        top: -8%;
        left: 70%!important;
        position: absolute;
      }
      
    .event-slick .slick-next{
      top: -8%;
      right: 10%;
      position: absolute;
    }
    }

  /* the slides */
  .slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.clj_number_value{
    padding: 60px 0px;
    background-image: linear-gradient(
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8)
        ),url('../images/num-value.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    z-index: 100;
}

.clj_number_value .num-block{
    text-align: center;
}

.clj_number_value .num-block h2{
    font-size: 52px;
    font-family: var(--headingbold-font);
    color: var(--white-primary);
    font-weight: bold;
}

.clj_number_value .num-block h3{
    color: var(--white-primary);
    font-family: var(--body-font);
    font-size:24px;
}


.fixed-support-icon{
    background: var(--lightgrey);
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 35%;
    border-style: solid;
    border-width: 1px 0px 1px 1px;
    border-color: #cccccc;
    padding: 15px 10px;
}

.fixed-support-icon .icon-block{
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cccccc;
}


.fixed-support-icon .icon-block:last-child{
    margin-bottom:0px;
    padding-bottom: 0px;
    border-bottom: 0px solid var(--black-primary);
}

.fixed-support-icon .icon-block i{
    background: var(--blue-primary);
    color: var(--white-primary);
    font-size: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 5px;
}

.fixed-support-icon .icon-block p{
    font-family: var(--body-font-medium);
    color: var(--black-primary);
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
}

footer{
    background: var(--grey);
    padding: 50px 0px 10px 0px;
    position: relative;
    z-index: 100;
}

footer .subscribe-form{
    text-align: right;
}

footer .subscribe-form input[type="email"]{
    width:300px;
    margin-right: -10%;
}

footer .alignrow{
    align-items: center;
}

.footer-logo{
    float: left;
    padding-right: 10px;
}

.footer-social i{
    background: var(--dimgrey);
    border-radius: 50%;
    color: var(--black-primary);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 18px;
}

.footer-widget h4{
    color: var(--white-primary);
    font-family: var(--headingbold-font);
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-widget .link-items a{
    font-size: 15px;
    font-weight: 400;
    color: #dddddd;
    text-decoration:none;
    display: block;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-widget p{
    font-size: 15px;
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 15px;
}

.footer-widget .link-items a:hover{
    color:var(--white-primary);
}

.hr-line{
    width: 100%;
    height: 1px;
    background:var(--dimgrey);
}

footer .hr-line{
    margin: 20px 0px 30px 0px;
    width: 100%;
    height: 1px;
    background:var(--dimgrey);
}

footer .hr-line-2{
    margin: 20px 0px 10px 0px;
    width: 100%;
    height: 1px;
    background:var(--dimgrey); 
}


footer .footer-copyright{
    padding: 10px 0px;
}

footer .footer-copyright p{
    margin-bottom: 0;
    color: #dddddd;
    font-size: 15px;
}

.footer-bottom-link{
    text-align: right;
}

.footer-bottom-link a{
    font-size: 15px;
    font-weight: 400;
    color: #dddddd;
    margin-bottom: 15px;
    margin-right: 15px;
}


.footer-bottom-link a:hover{
    color:var(--white-primary);
}

.clj_events .event-card .item-content {
    background: var(--white-primary);
    padding: 15px 15px;
    width: 100%;
    min-height: 140px;
}

.clj_events .item-date {
    font-size: 14px;
    background: var(--blue-primary);
    padding: 8px 18px;
    color: var(--white-primary);
    width: max-content;
    font-family: var(--body-font);
    position: absolute;
    margin-left: 20px;
    margin-top: -5%;
}

.clj_events .event-card .item-content .title {
    font-size: 20px;
    font-family: var(--headingbold-font);
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--black-primary);
}

.clj_events  .event-card .item-content .desc {
    font-size: 15px;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--black-primary);
    height: 18px;
    overflow: hidden;
}

.clj_events  .event-card  .link-btn{
    color: var(--white-primary);
    font-family: var(--body-font-bold);
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--white-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clj_events  .event-card  .link-btn:hover{
    color: var(--black-primary);
    font-family: var(--body-font-bold);
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--black-primary);
    background: var(--white-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
}


.clj_events_listing  .event-card  .link-btn{
    color: var(--white-primary);
    font-family: var(--body-font-bold);
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--white-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clj_events_listing  .event-card  .link-btn:hover{
    color: var(--black-primary);
    font-family: var(--body-font-bold);
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--black-primary);
    background: var(--white-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
}

.clj_events_listing  .item-date{
    font-size: 14px;
    background: var(--blue-primary);
    padding: 8px 18px;
    color: var(--white-primary);
    width: max-content;
    font-family: var(--body-font);
    position: absolute;
    margin-left: 20px;
    margin-top: -5%;
}

.clj_events_listing  .event-card .item-content .title {
    font-size: 20px;
    font-family: var(--headingbold-font);
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--black-primary);
}

.clj_events_listing  .event-card .item-content .desc {
    font-size: 15px;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--black-primary);
    height: 18px;
    overflow: hidden;
}

.clj_events_listing  .event-card .item-content .booth {
    font-size: 15px;
    font-family: var(--body-font-bold);
    color: var(--black-primary);
    margin-bottom: 15px;
    line-height: 15px;
   
}

.clj_events_listing  .event-card .item-content .link-btn{
    color: var(--blue-primary);
    font-family: var(--body-font-bold);
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--blue-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
}

.clj_events_listing  .event-card .item-content .link-btn:hover{
    color: var(--black-primary);
        text-decoration: none !important;
        border: 1px solid var(--black-primary);
        padding: 10px 20px;
        display: block;
        width: max-content;
}


.whatsapp-icon{
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
}

.whatsapp-icon img{
    height: 50px;
    width: 50px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 30px;
    z-index: 999;
    font-size: 32px;
    border: none;
    outline: none;
    background-color: var(--blue-primary);
    color: var(--white-primary);
    cursor: pointer;
    border-radius: 0px;
    height: 42px;
    width: 42px;
    text-align: center;
    line-height: 32px;
  }
  
  #myBtn:hover {
    background-color: var(--darkblue);
  }


/**** Textile Printer Page ****/

.clj_segment_section{
    padding: 60px 0px 0px;
}

.clj_segment_section .section-desc {
    font-size: 16px;
    color: var(--black-primary);
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.clj_segment_lastsection{
    padding: 0px 0px 60px 0px;
}


.clj_segment_lastsection .section-desc {
    font-size: 16px;
    color: var(--black-primary);
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}

.clj_product_range{
    background:var(--white-primary);
    padding: 60px 0px;
}

.clj_product_range .sub-title{
    font-family: var(--body-font);
    color: #9b9b9b;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 16px;
}

.clj_product_range .sub-title::before{
    content: '';
    height: 1px;
    width: 20px;
    background:#9b9b9b;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

.clj_product_range .section-title{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    font-size: 28px;
    line-height: auto;
}

.product-card{
    position: relative;
}

.product-card .product-image{
    background: var(--lightblue);
    text-align: center;
    /* min-height: 272px; */
    padding: 15% 0%;
}



.product-card .product-image img{
    width: 100%;/*ashraf*/
    margin: auto;
}

.product-card .product-content{
    background: var(--lightgrey);
    padding: 20px 20px;
}

.product-card .product-content .product-name{
    font-family: var(--headingbold-font);
    font-size: 20px;
    color: var(--black-primary);
    margin-bottom: 10px;
    height: 25px;
    overflow: hidden;
    width: 90%;
}


.product-card .product-content .product-name::after{
    content: '';
    height: 5px;
    width: 58px;
    background: var(--lightblue);
    display: block;
    margin-top: 10px;
}


.product-card .product-content .product-desc{
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 0px;
    height: 45px;
    overflow: hidden;
}

.product-card .link-btn{
    background: #196899;
    border-radius: 50%;
    height: 52px;
    width: 52px;
    display: block;
    text-align: center;
    line-height: 45px;
    font-size: 32px;
    color: var(--white-primary);
    border: 4px solid var(--white-primary);
    position: absolute;
    bottom: 24.5%;
    right: 5%;
    z-index: 999;
}

.product-card .product-image

.textile_product_slick .slick-prev:before, .slick-next:before{
    opacity: 1;
    color: black;
    }
    
    
    .textile_product_slick .prev-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .textile_product_slick .next-arrow{
      background: none;
      border: 0;
      font-size: 36px;
      padding: 0;
    }
    
    .textile_product_slick .slick-prev{
      top: -20%;
      left: 90%!important;
      position: absolute;
    }
    
    .textile_product_slick .slick-prev::before{
      content: '⟵'!important;
      font-size: 36px;
      color: var(--black-primary);
    }
    
    .textile_product_slick .slick-next{
      top: -20%;
      right: 2%;
      position: absolute;
    }
    
    .textile_product_slick .slick-next::before{
      content: '⟶'!important;
      font-size: 36px;
      color: var(--black-primary);
    }
    
    @media (max-width:767px){
        .textile_product_slick .slick-prev{
        top: -8%;
        left: 70%!important;
        position: absolute;
      }
      
      .textile_product_slick .slick-next{
      top: -8%;
      right: 10%;
      position: absolute;
    }
    }

    #product-listing .product-card{
        margin-bottom: 30px;
    }

    @media (max-width:767px){
        #product-listing .col-md-3{
            width: 50%;
        }

        #product-listing .product-card .product-image{
            background: var(--lightblue);
            text-align: center;
            min-height: 136px;
            padding: 15px 0%;
        }

        #product-listing  .product-card .link-btn{
            background: #196899;
            border-radius: 50%;
            height: 42px;
            width: 42px;
            display: block;
            text-align: center;
            line-height: 35px;
            font-size: 24px;
            color: var(--white-primary);
            border: 4px solid var(--white-primary);
            position: absolute;
            bottom: 40%;
            right: 5%;
        }

        #product-listing .product-card .product-content .product-name{
            font-size: 20px;
            height: 25px;
        }

        #product-listing .product-card .product-content .product-desc{
            font-size: 14px;
        }
    }

    .clj_pagination{
        display: flex;
        justify-content: center;
        padding-top: 3.5%;
    }

    .clj_pagination .item a{
        height: 30px;
        width: 30px;
        background: var(--lightgrey);
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: var(--grey);
        margin: 0px 5px;
        display: inline-block;
    }


    .clj_pagination .item a:hover{
        height: 30px;
        width: 30px;
        background:var(--blue-primary);
        color: var(--white-primary);
    }

    .clj_pagination .item.disabled{
        display:none;
    }


    .clj_pagination .item.active{
        height: 30px;
        width: 30px;
        background:var(--blue-primary);
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: var(--white-primary);
    }

    .singlepage-header{
        padding: 30px 0px 0px 0px;
    }

    .singlepage-header .row{
        align-items: center;
    }

    .singlepage-header .breadcrumbs{
        justify-content: left;
        display: flex;
    }

    .singlepage-header .breadcrumbs a{
        font-size: 16px;
        font-family: var(--body-font);
        color: var(--black-primary);
    }

    .singlepage-header .breadcrumbs .seperater{
        margin: 4px 10px;
        color: #656565;
    }

    .singlepage-header .breadcrumbs a:last-child{
        font-size: 16px;
        font-family: var(--body-font);
        color: var(--blue-primary);
    }

    .page-header{
        min-height: 160px;
        background-image: linear-gradient(
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8)
        ),url('../images/num-value.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position:bottom;
        padding: 60px 0px;
    }


    .page-header .row{
        align-items: center;
    }

    .page-header .page-title{
        font-family: var(--headingbold-font);
        color: var(--white-primary);
        font-size: 36px;
        text-align: left;
    } 

    .page-header .breadcrumbs{
        justify-content: right;
        display: flex;
    }

    .page-header .breadcrumbs a{
        font-size: 18px;
        font-family: var(--body-font);
        color: var(--lightgrey);
    }

    .page-header .breadcrumbs .seperater{
        margin: 4px 10px;
        color: var(--dimgrey);
    }

    .page-header .breadcrumbs a:last-child{
        font-size: 18px;
        font-family: var(--body-font);
        color: var(--lightgrey);
    }


    .page-header-secondary{
        min-height: 475px;
        background-size: cover;
        padding: 60px 0px;
        display: flex;
        align-items: center;
    }



    .page-header-secondary .row{
        align-items: center;
    }

    .page-header-secondary .page-title{
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        font-size: 36px;
        text-align: left;
    } 

    .page-header-secondary .breadcrumbs{
        justify-content: left;
        display: flex;
    }

    .page-header-secondary .breadcrumbs a{
        font-size: 18px;
        font-family: var(--body-font);
        color: var(--grey);
    }

    .page-header-secondary .breadcrumbs .seperater{
        margin: 4px 10px;
        color: var(--grey);
    }

    .page-header-secondary .breadcrumbs a:last-child{
        font-size: 18px;
        font-family: var(--body-font);
        color: var(--blue-primary);
    }

    @media(max-width:767px){
        .page-header-secondary {
            background-size: 100%;
            background-repeat: no-repeat;
            padding: 30px 0px;
            min-height: max-content;
        }

        .page-header-secondary .page-title {
            font-family: var(--headingbold-font);
            color: var(--black-primary);
            font-size: 28px;
            text-align: left;
        }

        .page-header-secondary .breadcrumbs a {
            font-size: 14px;
            font-family: var(--body-font);
            color: var(--grey);
        }
        .page-header-secondary .breadcrumbs a:last-child {
            font-size: 14px;
            font-family: var(--body-font);
            color: var(--blue-primary);
        }
    }


    main{
        padding-top: 110px;
    }

    .clj_application_keys {
        background: var(--blue-primary);
        padding: 60px 0px;
        position: relative;
        z-index: 100;
    }

    .clj_application_keys .sub-title::after{
        content: '';
        height: 1px;
        width: 20px;
        background:#f3f3f3;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 4px;
    }

    .clj_application_keys .sub-title{
        font-family: var(--body-font);
        color: #f3f3f3;
        text-align: left;
        text-transform: capitalize;
        margin-bottom: 5px;
        text-align: center;
        font-size: 16px;
    }
    
    .clj_application_keys .sub-title::before{
        content: '';
        height: 1px;
        width: 20px;
        background:#f3f3f3;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 4px;
    }

    .clj_application_keys .section-title-center-light h1::after{
        display: none;
    }

    .application-card{
        background: var(--white-primary);
        padding: 8px 8px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .application-card .app-image img{
        border-radius: 4px;
        height: 88px;
        width: 88px;
        object-fit: cover;
    }

    .application-card .app-content{
        padding-left: 20px;
    }

    .application-card .app-title{
        font-size: 20px;
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        margin-bottom: 5px;
    }

    .application-card .app-category{
        color: #9b9b9b;
        font-family: var(--body-font);
        font-size: 16px;
        margin-bottom: 0;
    }

    .clj_blog_articles{
        background: var(--dimgrey);
        padding:60px 0px;
    }

    .clj_blog_articles .sub-title{
        font-family: var(--body-font);
        color: #9b9b9b;
        text-align: left;
        text-transform: capitalize;
        margin-bottom: 0;
        font-size: 16px;
    }
    
    .clj_blog_articles .sub-title::before{
        content: '';
        height: 1px;
        width: 20px;
        background:#9b9b9b;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 4px;
    }
    
    .clj_blog_articles .section-title{
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        text-align: left;
        text-transform: capitalize;
        font-size: 28px;
        line-height: auto;
    }

    .clj_blog_articles .blue-btn:hover{
        background: var(--dimgrey);
        color: var(--darkblue);
        border: 2px solid var(--darkblue);
    }

    @media (max-width:767px){
    .clj_blog_articles .blue-btn{
        margin: 40px auto 0px!important;
    }
}

    .blog-card img{
        width: 100%;
        height: 228px;
        object-fit: cover;
        object-position: center;
    }

    .blog-card .blog-content{
        background: var(--white-primary);
        padding: 25px 25px;
        height: 100%;
    }

    .blog-card .blog-content .blog-category{
        background: var(--blue-primary);
        padding: 2px 8px;
        font-size: 12px;
        color: var(--white-primary);
        width: max-content;
        margin-bottom: 10px;
    }

    .blog-card .blog-content .blog-title{
        font-size: 20px;
        line-height: 24px;
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        margin-bottom: 5px;
        height: 50px;
        overflow: hidden;
    }
    
    .blog-card .blog-content .blog-desc{
        font-size: 15px;
        font-family: var(--body-font);
        color: var(--black-primary);
        margin-bottom: 5px;
        line-height: 23px;
        height: 50px;
        overflow: hidden;
    }

    .blog-card .blog-content .blog-link{
        font-size: 14px;
        font-family: var(--body-font);
        font-weight: bold;
        color: var(--black-primary);
    }

    .blog-article-slick .slick-prev:before, .slick-next:before{
        opacity: 1;
        color: black;
        }
        
        
        .blog-article-slick .prev-arrow{
          background: none;
          border: 0;
          font-size: 36px;
          padding: 0;
        }
        
        .blog-article-slick .next-arrow{
          background: none;
          border: 0;
          font-size: 36px;
          padding: 0;
        }
        
        .blog-article-slick .slick-prev{
          top: -30%;
          left: 90%!important;
          position: absolute;
        }
        
        .blog-article-slick .slick-prev::before{
          content: '⟵'!important;
          font-size: 36px;
        }
        
        .blog-article-slick .slick-next{
          top: -30%;
          right: 2%;
          position: absolute;
        }
        
        .blog-article-slick .slick-next::before{
          content: '⟶'!important;
          font-size: 36px;
        }
        
        @media (max-width:767px){
          .blog-article-slick .slick-prev{
            top: -8%;
            left: 70%!important;
            position: absolute;
          }
          
        .blog-article-slick .slick-next{
          top: -8%;
          right: 10%;
          position: absolute;
        }
        }

        .clj_faq{
            background: var(--white-primary);
            padding: 60px 0px;
        }


        

        /**Typeo CSS End**/
.faq-title {
	text-align: center;
	font-size: 45px;
	font-weight: normal;
}

.faq-group {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
    margin: auto;
}


.faq-group  .faq-main{
    width: 100%;
}




.faq-group h3 {
	font-size: 24px;
	font-weight: normal;
	margin: 35px 0 15px 0;
}

.faq-group h3:first-child {
	margin-top: 0px;
}
.faq-btns {
 margin-bottom: 40px;
}
.faq-btn {
	width: 100%;
	display: inline-block;
	border: #000 1px solid;
	border-radius: 4px;
	text-align: center;
	margin: 10px 0;
	background-color: #fff;
	padding: 14px;
	text-decoration: none;
	color: #000;
	transition: 0.5s all;
}

.faq-btn:hover {
	background-color: #000;
	color: #fff;
}

.faq-item {
	width: 100%;
	margin: 10px 0px;
}

.faq-item .faq-label {
	position: relative;
	width: 100%;
	padding: 12px 70px 12px 26px;
	cursor: pointer;
	font-size: 18px;
	color: #000;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
    background: var(--lightgrey);
}

.faq-item .faq-label i {
	width: 18px;
	height: 100%;
	position: absolute;
	right: 20px;
	top: 0px;
    background: var(--blue-primary);
    width: 25px;
    height: 25px;
    padding: 15px;
    margin: 12px 0px;
}

.faq-item .faq-label i:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 18px;
	height: 2px;
	background-color:var(--white-primary);
}

.faq-item .faq-label i:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 2px;
	height: 18px;
	background-color: var(--white-primary);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
}

.faq-item.faq-item-show .faq-label i:after {
	opacity: 0;
}


.faq-item-show .faq-label{
    background:var(--blue-primary);
    color: var(--white-primary);
}

.faq-item-show .faq-label i{
    background: var(--white-primary);
}

.faq-item-show .faq-label i:before{
    background:var(--blue-primary);
}

@media (max-width:767px){

}

.faq-cont {
	transition: 0.3s all;
	overflow: hidden;
	height: 0px;
}

.faq-item.faq-item-show  .faq-cont {
	display: block;
	overflow: auto;
	height: auto;
    padding: 20px;
    border: 1px solid var(--dimgrey);
}

.faq-cont p {
	margin: 0px 0 20px 0;
}

.faq-cont p:last-child {
	margin-bottom: 0px;
}

@media(max-width:992px) {
	.faq-group .faq-left{
  width: 100%;
 }
.faq-group .faq-right {
 width: 100%;
 border-left: none;
 padding-left: 0;
 margin-left: 0;
}
}	

#signage-faq #v-pills-tab{
    width: 30%;
}

#signage-faq .tab-content.active{
    width:100%;
}




#signage-faq  .nav.nav-pills .nav-link{
    /* border-radius: 0!important;
    padding: 15px 30px!important;
    background: var(--lightgrey)!important;
    color: var(--black-primary)!important;
    border-bottom: 1px solid #9b9b9b; */
    background: var(--lightgrey)!important;
    color: var(--black-primary)!important;
    border-radius: 0!important;
    padding: 10.5px 25px!important;
    font-size: 18px;
    font-family: var(--body-font);
    margin: 0px 0px 10px 0px;
    text-align: center;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0)!important;
}

/* #signage-faq  .nav.nav-pills .nav-link:last-child{
    border: 0!important;
} */

#signage-faq .nav.nav-pills .nav-link:hover{
    border-color:var(--blue-primary)!important;

}

#signage-faq  .nav.nav-pills .nav-link.active{
    background: var(--blue-primary)!important;
    color: var(--white-primary)!important;
}



#signage-faq  .faq-item{
    margin-top: 0px;
    margin-bottom: 10px;
}

@media (max-width:767px){

    #signage-faq  .faq-item{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #signage-faq .tab-content.active .d-flex{
        display: block!important;
    }

    
#signage-faq #v-pills-tab{
    width:100%;
}


    .faq-group{
        width:100%;
    }

    .faq-item .faq-label{
        padding: 12px 56px 12px 26px;
        font-size: 15px;
    }

    .faq-item.faq-item-show .faq-cont{
        padding-left: 26px;
        padding-right: 26px;
        font-size: 14px;
    }
}





/*--- award page new design start ---*/

.award-group {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin: auto;
}

.award-group  .award-main{
    width: 100%;
}

.award-item {
	width: 100%;
	margin: 10px 0px;
}

.award-item .award-label {
	position: relative;
	width: 100%;
	padding: 12px 70px 12px 26px;
	cursor: pointer;
	font-size: 18px;
    font-family: var(--headinglight-font);
	color: #000;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
    background: var(--lightgrey);
}

.award-item .award-label i {
	width: 18px;
	height: 100%;
	position: absolute;
	right: 20px;
	top: 0px;
    background: var(--blue-primary);
    width: 25px;
    height: 25px;
    padding: 15px;
    margin: 12px 0px;
}

.award-item .award-label i:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 18px;
	height: 2px;
	background-color:var(--white-primary);
}

.award-item .award-label i:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 2px;
	height: 18px;
	background-color: var(--white-primary);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
}

.award-item.award-item-show .award-label i:after {
	opacity: 0;
}


.award-item-show .award-label{
    background:var(--blue-primary);
    color: var(--white-primary);
}

.award-item-show .award-label i{
    background: var(--white-primary);
}

.award-item-show .award-label i:before{
    background:var(--blue-primary);
}

.award-item.award-item-show .award-cont {
    display: block;
    overflow: auto;
    height: auto;
    padding: 20px;
    border: 1px solid var(--blue-primary);
}

.award-cont {
    transition: 0.3s all;
    overflow: hidden;
    height: 0px;
}

.award-cont .image-block{
    position: absolute;
}

.award-cont .date-tag{
    width: max-content;
    background: var(--blue-primary);
    top: 0;
    right: 3%;
}

.award-cont .award-tag{
    background: var(--blue-primary);
    padding: 5px 15px;
    font-size: 18px;
    color: var(--white-primary);
    font-family: var(--body-font-bold);
    text-align: center;
}


.award-cont  .date-tag .date{
    color: #fff;
    font-size: 14px;
}

.award-cont .award-block .award-title{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 20px;
    font-size: 20px;
}

.award-cont .award-block .award-description{
    font-size: 16px;
}


/*--- award page new design end --*/



.for-textile .content-wrapper{
    padding:0;
}

.for-textile .tabs{
    display: block;
}

.for-textile .tabs li{
    background: var(--lightgrey)!important;
    color: var(--black-primary)!important;
    border-radius: 0!important;
    padding: 10.5px 30px!important;
    font-size: 18px;
    font-family: var(--body-font);
    margin: 0px 0px 10px 0px;
}

.for-textile .tabs li.active{
    background: var(--blue-primary)!important;
    color: var(--white-primary)!important;
}

.for-textile .faq-item{
    margin: 0px 0px 10px 0px;
}

.product-single-breadcrumbs{
    background: var(--darkblue);
    padding: 10px 10px;
}

.product-single-breadcrumbs .breadcrumbs{
    justify-content: right;
    display: flex;
    align-items: center;
}

.product-single-breadcrumbs .breadcrumbs a{
    font-size: 18px;
    font-family: var(--body-font);
    color: var(--lightgrey);
}

.product-single-breadcrumbs .breadcrumbs .seperater{
    margin: 0px 10px;
    color: var(--white-primary);
}

.product-single-breadcrumbs .breadcrumbs a:last-child{
    font-size: 18px;
    font-family: var(--body-font);
    color: var(--white-primary);
}

.section-specification #overview{
    padding-top: 80px;
}

.section-specification{
    padding: 60px 0px;
    overflow-x: hidden;
}



#specification{
    padding-top: 80px;
}




#specification table tbody, td, tfoot, th, thead, tr{
    border-width:1px;
    padding:5px 5px;
}

#specification p{
    font-size: 15px!important;
}


#specification td{
    font-size: 15px!important;
}


#overview p{
    font-size: 15px!important;
}

#application{
    font-size: 15px!important;
}



#specification table p{
    margin-bottom:0;
}

.fixed-navigation ul{
    list-style-type: none;
    padding: 0;
}

.fixed-navigation ul li{
    transition:ease-in-out;
}

.fixed-navigation ul li a{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--black-primary);
    margin-bottom: 15px;
    display: block;
    width: max-content;
}

.fixed-navigation ul li:hover :before{
    content: '';
    display: inline-block;
    height: 4px;
    width: 18px;
    background: var(--blue-primary);
    margin-right: 12px;
    margin-bottom: 4px;
}


.section-specification .product-logo{
    width: 320px;
    margin-bottom: 30px;
}

.section-specification .product-single-image{
    background: var(--lightblue);
    margin-bottom: 20px;
}

.section-specification .product-logo-subtitle{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--black-primary);
    text-align: center;
    margin-bottom: 20px;
}

.section-specification .product-logo-subtitle h1{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--black-primary);
    text-align: center;
    margin-bottom: 20px;
}

.fixed-navigation.fixed{
    position: fixed;
    z-index: 99;
    top: 18%;
}


.product-table{
    width: 100%;
}

.product-table th:first-child{
    background: var(--darkblue);
    padding: 6px;
    color: var(--white-primary);
    text-align: center;
    font-family: var(--body-font);
    font-weight: normal;
    text-align: center;
    border: 2px solid var(--darkblue);
}

.product-table .grey-th{
    background: var(--dimgrey)!important;
    padding: 6px!important;
    color: var(--black-primary)!important;
    text-align: center!important;
    font-family: var(--body-font)!important;
    font-weight: normal!important;
    width: 50%!important;
    border: 2px solid #9b9b9b!important;
}

.product-table td{
    background: var(--white-primary)!important;
    padding: 6px!important;
    color: var(--black-primary)!important;
    text-align: center!important;
    font-family: var(--body-font)!important;
    font-weight: normal!important;
    border: 2px solid #9b9b9b;
}

.printer-highlights{
    background: var(--lightgrey);
    padding: 80px 0px;
}


.product-highlight-item-design-1 .single-item{
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}


.product-highlight-item-design-1 .single-item .item-icon i{
    width: 42px;
    height: 42px;
    background: var(--blue-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 28px;
    color: var(--white-primary);
    margin-right: 15px;
}

.product-highlight-item-design-1 .single-item .item-icon-image{
    width: 30%;
    margin-right: 5px;
}

.item-icon-image img{
    width:100px;
}

.product-highlight-item-design-1 .single-item .item-content h3{
    font-family: var(--body-font-bold);
    font-size: 18px;
    color: var(--blue-primary);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.product-highlight-item-design-1 .single-item .item-content{
    width: 70%;
}

.product-highlight-item-design-1 .single-item .item-content p{
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--black-primary);
    margin-bottom: 0px;
}




.product-highlight-item-design-2 .single-item{
    display: flex;
    margin-bottom: 30px;
    align-items:flex-start;
}


.product-highlight-item-design-2 .single-item .item-icon i{
    width: 42px;
    height: 42px;
    background: var(--blue-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 28px;
    color: var(--white-primary);
    margin-right: 15px;
}

.product-highlight-item-design-2 .single-item .item-icon-image{
    width: 15%;
    margin-right: 5px;
}

.product-highlight-item-design-2 .single-item .item-content h3{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--black-primary);
    margin-bottom: 5px;
}

.product-highlight-item-design-2 .single-item .item-content{
    width:85%;
}

.product-highlight-item-design-2 .single-item .item-content p{
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--black-primary);
    margin-bottom: 0px;
}


.product-highlight-item-design-3 .single-item{
    display: flex;
    margin-bottom: 30px;
    align-items:center;
}


.product-highlight-item-design-3 .single-item .item-icon i{
    width: 42px;
    height: 42px;
    background: var(--blue-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 28px;
    color: var(--white-primary);
    margin-right: 15px;
}

.product-highlight-item-design-3 .single-item .item-icon-image{
    width: 15%;
    margin-right: 5px;
}

.product-highlight-item-design-3 .single-item .item-content h3{
    font-family: var(--body-font);
    font-size: 20px;
    color: var(--black-primary);
    margin-bottom: 5px;
}

.product-highlight-item-design-3 .single-item .item-content{
    width:70%;
}

.product-highlight-item-design-3 .single-item .item-content p{
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 0px;
}

.product-highlight-item-design-3 .single-item .highlight-image-aftericon{
    width:15%;
}

.highlight-image-grid{
    margin: 15px 0px;
}




.printer-video{
    background: var(--white-primary);
    padding: 80px 0px;
}

/* .product-video-frame{
    margin-top: 30px;
}

.product-video-frame iframe{
    width: 100%;
} */


.product-bookademo{
    background: var(--lightgrey);
    padding: 80px 0px;
}

.product-bookademo .form-control{
    background: transparent;
}

.product-bookademo .form-control-submit{
    width: 60%;
    padding: 10px 0px;
    font-size: 18px;
    margin-top: 20px;
    background: var(--darkblue);
    border: 1px solid var(--darkblue);
    color: var(--white-primary);
}

.product-bookademo .form-control-submit:hover{
    background: var(--white-primary);
    border: 1px solid var(--darkblue);
    color: var(--darkblue);
}

.product-support-warranty{
    background: var(--white-primary);
    padding: 80px 0px;
}


.clj_events_listing{
    background: var(--white-primary);
    padding: 60px 0px;
}

.event-card{
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.event-card img{
    width: 100%;
    height: 265px;
    object-fit: cover;
}

.event-card .item-content{
    background: var(--lightgrey);
    padding: 15px 15px;
    width: 100%;
    height: 130px;
}

@media (max-width:767px){
    .event-card .item-content{
        background: var(--lightgrey);
        padding: 15px 15px;
        width: 100%;
        height: auto;
    }
}


.event-card .item-content .title{
    font-size: 20px;
    font-family: var(--headingbold-font);
    margin-bottom: 20px;
    margin-top: 15px;
    color: var(--black-primary);
}

.event-card .item-content .title:hover{
    color: var(--blue-primary);
}

.event-card .item-content .desc{
    font-size: 15px;
    font-family: var(--body-font);
    margin-bottom: 20px;
    color: var(--black-primary);
    height: 45px;
    overflow: hidden;
}

.event-card .item-content .date-time{
    font-size: 12px;
    font-family: var(--body-font);
    margin-bottom: 0px;
    color: var(--black-primary);
}

.clj_event_single{
    background: var(--white-primary);
    padding: 30px 0px 60px 0px;
}

.clj_event_single .event_sidebar{
    position: sticky;
    top: 80px;
}




.clj_event_single #video{
    padding-top: 80px;
}

.clj_event_single #pr{
    padding-top: 80px;
}

@media (max-width:767px){
    .clj_event_single .event_sidebar{
        position: static;
    }
}



.single-event-card{
    display: flex;
}

.single-event-card img{
    width: 32%;
    border:1px solid var(--lightgrey);
}

.single-event-card .item-content{
    width: 68%;
    background: var(--lightgrey);
    padding: 30px 30px;
}

.single-event-card .item-content .item-date{
    position:inherit;
    margin-left: 0px;
    bottom:0;
    display: none;
}

.single-event-card .item-content .title{
    font-family: var(--headingbold-font);
    font-size: 24px;
    color: var(--black-primary);
    margin-bottom: 20px;
}

.single-event-card .item-content .desc{
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--black-primary);
    margin-bottom: 20px;
    height: 75px;
    overflow: hidden;

}

.single-event-card .item-content .date-time{
    font-family: var(--body-font-bold);
    font-size: 16px;
    color: var(--black-primary);
    margin-right: 15px;
    display: inline-block;
}

.single-event-card .item-content .date-time i{
    /* background: var(--darkblue); */
    /* padding: 8px 8px; */
    border-radius: 5px;
    color: var(--darkblue);
    font-size: 20px;
    margin-right: 10px;
}


.event-date-share-block{
    display: inline;
    align-items: center;
}

.single-event-card
.social-share ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: left;
    align-items:center;
    margin-top: 0px;
    margin-bottom: 0;
}


.single-event-card .social-share{
    width: max-content;
    text-align: right;
    margin-top: 0px;
    float: right;
    display: inline-block;
}

.social-share ul li{
    margin-right: 5px;
}

.social-share ul p{
    font-size: 16px;
    color: var(--black-primarys);
    margin: 0px 10px 0px 0px;
}


.social-share ul li .fa{
    background: red;
    width: 48px;
    height: 28px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    line-height: 30px;
    color: var(--white-primary);
    transition: 0.3s;
}

.social-share ul li .fa:hover{
    transform: scale(1.08);
}


.social-share ul li .fa-facebook-f{
    background:	#1877F2;
}

.social-share ul li .fa-twitter{
    background:	#1DA1F2;
}

.social-share ul li .fa-linkedin{
    background:	#0077b5 ;
}

.social-share ul li .fa-whatsapp{
    background:	#25d366 ;
}

 .social-share{
    width: max-content;
text-align: right;
margin-top: 15px;
}

 .social-share span{
    background: var(--dimgrey);
    padding: 0px 10px;
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

 .social-share span i{
    background: transparent;
    font-size: 12px;
    margin-right: 0;
}


.clj_news_listing-single{
    background: var(--white-primary);
    padding: 20px 0px 60px 0px;
}



.clj_news_listing{
    background: var(--white-primary);
    padding: 60px 0px;
}

.sidebar-widget .filter{
    margin-bottom: 0;
}



.sidebar-widget{
    margin-bottom: 30px;
    background: var(--lightgrey);
    padding: 0;
}

.sidebar-widget .widget-title{
    font-family: var(--headingbold-font);
    font-size: 20px;
    line-height: 20px;
    color: var(--white-primary);
    padding: 15px 20px;
    background: var(--blue-primary);
    margin-bottom: 15px;
}

.sidebar-widget .widget-menu{
    list-style-type: none;
    padding: 0 30px;
    margin-bottom: 0;
}

.sidebar-widget form input{
    background: var(--white-primary);
    padding:10px 15px;
    border:1px solid #9b9b9b;
    font-size:16px;
    font-family: var(--body-font-medium);
    color: var(--black-primary);
    width: 100%;
}

/* 
.sidebar-widget .widget-menu span{
    font-size: 14px;
    font-family: var(--body-font-bold);
} */


.sidebar-widget .widget-menu li a{
    font-size: 16px;
    font-family: var(--body-font);
    display: block;
    width: max-content;
    color: var(--black-primary);
    transition: 0.3s;
    width: 100%;
}

.sidebar-widget .widget-menu li a:hover{
    color: var(--blue-primary);
}



.sidebar-widget .widget-menu li{
    border-bottom: 1px solid #9b9b9b;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.sidebar-widget .widget-menu li:last-child{
    margin-bottom: 0px;
    border-bottom: 0px solid #9b9b9b;
}

/* .sidebar-widget .widget-menu li::before{
    content: '';
    display: block;
    height: 4px;
    width: 18px;
    background: var(--blue-primary);
    margin-right: 12px;
    margin-bottom: 4px;
} */


.sidebar-widget-event{
    margin-bottom: 30px!important;
    background: var(--lightgrey);
    padding: 0;
}

.sidebar-widget-event .widget-title{
    font-family: var(--headingbold-font);
    font-size: 20px;
    line-height: 20px;
    color: var(--white-primary);
    padding: 15px 20px;
    background: var(--blue-primary);
    margin-bottom: 10px;
    text-align: left;
}

.sidebar-widget-event .widget-menu{
    display:block;
    padding: 0px 30px;
}

.sidebar-widget-event .widget-menu li {
    font-size: 16px;
    font-family: var(--body-font);
    display: block;
    width: max-content;
    color: var(--black-primary);
    transition: 0.3s;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #9b9b9b;
    margin-bottom: 0px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-widget-event .widget-menu li:last-child{
    border-bottom: 0px solid #9b9b9b;
}



.related-event-item{
    border-bottom: 1px solid #9b9b9b;
    margin-bottom: 20px;
    padding: 0px 20px 20px 20px;
}

.related-event-item:last-child{
    border-bottom: 0px solid #9b9b9b;
    margin-bottom: 0px;
    padding: 0px 20px 20px 20px;
}


.related-event-item h3{
    font-family: var(--body-font-bold);
    font-size:16px;
    color: var(--black-primary);
    margin-bottom: 5px;
}

.related-event-item h3:hover{
    color: var(--blue-primary);
}

.related-event-item p{
    font-family: var(--body-font);
    font-size:16px;
    color: var(--black-primary);
    margin-bottom: 10px;
}

.related-event-item .date-time{
    font-size: 14px;
    font-family: var(--body-font-bold);
    color: var(--black-primary);
}

.related-event-item .date-time i{
    background: var(--darkblue);
    padding: 8px 8px;
    border-radius: 5px;
    color: var(--white-primary);
    font-size: 18px;
    margin-right: 10px;
}




.news-card-event-single{
    position: relative;
    width: 100%;
    height: 30em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 30px;
}

.news-card-event-single .news-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* .news-card-event-single:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(to bottom, transparent, black) 
    no-repeat bottom;
  } */

  .news-card-event-single .news-context {
    position: absolute;
    padding: 20px 20px;
    bottom:0;
    left:0
  }

  .news-card-event-single .news-context .title{
    font-size: 16px;
    color: var(--white-primary);
    font-family: var(--headingbold-font);
    line-height: 24px;
  }

  .news-card-event-single .news-context .anchor-link{
    font-size: 24px;
    color: var(--white-primary);
    display: block;
    margin-bottom: 0%;
    transition: 0.3s ease-in-out;
}

.news-card-event-single .news-context .anchor-link:hover{
  margin-left: 10px;

}

  .news-card-event-single .news-context .showarrow{
    margin-bottom: 0%;
  }



  .photo-gallery .venobox img{
    width:24.7%;
    margin-bottom: 5px;
  }

  /* .tab-content .photo-gallery{
    text-align: center;
  } */

  #gallery-grid .photo-gallery{
    text-align: center;
  }

  #gallery-grid  .photo-gallery a{
    position: relative;
    overflow: hidden;
    display: inline-block;
  }


  #gallery-grid  .photo-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  #gallery-grid  .photo-gallery a:hover .photo-overlay{
    opacity: 1;
  }


  #gallery-grid  .photo-overlay h4{
    padding:30px 0px;
    text-align: center;
    color: var(--white-primary);
    font-size: 18px;
    font-family: var(--headingbold-font);
    margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  }


  .gallery-page-single{
    padding: 60px 0px;
  }

  

 .video-gallery iframe{
    width:100%;
    height:240px;
    margin-bottom:20px;
}



.ekko-lightbox .modal {
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .ekko-lightbox .modal-header {
    border-bottom: 1px solid #505050;
    padding: 12px 16px 6px 16px;
    display:none;
  }
  
  
  
  .ekko-lightbox .modal-dialog{
      max-width:60%!important;
      margin-top:10%!important;
  }
  
  .ekko-lightbox .modal-content {
    border-radius: 0;
    border: 0;
    background-color: transparent
  }
  
  .ekko-lightbox .img-responsive {
    width: 100%;
  }
  
  
  @media (max-width: 767px) {
      .ekko-lightbox a.video {
      display: block;
    }
  }
  

/* .news-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 20em;
    height: 20em;
    background: rgba(250,140,50, 0.6);
  } */


    .date-tag{
        width: 55px;
        position: absolute;
        right: 5%;
        top: 5%; 
        background: var(--white-primary);
        padding: 5px 5px;
    }
    
    .date-tag .date{
        font-size: 20px;
        font-family: var(--headingbold-font);
        color: var(--black-primary);
        line-height: 20px;
        text-align: center;
    }

    .date-tag .month{
        font-size: 14px;
        font-family: var(--body-font);
        color: var(--black-primary);
        line-height: 16px;
        margin-bottom: 5px;
        text-align: center;
    }

    .date-tag .year{
        background: var(--blue-primary);
        padding: 2px;
        font-size: 10px;
        color: var(--white-primary);
        text-align: center;
    }
    

    .clj_contactpage{
        padding: 60px 0px;
    }

    .contact-widget{
        margin-bottom: 30px;
        background: var(--lightgrey);
        /* padding: 30px 30px; */
    }

    .contact-widget .inner-content{
        padding: 0px 20px 20px 20px;
    }

    
    .contact-widget .inner-content p{
        margin-bottom: 0;
    }
    
    .contact-widget .widget-title{
        font-family: var(--headingbold-font);
        font-size: 20px;
        line-height: 20px;
        color: var(--white-primary);
        padding: 15px 20px;
        background: var(--blue-primary);
        margin-bottom: 20px;
    }

    .contact-widget .office-name{
        font-size: 18px;
        font-family: var(--body-font-bold);
        margin-bottom: 0;
    }

    .clj_aboutpage{
        padding: 60px 0px 60px 0px;
        background: var(--lightgrey);
    }


    .about-description{
        font-size: 16px;
    }


    .clj_aboutcolorjet{
        padding: 60px 0px 60px 0px;
    }

    .clj_aboutcolorjet .page-desc{
        font-size: 16px;
        text-align: center;
    }

    .clj_aroundworld{
        padding: 60px 0px 60px 0px;
        background: var(--lightgrey);
    }

    .clj_aroundworld .page-desc{
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .clj_history{
        padding: 60px 0px 60px 0px;
        background: var(--white-primary);
    }

    .clj_history img{
        margin-bottom: 30px;
    }

    .clj_history .page-desc{
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .clj_blog_listing_page{
        padding: 60px 0px;
    }

    .featured-blog{
        margin-bottom: 30px;
    }

    /* .featured-blog img{
        margin-bottom: 30px;
    } */

    .featured-blog .blog-content{
        background: var(--lightgrey);
        padding: 20px 20px;
    }

    .featured-blog .blog-category{
        background: var(--blue-primary);
        padding: 5px 10px;
        color: var(--white-primary);
        width: max-content;
        font-family: var(--body-font-medium);
        margin-bottom:20px;
        font-size: 14px;
        position: absolute;
        top: 2%;
        left: 4%;
    }

    .featured-blog .blog-title{
        color: var(--black-primary);
        font-family: var(--headingbold-font);
        margin-bottom:10px;
        font-size: 24px;
    }


    .explore{
        background: #19a9e5;
        padding: 10px 20px;
        color: #fff;
        font-size: 20px;
        display: inline-block;
        position: relative;
        width:max-content;
        font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    }

    @media (max-width:767px){
        .featured-blog .blog-title{
            font-size: 20px;
        }
    }

    .featured-blog .blog-desc{
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom:10px;
        font-size: 16px;
    }

    .featured-blog .blog-link{
        color: var(--blue-primary);
        font-family: var(--body-font-bold);
        font-size: 16px;
        text-decoration: none;
        border: 1px solid var(--blue-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
    }

    .featured-blog .blog-link:hover{
        color: var(--white-primary);
        text-decoration: none !important;
        border: 1px solid var(--blue-primary);
        padding: 10px 20px;
        display: block;
        width: max-content;
        background: var(--blue-primary);
    }


    .featured-blog-card{
        margin-bottom: 30px;
        background: var(--lightgrey);
    }

    .featured-blog-card img{
        width:100%;
    }



    .featured-blog-card .blog-content{
        padding: 20px 20px;
    }

    .featured-blog-card .blog-category{
        background: var(--blue-primary);
        padding: 5px 10px;
        color: var(--white-primary);
        width: max-content;
        font-family: var(--body-font-medium);
        margin-bottom:15px;
        font-size: 14px;
        position: absolute;
        top: 2%;
        left: 6%;
    }
    

    .featured-blog-card .blog-title{
        color: var(--black-primary);
        font-family: var(--headingbold-font);
        margin-bottom:10px;
        font-size: 20px;
        height: 62px;
        overflow: hidden;
    }

    .featured-blog-card .blog-desc{
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom:10px;
        font-size: 16px;
        height: 95px;
        overflow: hidden;
    }

    .featured-blog-card .blog-link{
        color: var(--blue-primary);
        font-family: var(--body-font-bold);
        font-size: 16px;
        text-decoration: none;
        border: 1px solid var(--blue-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
}
  


    .featured-blog-card .blog-link:hover{
        background: var(--blue-primary);
        color: var(--white-primary);
        text-decoration: none !important;
        border: 1px solid var(--blue-primary);
    padding: 10px 20px;
    display: block;
    width: max-content;
}
    

    .clj_blog_single_page{
        padding-top: 20px;
        padding-bottom: 60px;
    }

    @media (max-width:767px){
        .clj_blog_single_page{
            padding-top: 20px;
            padding-bottom: 30px;
        }
    }

    .blog-single{
        margin-bottom: 30px;
    }

    .blog-single img{
        margin-bottom: 30px;
    }

    .blog-single .blog-category{
        background: var(--blue-primary);
    padding: 5px 10px;
    color: var(--white-primary);
    width: max-content;
    font-family: var(--body-font-medium);
    margin-bottom: 15px;
    font-size: 14px;
    position: absolute;
    top: 2%;
    left: 2%;
}

.blog-single .blog-image{
    position: relative;
}


    .blog-single .blog-title{
        color: var(--black-primary);
        font-family: var(--headingbold-font);
        margin-bottom:10px;
        font-size: 28px;
    }

    .blog-single .blog-title::after{
        content: '';
        height:5px;
        width:102px;
        background: var(--blue-primary);
        display: block;
        margin: 5px 0px 20px 0px;
    }

    .blog-single .blog-desc{
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom:20px;
        font-size: 16px;
    }

    .blog-single .blog-desc img{
        margin:10px 0px;
        width: 100%;
    }

    .blog-single .blog-link{
        color: var(--black-primary);
        font-family: var(--body-font-bold);
        font-size: 18px;
        text-decoration: none;
    }



    .blog-socialshare .fa{
        background: grey;
        width: 48px;
        height: 28px;    
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    line-height: 30px;
    color: var(--white-primary);
    transition: 0.3s;
    }

    .blog-socialshare .fa:hover{
        transform: scale(1.08);
    }

    .blog-socialshare .fa-facebook-f{
        background: #1877F2;
    }

    .blog-socialshare .fa-twitter{
        background: #1DA1F2;
    }

    .blog-socialshare .fa-linkedin{
        background: #0077b5;
    }

    .blog-socialshare .fa-whatsapp{
        background: #25d366;
    }

    .blog-socialshare .fa-share-alt{
        background:var(--white-primary);
        color: var(--black-primary);
        width: auto;
        margin-right: 10px;
    }

    .blog-post-detail{
        display: inline-block;
        width: 100%;
    }

    .blog-post-detail .blog-views{
        width: max-content;
        margin-right: 15px;
        display: inline-block;
        font-family: var(--body-font-bold);
        font-size: 16px;
    }

    .blog-post-detail .blog-author{
        width: max-content;
        margin-right: 5px;
        padding-right: 5px;
        display: inline-block;
        /* border-right: 1px solid var(--black-primary); */
        font-family: var(--body-font-bold);
        font-size: 16px;
    }

    .blog-post-detail .blog-time{
        width: max-content;
        margin-right: 5px;
        padding-right: 5px;
        display: inline-block;
        /* border-right: 1px solid var(--black-primary); */
        font-family: var(--body-font-bold);
        font-size: 16px;
    }

    .blog-post-detail .blog-socialshare{
        width: max-content;
    text-align: right;
    margin-top: 15px;
    display: inline-block;
    }

    .blog-post-detail .blog-socialshare.right{
        float: right;
        margin-top: 0;
    }

    @media(max-width:767px){
        .blog-post-detail{
            display: inline-block;
        }

        .blog-post-detail .blog-socialshare.right{
            float:left;
            margin-top: 15px;
        }
    }


    .blog-post-detail .blog-socialshare span{
        background: var(--lightgrey);
        padding: 0px 10px;
        display: inline-block;
        font-size: 12px;
        margin-right: 5px;
    }

    .blog-post-detail .blog-socialshare span i{
        background: transparent;
        font-size: 12px;
        margin-right: 0;
    }

    .blog-post-detail .blog-author i{
        background: transparent;
        color: var(--blue-primary);
        padding-right: 5px;
        border-radius: 50px;
        font-size: 16px;
        /* width: 25px;
        height: 25px;
        line-height: 24px; */
        text-align: center;
    }

    .blog-post-detail .blog-time i{
        background: transparent;
        color: var(--blue-primary);
        padding-left: 5px;
        border-radius: 50px;
        font-size: 16px;
        /* width: 25px;
        height: 25px;
        line-height: 24px; */
        text-align: center;
    }

    .blog-post-detail .blog-views i{
        background: transparent;
        color: var(--blue-primary);
        padding-left: 5px;
        border-radius: 50px;
        font-size: 16px;
        /* width: 25px;
        height: 25px;
        line-height: 24px; */
        text-align: center;
    }


.support-warranty-block .desc{
    font-size: 15px;
    padding: 0px 30px 0px 0px;
}


@media (max-width:767px){
    .support-warranty-block .desc{
        padding: 0px 30px 15px 15px;
    }
}

    .clj-faq-page{
        padding: 60px 0px 60px 0px;
    }

      .tab-wrapper {
        text-align: center;
        display: block;
        margin: auto;
      }
      
      .tabs {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
      }
      
      .tab-link {
        margin: 0 1%;
        list-style: none;
        padding: 10px 40px;
        color: var(--blue-primary);
        font-family: var(--body-font-bold);
        font-size: 22px;
        cursor: pointer;
        text-transform: capitalize;
        transition: all ease 0.5s;
        border-bottom: solid 3px rgba(255, 255, 255, 0);
      }
      
      .tab-link:hover {
        color: var(--black-primary);
        border-color:var(--blue-primary);
      }
      
      .tab-link.active {
        color: #333;
        border-color: #333;
      }
      
     
      .tab-link.active {
        color: var(--black-primary);
        border-color: var(--blue-primary);
      }
      

      @media (max-width:767px){
        .tab-link {
            padding: 10px 20px;
            font-size: 16px;
        }
      }

      
      .content-wrapper {
        padding: 40px 0px;
      }

      
      .tab-content {
        display: none;
        color: #888;
        font-weight: 300;
        font-size: 15px;
        opacity: 0;
        transform: translateY(15px);
        animation: fadeIn 0.5s ease 1 forwards;
      }
      
      .tab-content.active {
        display: block;
      }
      
      @keyframes fadeIn {
        100% {
          opacity: 1;
          transform: none;
        }
      }

      .clj_customer_support{
        padding: 60px 0px 60px 0px;
      }

      .clj_customer_support .form-control-submit{
        font-size: 18px;
        padding: 8px 12px;
        margin-top: 30px;
        border: 2px solid var(--darkblue);
      }

      .clj_customer_support .form-control-submit:hover{
        background: var(--white-primary);
        border: 2px solid var(--darkblue);
        color: var(--darkblue);

      }

      .clj_customer_support form select{
        color: #212529;
      }

      .content-box h3{
        font-family: var(--headingbold-font);
        font-size: 20px;
        line-height: 20px;
        color: var(--white-primary);
        padding: 15px 20px;
        background: var(--blue-primary);
        margin-bottom: 30px;
    }

    .content-box p{
        font-size: 16px;
        color: var(--black-primary);
        font-family: var(--body-font);
        margin-bottom: 30px;
    }

    .support-icon-box {
        background: var(--lightgrey);
        padding: 15px 15px;
        margin-bottom: 20px;
        align-items:center;
        display: flex;
    }

    .support-icon-box .icon-bloc{
        width: 30%;
    }

    .support-icon-box p{
        margin-bottom: 0;
        font-size: 14px;
        color: var(--black-primary);
        font-family: var(--body-font-medium);
    }

    .support-icon-box i{
        font-size: 35px;
        color: var(--blue-primary);
        background: var(--white-primary);
        border: 3px solid var(--blue-primary);
        border-radius: 50%;
        /* padding: 15px 15px; */
        margin-bottom: 15px;
        line-height: 65px;
        margin-right: 15px;
        height: 70px;
        width: 70px;
        text-align: center;
    }
    
    .support-icon-box i:hover{
        color: var(--white-primary);
        background: var(--blue-primary);
    }

.filter{
   margin-bottom: 60px; 
}

.filter .filter-control{
    background: var(--white-primary);
    border: 1px solid #9b9b9b;
    width: 100%;
    padding: 6px 12px;
    min-height: 40px;
    color: var(--black-primary);
    font-size: 14px;
    font-family: var(--body-font);
}

.filter .filter-control:focus{
    outline: 0!important;
    border: 1px solid var(--blue-primary);
}

.filter  input[type="button"]{
    width: 100%;
    background: var(--darkblue);
    border: 1px solid #9b9b9b;
    width: 100%;
    padding: 6px 12px;
    min-height: 40px;
    color: var(--white-primary);
    font-size: 14px;
    font-family: var(--body-font);
    transition: all 0.3s;
}

.filter  input[type="button"]:hover{
    width: 100%;
    background: var(--white-primary);
    color: var(--darkblue);
    border: 1px solid var(--darkblue);
}


.event-filter  input[type="submit"]{
    width: 100%;
    background: var(--darkblue);
    border: 1px solid #9b9b9b;
    width: 100%;
    padding: 6px 12px;
    min-height: 40px;
    color: var(--white-primary);
    font-size: 14px;
    font-family: var(--body-font);
    transition: all 0.3s;
}

.event-filter  input[type="submit"]:hover{
    width: 100%;
    background: var(--white-primary);
    color: var(--darkblue);
    border: 1px solid var(--darkblue);
}





@media (min-width: 768px){
    .filter .col-md-3 {
    flex: 0 0 auto;
    width: 20%;
}
}

.form-control{
    padding: 20px 0px;
    border-bottom: 1px solid #333333;
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: #212529;
    font-family: var(--body-font);
}

.form-control:focus{
    outline: 0!important;
    border-bottom: 1px solid var(--blue-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #212529;
}

.form-control::placeholder{
    color: #212529;
}

.form-control::-moz-placeholder{
    color: #212529;
    opacity: 1; 
}

.form-control::-webkit-input-placeholder{
    color: #212529;
    opacity: 1; 
}

select{
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/> </svg>')
      no-repeat!important;
    background-size: 16px!important;
    background-position: calc(100% - 12px) 10px!important;
    background-repeat: no-repeat!important;
    -webkit-appearance: none;
    appearance: none;
    color: #212529;
  }

.form-control-submit{
    width: 100%;
    padding: 20px 0px;
    font-size: 20px;
    margin-top: 20px;
    background: var(--darkblue);
    color: var(--white-primary);
}

.form-control-submit:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    border: 1px solid var(--blue-primary);
}

.fixed-virtual{
    position: fixed;
    left:0;
    top:18%;
    z-index: 999;
    height: 452px;
}

.fixed-query{
    position: fixed;
    right:0;
    top:18%;
    z-index: 999;
    height: 452px;
}

.fixed-form{
    background: var(--white-primary);
    width: 325px;
    padding: 20px 20px;
    position: fixed;
    right:0px;
    top:18%;
    z-index: 9999;
    display: none;
    border: 2px solid #dddddd;
}

/* 
.fixed-form.active{
    right:0px;
} */

.fixed-form h3{
    font-size: 16px;
    font-family: var(--headingbold-font);
    background: var(--darkblue);
    color: var(--white-primary);
    padding: 10px;
    margin-bottom: 15px;
}
 
.fixed-form i{
    background: var(--darkblue);
    padding: 8px;
    color: var(--white);
    border-radius: 50px;
    position: absolute;
    left: -4%;
    top: -4%;
    cursor: pointer;
    height: 35px;
    width: 35px;
    text-align: center;
    font-size: 16px;
}


.fixed-form p{
    font-size: 14px;
    font-family: var(--body-font-medium);
    color: var(--black-primary);
}
 
.fixed-form input{
    background:#dddddd;
    padding: 12px 24px;
    border: 0;
    margin-bottom: 15px;
    width: 100%;
    font-size: 12px;
    font-family: var(--body-font-medium);
}

.fixed-form select{
    background-color:#dddddd!important;
    padding: 12px 24px;
    border: 0;
    margin-bottom: 15px;
    width: 100%;
    font-size: 12px;
    font-family: var(--body-font-medium);
}

 
.fixed-form input::placeholder{
    color: var(--black-primary);
    font-family: var(--body-font-medium);
    font-size: 12px;
}

.fixed-form select:focus{
    outline:none;
}
 
.fixed-form input[type="submit"]{
    background:var(--darkblue);
    padding: 8px 18px;
    color: var(--white-primary);
    width: max-content;
    font-size: 16px;
    font-family: var(--body-font-bold);
    margin-bottom: 0;
}

.virtual-tour-btn{
    padding: 8px 16px 8px 16px;
    width: 150px;
    text-align: center;
    height: 40px;
    background: var(--darkblue);
    border-radius: 0px 0px 5px 5px;
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    position: absolute;
    left: -55px;
    top: 48%;
    color: var(--white-primary);
    z-index: 999;
    text-decoration: none;
    font-size: 16px;
    zoom: 1.005;
}

.virtual-tour-btn i{
    margin-right: 5px;
}


.virtual-tour-btn:hover{
    color: var(--white-primary);
}


.query-btn{
    padding: 8px 16px 8px 16px;
    width: 150px;
    text-align: center;
    height: 40px;
    background: var(--darkblue);
    border-radius: 5px 5px 0px 0px;
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    position: absolute;
    left: -95px;
    top: 45%;
    color: var(--white-primary);
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    zoom: 1.005;
}

.query-btn:hover{
    color: var(--white-primary);
}


.query-btn i{
    margin-right: 5px;
}

.timeline{
    position:relative;
    margin:50px auto;
    padding:40px 0;
    width:1000px;
    box-sizing:border-box;
  }
  .timeline:before{
    content:'';
    position:absolute;
    left:50%;
    width:2px;
    height:100%;
    background:#c5c5c5;
  }
  .timeline ul{
    padding:0;
    margin:0;
  }
  .timeline ul li{
    list-style:none;
    position:relative;
    width:50%;
    padding:20px 40px;
    box-sizing:border-box;
  }
  .timeline ul li:nth-child(odd){
    float:left;
    text-align:right;
    clear:both;
  }
  .timeline ul li:nth-child(even){
    float:right;
    text-align:left;
    clear:both;
  }
  .content{
    padding-bottom:20px;
  }
  .timeline ul li:nth-child(odd):before
  {
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    top:24px;
    right:-6px;
    background:var(--blue-primary);
    border-radius:50%;
    box-shadow:0 0 0 3px rgba(33, 183, 233, 0.2);
  }
  .timeline ul li:nth-child(even):before
  {
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    top:24px;
    left:-4px;
    background:var(--blue-primary);
    border-radius:50%;
    box-shadow:0 0 0 3px rgba(33, 183, 233, 0.2);
  }
  .timeline ul li h3{
    padding:0;
    margin:0;
    color:var(--blue-primary);
    font-family: var(--body-font-medium);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .timeline ul li p{
    margin:10px 0 0;
    padding:0;
  }
  .timeline ul li .time h4{
    margin:0;
    padding:0;
    font-size:24px;
    font-family: var(--headingbold-font);
    color: var(--white-primary);
  }
  .timeline ul li:nth-child(odd) .time
  {
    position:absolute;
    top:12px;
    right:-165px;
    margin:0;
    padding:10px 18px;
    background:var(--blue-primary);
    color:var(--white-primary);
    border-radius:30px;
    box-shadow:0 0 0 4px var(--lightblue);
  }
  .timeline ul li:nth-child(even) .time
  {
    position:absolute;
    top:12px;
    left:-165px;
    margin:0;
    padding:10px 18px;
    background:var(--blue-primary);
    color:var(--white-primary);
    border-radius:30px;
    box-shadow:0 0 0 4px var(--lightblue);
  }
  @media(max-width:1000px)
  {
    .timeline{
      width:100%;
    }
  }
  @media(max-width:767px){
    .timeline{
      width:100%;
      padding-bottom:0;
    }
    .timeline ul li p{
        font-size: 16px;
    }
    .timeline:before{
      left:20px;
      height:100%;
    }
    .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even)
    {
      width:100%;
      text-align:left;
      padding-left:50px;
      padding-bottom:50px;
    }
    .timeline ul li:nth-child(odd):before,
    .timeline ul li:nth-child(even):before
    {
      top:-18px;
      left:16px;
    }
    .timeline ul li:nth-child(odd) .time,
    .timeline ul li:nth-child(even) .time{
      top:-30px;
      left:50px;
      right:inherit;
    }
  }


  .clj_application_page{
    padding: 60px 0px;
  }


  .clj_application_page .photo-gallery .venobox img{
    width: 24.6%;
    margin-bottom: 5px;
}

.mysection {
  column-width: 300px;
  column-gap: 5px;
  padding: 5px;
}

.mysection img {
  width: 100%;
  cursor: pointer;
  margin-bottom: 5px;
}

#contact-us-query select{
    padding: 0 !important;
}



.product-video-grid .video-block{
    position: relative;
}


.product-video-grid .video-block img{
    width: 100%;
    border: 2px solid #cccccc;
    padding: 10px;
}


.product-video-grid .video-block i{
    background: #ff0000;
    color: var(--white-primary);
    border-radius: 12px;
    width: 65px;
    height: 45px;
    font-size: 24px;
    line-height: 46px;
    text-align: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    
}

.modal{
    z-index: 99999;
}

.modal-backdrop{
    z-index: 9999;
}

.ekko-lightbox .modal-body {
        background: var(--white-primary)!important;
}


.getintouchmodal{
    display: none;
    position: fixed; 
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.8);
    overflow: hidden;
  }
  
  .getintouchmodal .modal-content {
    background-color: transparent;
    margin: 6% auto; 
    padding: 20px;
    border: 0;
    width: 60%; 
  }
  
 
  .getintouchmodal .git_close {
    position: absolute;
    top: -1%;
    right: -1%;
    font-size: 38px;
    cursor: pointer;
    text-align: center;
    color: var(--white-primary);
    font-weight: 100;
    z-index: 999;
    background: var(--darkblue);
    border-radius: 0%;
    width: 40px;
    height: 40px;
    line-height: 42px;
}

.getintouch-form-image img{
    height: 421px;
    object-fit: cover;
}


  .getintouch-form{
    background: var(--blue-primary);
    padding: 20px 20px;
    border: 2px solid var(--blue-primary);
}


.getintouch-form h3{
    font-size: 24px;
    font-family: var(--headingbold-font);
    color: var(--white-primary);
    margin-bottom: 15px;
    text-align: center;
}
 
.getintouch-form p{
    font-size: 14px;
    font-family: var(--body-font-medium);
    color: var(--black-primary);
}
 
.getintouch-form input{
    background:var(--white-primary);
    padding: 12px 24px;
    border: 0;
    margin-bottom: 15px;
    width: 100%;
    font-size: 13px;
    font-family: var(--body-font-medium);
}

.getintouch-form select{
    background-color:var(--white-primary)!important;
    padding: 12px 24px;
    border: 0;
    margin-bottom: 15px;
    width: 100%;
    height: 43px;
    font-size: 12px;
    font-family: var(--body-font-medium);
}

.getintouch-form select:focus{
    outline: none;
}

 
.getintouch-form input::placeholder{
    color: var(--black-primary);
    font-family: var(--body-font-medium);
    font-size: 12px;
}
 
.getintouch-form input[type="submit"]{
    background:var(--darkblue);
    padding: 8px 18px;
    color: var(--white-primary);
    width: max-content;
    font-size: 16px;
    font-family: var(--body-font-bold);
    margin-bottom: 0;
}


.getintouch-form input[type="submit"]:hover{
    background:var(--white-primary);
    padding: 8px 18px;
    color: var(--black-primary);
}

.searchmodal {
    display: none; 
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8); 
  }
  

  .searchmodal .modal-content {
    background-color: transparent;
    margin: 12% auto; 
    padding: 20px;
    border: 0;
    width: 60%; 
  }
  
 
  .searchmodal .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}

.searchmodal .close2 {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}

.searchmodal .modal-content h3{
    color: var(--white-primary);
    text-align: center;
}

  .searchmodal .modal-content .search-global input[type="text"]{
    padding: 12px 16px;
    font-size:16px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--white-primary);
    color: var(--white-primary);
    font-family: var(--body-font-medium)
  }

  .searchmodal .modal-content .search-global input[type="text"]::placeholder{
    color: var(--lightgrey);
    font-size: 16px;
  }

  .searchmodal .modal-content .search-global input[type="submit"]{
    background: var(--darkblue);
    color: var(--white-primary);
    position: absolute;
    right: 2%;
    border: 1px solid var(--white-primary);
    padding: 12px 25px;
    font-size: 16px;
    font-family: var(--body-font-medium);
    text-transform: capitalize;
  }

  .searchmodal .modal-content .search-global input[type="submit"]:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
    position: absolute;
    right: 2%;
    border: 1px solid var(--white-primary);
    padding: 12px 25px;
    font-size: 16px;
    font-family: var(--body-font-medium);
    text-transform: capitalize;
  }



  .virtualmodal {
    display: none; 
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8); 
  }
  

  .virtualmodal .modal-content {
    background-color: transparent;
    margin: 8% auto; 
    padding: 20px;
    border: 4px solid var(--white-primary);
    width: 50%; 
  }
  
 
  .virtualmodal .closevirtual {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}


 
.virtualmodal .closevirtualdesk {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}

.virtualmodal .modal-content iframe{
    width: 100%;
    height: 380px!important;
}


.virtualmodal .modal-content h3{
    color: var(--white-primary);
    text-align: center;
}

 





  .ytvideomodal{
    display: none; 
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.8);
  }
  
  .ytvideomodal .modal-content {
    background-color: transparent;
    margin: 15% auto;
    padding: 20px;
    border: 0;
    width: 60%; 
  }
  
 
  .ytvideomodal .ytclose {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}

.ytvideomodal .modal-content h3{
    color: var(--white-primary);
    text-align: center;
}

  .ytvideomodal .modal-content .search-global input[type="text"]{
    padding: 12px 16px;
    font-size:16px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--white-primary);
    color: var(--white-primary);
    font-family: var(--body-font-medium)
  }

  .ytvideomodal .modal-content .search-global input[type="text"]::placeholder{
    color: var(--lightgrey);
    font-size: 16px;
  }



  .clj_global_partner_filter{
    padding: 60px 0px;
  }

  .clj_global_partner_filter .row{
    align-items: center;
  }

  .filter_global_partner label{
    font-size: 20px;
    font-family: var(--body-font-bold);
  }

  .filter_global_partner select{
    padding: 0px 20px;
  }


  .clj_global_partner_filter_card{
    background: var(--lightgrey);
    padding: 60px 0px;
  }

  .global_partner_card{
    background:var(--white-primary);
    padding: 36px 36px;
    border: 1px solid var(--dimgrey);
    margin-bottom: 30px;
  }

  .global_partner_card .title{
    font-family: var(--headingbold-font);
    margin-bottom: 10px;
    height: 52px;
    overflow-y: auto;
  }

  .global_partner_card .address{
    font-size: 16px;
    height: 52px;
    overflow-y: auto;
  }

  .global_partner_contact a{
    background: var(--blue-primary);
    padding: 6px 6px;
    font-size: 13px;
    color: var(--white-primary);
    text-decoration: none;
    transition: 0.3s;
    margin-right: 5px;
  }

  .global_partner_contact a:nth-child(1){
    background: var(--lightblue);
  }

  .global_partner_contact a:nth-child(2){
    background: var(--blue-primary);
  }

  .global_partner_contact a:nth-child(3){
    background: var(--darkblue);
  }

  .global_partner_contact a:hover{
    background: var(--black-primary);
  }


  .clj_document_filter{
    padding: 60px 0px 60px 0px;
  }

  .clj_document_grid{
    padding:0px 0px 60px 0px;
  }

  .clj_document_grid .single_document_block{
    margin-bottom: 20px;
  }

  .clj_document_grid .single_document_block img{
    margin-bottom: 5px;
  }

  .clj_document_grid .single_document_block .link-btn{
    background: var(--blue-primary);
    color: var(--white-primary);
    padding: 10px 20px;
    display: block;
    width: 100%;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
  }

  .clj_document_grid .single_document_block .link-btn:hover{
    background: var(--darkblue);
  }

  .filter_technical_documents label{
    font-size: 20px;
    font-family: var(--body-font-bold);
  }

  .filter_technical_documents select{
    padding: 0px 20px;
  }


  .clj_document_filter .row{
    align-items: center;
  }

  .clj_contactpage form input[type="submit"]{
    border: 2px solid var(--darkblue);
  }

  .clj_contactpage form input[type="submit"]:hover{
    background: var(--white-primary);
    color: var(--darkblue);
    border: 2px solid var(--darkblue);
  }


  table tbody, td, tfoot, th, thead, tr{
    border-width:1px;
    padding:5px 5px;
}

.section-specification table td table td {
    border: 2px solid white !important;
    padding: 0px !important;
}

table{
    width: 100% !important;
}

th{
    background: var(--lightgrey);
    padding: 6px;
    color: var(--black-primary);
    text-align: center;
    font-family: var(--body-font);
    font-weight: normal;
    text-align: center;
    border: 1px solid #9b9b9b;
}



td{
    background: var(--white-primary)!important;
    padding: 6px!important;
    color: var(--black-primary)!important;
    text-align: left!important;
    font-family: var(--body-font)!important;
    font-weight: normal!important;
    border: 1px solid #9b9b9b;
    /* min-width: 100px!important; */
}

.sv_specification_heading{
    background: var(--blue-primary) !important;
    color: #fff !important;
    text-align: center!important;
}


.sv_specification_heading h3{
    margin-bottom: 0!important;
}


table .download-btn{
    background: var(--blue-primary);
    color: var(--white-primary);
    padding: 5px 20px;
    display: block;
    width: max-content;
    margin: auto;
    transition: 0.3s;
}

table .download-btn:hover{
    background: var(--darkblue);
}


.clj_document_table{
    margin-bottom: 60px;
}




table.dataTable thead>tr>th{
    color: var(--white-primary)!important;
    font-size: 16px!important;
}

.dataTables_wrapper .dataTable th.sorting_asc{
    color: var(--white-primary)!important;
    width: 60px !important;;
}

.dataTables_wrapper .dataTable th.sorting_desc{
    color: var(--white-primary)!important;
}


.clj_document_table .dataTables_wrapper .dataTable th.sorting_asc{
    width: 60px!important;
    min-width: 60px!important;
}

.clj_document_table .dataTables_wrapper .dataTable td.sorting_1{
    width: 60px!important;
    text-align: center!important;
    min-width: 60px!important;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    padding: 4px;
    width: 65px;
    background-position: calc(100% - 12px) 5px!important;
}
 

.dataTables_wrapper .dataTable th.sorting:after{
    top:70%!important;
    opacity: 1;
}





/*----- download page start -----*/

.clj_downloads_page{
    padding:60px 0px 60px 0px;
}

.clj_downloads_page .filter .filter-control{
    margin-bottom:20px;
}

.management_team_section{
    padding: 60px 0px;
}

.management_team_section .content-block h3{
font-family: var(--headingbold-font);
color: var(--black-primary);
text-align: left;
text-transform: capitalize;
font-size: 28px;
line-height: auto;
}

.management_team_section .content-block .short-desc{
    font-size: 15px;
}

.management_team_section .row{
    align-items: flex-start;
}

.management_team_section .content-block .desg{
    font-family: var(--headingbold-font);
    color: var(--blue-primary);
    text-align: left;
    text-transform: capitalize;
    font-size: 20px;
    line-height: auto;
    }



.card.card-custom > .card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--bs-gray-400);
}



.event-card-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--black-primary);
    z-index: 99;
    display: none;
    opacity: 0.8;

}

.event-card:hover .event-card-overlay{
    display: block;
}



.awards_section{
    padding: 60px 0px;
}

.award-card{
    background: var(--lightgrey);
    margin-bottom: 5px;
        position: relative;
        width: 100%;
        height: 425px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
}


@media (max-width:767px){
    .award-card{
        height: 300px;
    }
}


.award_block .content_block{
    padding: 25px 25px;
}

.awards_section .award_block .content_block .date {
    font-size: 14px;
    color: var(--blue-primary);
    font-family: var(--body-font-medium);
    margin-bottom: 10px;
}

.awards_section .award_block .content_block .title {
    font-size: 18px;
    font-family: var(--headingbold-font);
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--black-primary);
}

.awards_section .award_block .content_block  .desc {
    font-size: 14px;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--black-primary);
    transition: all 0.5s ease-in-out;
}

.award-box.on .award-desc{
    display: block;
    transition: all 0.5s ease-in-out;
}


.moretext {
    display: none;
  }

  .awards_tabs {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }

  .awards_tabs ul{
    padding: 0;
  }

  .awards_tabs ul li {
    display: inline-block;
}


.awards_tabs ul li a{
    color: var(--white-primary);
    list-style-type: none;
    background: var(--blue-primary);
    padding: 15px 20px;
    font-size: 18px;
    color: var(--white-primary);
}

.awards_section .award_block_overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #00000012, black) no-repeat bottom;
}

.awards_section .award-card .award-context {
    position: absolute;
    padding: 20px 20px;
    bottom:0;
  }

  .awards_section .award-card .award-context  .title{
    font-size: 20px;
    color: var(--white-primary);
    font-family: var(--headingbold-font);
    line-height: 26px;
  }

  .awards_section .award-card .award-context  .anchor-link{
    font-size: 24px;
    color: var(--white-primary);
    display: block;
    margin-bottom: 0%;
    transition: 0.3s ease-in-out;
  }

  .awards_section .award-card .award-context  .anchor-link:hover{
    margin-left: 10px;

  }
.awards_section .award-card .award-context {
    position: absolute;
    padding: 15px 20px;
    bottom:0;
  }

  .awards_section .award-card .award-context  .title{
    font-size: 20px;
    color: var(--white-primary);
    font-family: var(--headingbold-font);
    line-height: 26px;
  }

  .awards_section .award-card .award-context  .anchor-link{
    font-size: 16px;
    color: var(--white-primary);
    display: block;
    margin-bottom: 0%;
    transition: 0.3s ease-in-out;
  }

  .awards_section .award-card .award-context  .anchor-link:hover{
    margin-left: 10px;

  }

  .awards_section .award-desc {
    font-size: 14px;
    font-family: var(--body-font);
    margin-bottom: 10px;
    color: var(--black-primary);
    display: none;
}


.awards_section .award_block .content_block .date {
    font-size: 14px;
    color: var(--blue-primary);
    font-family: var(--body-font-medium);
    margin-bottom: 10px;
    position: absolute;
    right: 5%;
    top: 5%;
    background: var(--white-primary);
    padding: 5px 5px;
}


.award-card.on .award-desc{
    display: block;
}


/*-- career page start --*/

.cj_career_page{
    padding: 60px 0px;
}


.cj_career_page .sub-title {
    font-family: var(--body-font);
    color: var(--black-primary);
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 18px;
}

.cj_career_page .desc {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.cj_career_page input[type="submit"]{
    width: 100%;
    padding: 12px 0px;
    font-size: 16px;
    margin-top: 20px;
    background: var(--darkblue);
    color: var(--white-primary);
    font-family: var(--body-font-bold);
    border: 2px solid var(--darkblue);
}

.cj_career_page input[type="submit"]:hover{
    background: var(--white-primary);
    color: var(--darkblue);
    border: 2px solid var(--darkblue);
}

.fileuploadbox input{
    position: relative;
}

.fileuploadbox .upload-label{
    margin-bottom: 0;
    font-size: 12px;
/*    position: absolute;
    bottom: 0;*/
}

/*-- career page end --*/


/*-- cil page start --*/



.cj_cil_page_section_1 .right_content{
    background: var(--darkblue);
    padding: 15px 20px;
}

.cj_cil_page_section_2{
    padding: 60px 0px 0px;
}

.cj_cil_page_section_2 .desc {
    font-size: 16px;
}



.laboratories-box{
    background: #19a9e5;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    padding: 15px 0;
  }
  .market-box{
    font-family: var(--body-font-medium);
    background: #0691c4;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    padding: 15px 0;
  }


.parts-box{
    position: relative;
    padding: 80px 0;
  }
  .parts-box h3{
    font-family: var(--body-font);
    font-size: 38px;
    color: #17679a;
    text-align: center;
    margin: 0;
    font-weight: 700;
  }
  .parts-box p{
    font-size: 14px;
    text-align: justify;
    text-align-last: center;
    color: var(--black-primary);
    margin: 20px 0;
    font-family: var(--body-font);
  }


.rectangle-connect{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rectangle-img a{
    display: block;
    text-decoration: none;
    margin: 20px 0;
    width: 100%;
  }
  .rectangle-img img{
    width: auto;
    max-width: 80%;
    transition: 500ms;
  }
  .rectangle-img a:hover img{
    transform: scale(0.8);
  }
  
  .circle-box{
    width: 100%;
    max-width:440px;
    margin: 0 auto;
    position: relative;
  }
  .circle-box img:first-child{
    width: 100%;
    animation: imgmove 20s linear infinite;
  }
  @keyframes imgmove{
    from{transform: rotate(0);}
    to{transform: rotate(360deg);}
  }
  .circle-box img:last-child{
    position: absolute;
    width: 55%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .wire-l1,.wire-l2,.wire-l3,.wire-l4,
  .wire-r1,.wire-r2,.wire-r3,.wire-r4{position: absolute;}
  .wire-l1,.wire-l4,.wire-r1,.wire-r4{width: 15%;}
  .wire-l2,.wire-l3,.wire-r2,.wire-r3{width: 7.5%;}
  .wire-l1{
    left: 26%;
    top: 9%;
    transform: rotate(180deg) scaleY(-1);
  }
  .wire-l2{
    left: 26%;
    top: 34%;
  }
  .wire-l3{
    left: 26%;
    bottom: 34%;
  }
  .wire-l4{
    left: 26%;
    bottom: 9%;
    transform: rotate(180deg) scaleY(1);
  }
  .wire-r1{
    right: 26%;
    top: 9%;
  }
  .wire-r2{
    right: 26%;
    top: 34%;
  }
  .wire-r3{
    right: 26%;
    bottom: 34%;
  }
  .wire-r4{
    right: 26%;
    bottom: 9%;
    transform: rotate(-180deg) scaleX(-1);
  }



  .listing-box{
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: center;
    display: flex;
    align-items: top;
    justify-content: space-between;
    -webkit-filter: url("#shadowed-goo");
      filter: url("#shadowed-goo");
  }
  .listing-box:before{
    content: '';
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    margin-top: 55px;
    border-radius: 50px;
    background: #6aacd6;
  }
  .listing-box li{
    position: relative;
    width: 150px;
    box-sizing: border-box;
  }
  .listing-box li:after{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(to right, #85cbef, #5997c5);
    top: 165px;
    margin-left: -7px;
    left: 50%;
  }
  .listing-box li .menu-item{
    background: #6aacd6;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    text-align: center;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: -webkit-transform ease-out 200ms;
    transition: transform ease-out 200ms;
    transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
  }
  .listing-box li .menu-item img{
    width: 100%;
    height: 100%;
  }
  .listing-box li p{
    font-family: var(--body-font-medium);
    margin-top: 190px;
    color: var(--black-primary);
    font-size: 14px;
  }
  
  .seven-box{
    padding-top: 70px;
    padding-bottom: 70px;
    background: #e6e7e8;
  }


  .optivalue-imgtext {
    padding-bottom: 40px;
}

.seven-box .desc{
    font-size: 14px;
    font-family: var(--body-font);
}




.ais-box{
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }
  .ais-box .ais-3box{
    display: table-cell;
    height: 400px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    padding-left: 80px;
  }
  .ais-box .ais-3box:before{
    content: '';
    position: absolute;
    display: block;
    width: 2000px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    background: linear-gradient(90deg, #0d72a1 5%, #049dd5 45%)
  }
  .ais-box h6{
    font-size: 14px;
    line-height: auto;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: var(--body-font);
  }
  .ais-box h6 strong{
    font-family: 'OpenSans', Arial, sans-serif !important;
    font-weight:600;
  }
  .three-colorbox{
    position: relative;
    background-repeat: no-repeat!important;
    background-size: 100% 100%!important;
    width: 239px;
    height: 100px;
    display: inline-block;
    margin: 5px 10px 5px 0;
  }
  .three-colorbox p{
    margin: 0;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: inherit;
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    padding-left: 100px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #222;
  }

  
  @media (min-width: 768px){
.row.row-valign {
    display: flex;
    align-items: center;
}
}


.cipo-box{
    background: #e6e7e8;
    padding: 40px 0;
  }
  .cipo-box img{
    width: auto;
    max-width: 100%;
  }
  .cipo-imgtext{
    display: flex;
    align-items: center;
    margin-right: -50px;
  }
  .cipo-imgtext p{
    text-align: justify;
    margin: 0;
    padding: 0 15px;
    z-index: 2;
    font-size: 14px;
  }



  .v8processor-box{
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }
  .v8processor-box h6{
    display: table-cell;
    min-height: 350px;
    height: 350px;
    vertical-align: middle;
    font-size: 14px;
    line-height: auto;
    font-weight: normal;
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-right: 50px;
    /*text-align: right;*/
    margin: 0;
    font-family: var(--body-font)
  }
  .v8processor-box h6 strong{
   font-family: 'OpenSans', Arial, sans-serif !important;
    font-weight:600;
  }
  .v8processor-box h6:before{
    content: '';
    position: absolute;
    display: block;
    width: 2000px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    background: linear-gradient(90deg, #049dd5 45%, #0d72a1 100%)
  }
  .v8processor-box img{
    float: right;
    width: 100%;
    max-width: 327px;
  }


  .greentech-box{
    background: #e6e7e8;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .greentech-box img{
    margin-bottom: 30px;
  }

  .greentech-box .desc{
    font-family: var(--body-font);
    font-size: 14px;
  }


.eco-cooling-box {
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

.eco-cooling-box h6 {
    display: table-cell;
    height: 250px;
    vertical-align: middle;
    font-size: 14px;
    line-height: auto;
    font-weight: normal;
    position: relative;
    z-index: 1;
    color: rgb(255, 255, 255);
    padding-left: 50px;
    font-family: var(--body-font);
}

.eco-cooling-box h6 strong {
    font-family: OpenSans-Semibold, Arial, sans-serif;
}

.eco-cooling-box h6::before {
    content: "";
    position: absolute;
    display: block;
    width: 2000px;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    background: linear-gradient(90deg, rgb(13, 114, 161) 5%, rgb(4, 157, 213) 45%);
}


.xactcolor-box{
    background: #e6e7e8;
    padding-top: 100px;
    padding-bottom: 90px;
  }
  .xactcolor-box h6{
    color: #6d6e71;
    font-size: 14px;
    line-height: auto;
    font-family: 'OpenSans', Arial, sans-serif !important;
  }
  .xactcolor-btn{
    width: 100%;
    max-width: 380px;
    display: inline-block;
    margin: 12px 5px 0px 5px;
  }
  


  .aivc-box{
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }
  .aivc-box h6{
    display: table-cell;
    height: 250px;
    vertical-align: middle;
    font-size: 14px;
    line-height: auto;
    font-weight: normal;
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-right: 50px;
    text-align: right;
    font-family: 'OpenSans', Arial, sans-serif !important;
  }
  .aivc-box h6 strong{
   font-family: 'OpenSans', Arial, sans-serif !important;
   font-weight: 600;
  }
  .aivc-box h6:before{
    content: '';
    position: absolute;
    display: block;
    width: 2000px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    background: linear-gradient(90deg, #049dd5 45%, #0d72a1 100%)
  }
  .aivc-box img{
    float: right;
    width: 100%;
    max-width: 239px;
  } 


  
@media(max-width: 991px){
    .seven-box{
      text-align: center;
      padding-top: 50px;
      padding-bottom: 20px;
    }
    .seven-box .img-responsive{display: inline-block;}
    .listing-box {
      display: block;
    }
    .listing-box:before {
      display: none;
    }
    .listing-box li{
      width: 30%;
      display: inline-block;
      vertical-align: top;
    }
    .listing-box li .menu-item{
      margin: 0 auto;
      position: relative;
    }
    .listing-box li p{
      margin-top: 35px;
      margin-bottom: 35px;
    }
  }

  @media(max-width: 767px){
 
  
    .parts-box {
      padding-top: 50px;
      padding-bottom: 20px;
    }
    .parts-box h3 {
      font-size: 32px;
    }
    
    .listing-box li{
      width: 45%;
    }
  
  
    .ais-box{
      text-align: center;
      padding-top: 50px;
    }
    .ais-box .img-responsive{
      display: inline-block;
      margin-bottom: 20px;
    }
  
    .cipo-box{
      text-align: center;
      padding: 50px 0;
    }
    .cipo-imgtext{
      display: block;
      text-align: center;
      margin-right: 0px;
    }
    .cipo-imgtext .img-responsive{
      display: inline-block;
    }
    .cipo-imgtext p {
      text-align: center;
      font-size: 18px;
      padding-top: 15px;
    }
    .img-mobilerotate{
      transform: rotate(90deg);
      margin-top: 40px;
    }
  
    .v8processor-box{
      text-align: center;
      padding-top: 50px;
    }
    .v8processor-box img {
      float: none;
      width: 100%;
      max-width: 280px;
      margin-bottom: 15px;
    }
    .v8processor-box h6{
      text-align: center;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .greentech-box{
      text-align: center;
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .greentech-box .img-responsive{
      display: inline-block;
      margin-bottom: 20px;
    }
    .greentech-box h6 {
      text-align: center;
      /*padding-top: 10px;*/
    }
  
    .eco-cooling-box{
      text-align: center;
      padding-top: 50px;
    }
    .eco-cooling-box img{
      width: 100%;
      max-width: 240px;
      margin-bottom: 15px;
    }
    .eco-cooling-box h6 {
      height: 200px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .xactcolor-box{
      text-align: center;
      padding-top: 50px;
      padding-bottom: 40px;
    }
    .xactcolor-box .img-responsive{
      display: inline-block;
      margin-bottom: 10px;
    }
    .xactcolor-btn{
      width: 100%;
      max-width: 250px;
    }
  
  
    .aivc-box{padding-top: 50px}
    .aivc-box img {
      float: none; 
      display: block;
      margin: 10px auto;
    }
    .aivc-box h6 {
      text-align: center;
      height: 200px;
    }
  }


  @media(max-width: 640px){
    .parts-box h3 {
      font-size: 30px;
    }
    .ais-box .ais-3box{
      padding-top: 20px;
      padding-bottom: 30px;
      padding-left: 15px;
    }
    .ais-box .ais-3box:before {
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
    }
    .v8processor-box h6{
      padding-right: 15px;
    }
    .v8processor-box h6:before {
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
    }
    .eco-cooling-box h6{
      padding-left: 15px;
    }
    .eco-cooling-box h6:before {
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
    }
    .aivc-box h6 {
      padding-right: 15px;
    }
    .aivc-box h6:before {
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
    }
  
    .three-colorbox {
      width: 100%;
      max-width: 320px;
    }
    .three-colorbox p{
      padding-left: 120px;
    }
  }

  @media(max-width: 420px){
    .listing-box li{
      width: 100%;
    }
  }

  .e-waste_section_1{
    padding: 60px 0px;
  }

  .e-waste_section_1 .desc{
    font-size: 16px;
    font-family: var(--body-font);
  }

  .bg_grey_light{
    background: var(--lightgrey);
  }

  .e-waste_section_2{
    padding: 0px 0px 60px 0px;
  }

  .e-waste_section_2 h4{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 24px;
    font-size: 20px;
  }


  
  .e-waste_section_2 .desc{
    font-size: 16px;
    font-family: var(--body-font);
  }

  .e-waste_section_3{
    padding: 60px 0px;
}

.e-waste_section_3 h4{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 24px;
    font-size: 20px;
  }

  .e-waste_section_3 ul{
    padding-left:16px;
  }

  .e-waste_section_3 ul li{
    font-size: 15px;
    font-family: var(--body-font);
    margin-bottom: 10px;
  }

.e-waste_section_3 .desc{
    font-size: 16px;
    font-family: var(--body-font);
  }




  .where_to_recycle{
    padding: 60px 0px;
  }



  .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--blue-primary)!important;
    border: 0!important;
  }

  .schedule_pickup_form{
    padding: 60px 0px;
  }


  .schedule_pickup_form .sub-title{
    text-align: center;
    font-size: 16px;
  }


  .schedule_pickup_form form input[type="submit"]{
    width: 100%;
    padding: 12px 0px;
    font-size: 16px;
    margin-top: 20px;
    background: var(--darkblue);
    color: var(--white-primary);
}


.schedule_pickup_form input[type="submit"]:hover{
    background: var(--blue-primary);
    color: var(--white-primary);
}

@media (max-width:767px){
    .e-waste_section_1{
        padding: 30px 0px;
      }

    .e-waste_section_2{
        padding: 0px 0px 30px 0px;
      }

      .e-waste_section_3{
        padding: 30px 0px;
    }

    .where_to_recycle{
        padding: 30px 0px;
    }
  }

/*-- cil page end --*/


/** ---- complete solutions page start ----**/

.complete_solution_digital{
    padding: 60px 0px;
}

.complete_solution_digital h6{
    font-family: var(--headingbold-font);
    color: var(--black-primary);
    text-align: left;
    margin-bottom: 16px;
    font-size: 20px;
}

.complete_solution_digital .desc{
    font-size: 16px;
}

.complete_solution_digital ul li{
    font-size: 15px;
    margin-bottom: 8px;
}


.mobile-icon i{
    display: none;
}




/** ---- complete solutions page end ----**/

.btn_block_faq{
    padding: 30px 0px;
}

.btn_block_faq a{
    display: block;
    margin: auto;
}


.dataTables_wrapper .dataTable th{
    font-size: 1rem!important;
    padding:0.8rem 1rem!important;
    font-family: var(--body-font-bold)!important;
    background: var(--blue-primary)!important;
    border: 1px solid #9b9b9b !important;
    text-align: center!important;
}

.dataTables_wrapper .dataTable tr.even{
    background: var(--lightgrey)!important;
}

.dataTables_wrapper .dataTable td{
    background: transparent!important;
}

table .download-btn{
    background: var(--dimgrey)!important;
    color: var(--black-primary)!important;
    border-radius: 2px!important;
}

table .download-btn:hover{
    background: var(--darkblue)!important;
    color: var(--white-primary)!important;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    height: 30px!important;
    width: 30px!important;
    background: var(--blue-primary)!important;
    border: 1px solid var(--blue-primary)!important;
    text-align: center!important;
    font-size: 16px!important;
    line-height: 32px!important;
    color: white!important;
}

.dataTables_wrapper .dataTables_info{
    padding-top: 1.25em!important;
}

.dataTables_wrapper .dataTables_paginate{
    padding-top: 1.25em!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button{
    border-radius: 0px!important;
    height: 30px!important;
    min-width: 30px!important;
    padding: 0!important;
    background: var(--lightgrey)!important;
    text-align: center!important;
    font-size: 16px!important;
    line-height: 32px!important;
    color: var(--grey)!important;
    margin-right: 5px!important;
    cursor: pointer!important;
    display: inline-block!important;
}


.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    color: white!important;
}

.section-specification table td h3{
    background: var(--blue-primary);
    padding: 5px;
    text-align: center;
    color: var(--white);
    margin-bottom: 0px;
}

header.behave .clj_topbar{
    display: none;
    transition: all 0.5s ease-in-out;
}

header.behave{
    height: 70px;
}


input[type="file"]{
    padding: 10px 0px;
}

input[type="file"]::file-selector-button {
    border: 0;
    padding: 0.2em 1.2em;
    border-radius: 0;
    background-color: var(--blue-primary);
    color: var(--white-primary);
    transition: 1s;
    font-size: 16px;
    margin-bottom: 1rem;
    width:10rem;
    text-align: center;
  }
  
  /* input[type="file"]::-ms-browse:hover {
    background-color: var(--darkblue)!important;
    color: var(--white-primary);
    border:0;
    border-radius: 0;
  }
  
  input[type="file"]::-webkit-file-upload-button:hover {
    background-color: var(--darkblue)!important;
    color: var(--white-primary);
    border:0;
    border-radius: 0;
  }
  
  input[type="file"]::file-selector-button:hover {
    background-color: var(--darkblue)!important;
    color: var(--white-primary);
    border: 0;
    border-radius: 0;
  } */


  .cj_career_page form .form-control{
    margin-bottom: 0;
    margin-top: 20px;
  }


  .section-specification tr:first-child td{
    padding: 0!important;
  }




  .clj_event_single .photo-gallery .venobox img{
    width:32.33%;
}
    

.vbox-close {
    cursor: pointer!important;
    top: 2%!important;
    right: 2%!important;
    width: 35px!important;
    height: 35px!important;
    padding: 6px!important;
    display: block!important;
    background-position: 10px center!important;
    overflow: hidden!important;
    font-size: 24px!important;
    line-height: 1!important;
    text-align: center!important;
    z-index: 99!important;
    position: absolute!important;
    color: var(--white-primary) !important;
    opacity: 1!important;
    background: var(--blue-primary) !important;
    /* content: close-quote; */
}



@media (max-width:767px){
.vbox-close {
    top: 35%!important;
    right: 5%!important;
}

.clj_event_single .photo-gallery .venobox img {
    width: 49%;
    height: 125px;
    object-fit: cover;
    margin-bottom: 5px;
    margin-right: 1%;
    float: left;
}
}







/*--- fix mobile btn ---*/

.fixmob-btn{
    display: none;
  }
  
  @media (max-width:767px){
  .fixmob-btn{
    background: var(--darkblue);
      display: block;
      position: fixed;
      bottom: 0;
      z-index: 999;
      width: 100%;
      padding-top: 5px;
      padding-bottom: 5px;
  }
  
  .fixmob-btn .query-btn{
    display: inline-block;
    width: 24%;
    text-align: center;
    position: static;
    transform: none;
    font-size: 11px;
  }

  .fixmob-btn ul{
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
  }
  
  .fixmob-btn ul li{
    display: inline-block;
    width: 24%;
    text-align: center;
    cursor: pointer;
  }

  .fixmob-btn ul li a{
    pointer-events: none;
  }
  
  .fixmob-btn ul li:last-child{
    border-right: 0px solid var(--white-primary);
  }
  
  .fixmob-btn i{
    color: var(--white-primary);
    font-size: 25px;
  }
  
  .fixmob-btn ul li .iconname{
    color:var(--white-primary);
    text-align: center;
    margin-bottom: 0;
    font-size: 11px;
  }

  .virtual-tour-btn{
    display: none;
  }

  .query-btn{
    display: none;
  }

  #myBtn{
    display: none!important;
  }

  .whatsapp-icon{
    display: none;
  }

  .virtualmodal .modal-content {
    background-color: transparent;
    margin: 40% auto;
    padding: 15px;
    border: 4px solid var(--white-primary);
    width: 90%;
}

.virtualmodal .closevirtual {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 45px;
    cursor: pointer;
    color: var(--white-primary);
    font-weight: 100;
}

.virtualmodal .modal-content iframe{
    height: 280px!important;
}

}




/*** Mobile Responsive ***/

@media (max-width:767px){


    .mainmenu li .sub-menu a{
        display: block;
    }


    .awards_tabs ul li a{
        padding: 15px 20px;
        font-size: 16px;
        display: inline-block;
        margin-bottom: 10px;
    }

    main{
        padding-top: 90px;
    }

    .innerpage-header{
        height: 90px;
    }

    header.behave{
        height: 55px;
    }

    header.behave .togglemenu_btn{
        top: 20px;
    }

    td{
        min-width: 80px!important;
    }

    .getintouchmodal .modal-content{
        width: 95%;
    }

    .getintouch-form-image img{
        height: 280px;
        object-fit: cover;
    }

    .contextforspec{
        width: 100%;
        overflow-x: auto;
    }

    .clj_number_value .col-md-3{
        margin-bottom: 30px;
        width: 50%;

    }

    .sidebar-widget .widget-menu{
        list-style-type: none;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .sidebar-widget .widget-menu li a{
        font-size: 14px;
    }

    /* header{
        display: none;
    } */

    .page-header .page-title{
        font-size: 28px;
    }

    .page-header .breadcrumbs{
        justify-content: left;
    }

    .filter .filter-control{
        margin-bottom: 10px;
    }

    .clj_number_value .num-block{
        margin-bottom: 30px;
    }

    .clj_number_value .num-block:last-child{
        margin-bottom: 0px;
    }

    .clj_number_value .num-block h2{
        font-size: 35px;
    }

    .clj_number_value .num-block h3{
        font-size: 20px;
    }

    .seprater-menu{
        display: none;
    }

    .contact-widget .inner-content p{
        font-size: 16px;
    }

    footer{
        margin-bottom: 65px;
    }

    footer .subscribe-form{
        text-align: left;
        margin-top: 30px;
        position: relative;
    }

    footer .subscribe-form input[type="email"]{
        width: 100%;
    }

    footer .subscribe-form input[type="submit"]{
        position: absolute;
        right: 0;
    }

    .search-icon{
        display: none;
    }


    .footer-widget{
        margin-bottom: 30px;
    }

    .footer-bottom-link{
        text-align: left;
    }

    .footer-social{
        text-align: right;
    }

    .footer-logo{
        padding-right: 0;
    }

    .fixed-support-icon{
        top: 45%;
        padding: 10px 5px;
    }

    .slick-prev{
        display: none!important;
    }

    .slick-next{
        display: none!important;
    }

   .slick-dots{
    bottom: -60px;
    width: 100%;
    max-width: 110px;
    overflow: auto;
    white-space: nowrap;
    padding: 0 0 20px !important;
    list-style: none;
    border: 0px solid #ddd;
    left: 0 !important;
    right: 0 !important;
    margin: auto !important;
}


.slick-dots::-webkit-scrollbar{
    display: none;
}


    .slick-dots li{
        margin: 0 1%;
    }

    .slick-dots li button:before{
        content: '';
        height: 18px;
        width: 18px;
        display: block;
        border-radius: 50px;
        background: transparent;
        border: 1px solid var(--darkblue);
        opacity: 1;
    }

    .slick-dots li.slick-active button:before{
        background: var(--darkblue);
        border: 1px solid var(--darkblue);
        opacity: 1;
    }

    .clj_new_lauch{
        background:var(--dimgrey);
        padding: 40px 0px;
    }

    .clj_business_unit{
        padding: 40px 0px;
    }

    .clj_latest_news{
        padding: 40px 0px;
    }

    .clj_events{
        padding: 40px 0px; 
    }

    .clj_segment_lastsection{
        padding: 0px 0px 40px 0px;
    }

    .fixed-navigation.fixed{
        position: static;
    }

    .fixed-navigation ul{
        display: none;
    }


    .fixed-support-icon .icon-block i {
        font-size: 22px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        margin-bottom: 5px;
    }

    .fixed-support-icon .icon-block p {
        font-size: 8px;
    }

    
    .main-banner{
        margin-top: 0px;
    }


    .timeline {
        position: relative;
        margin: 50px auto 0;
        padding: 40px 0 0;
        width: 100%;
        box-sizing: border-box;
    }

    .dataTables_wrapper {
        position: relative;
        clear: both;
        width: 100%!important;
        overflow-x: auto!important;
    }


    .dataTables_wrapper .dataTables_length{
        text-align: left!important;
    }

    .dataTables_wrapper .dataTables_filter{
        text-align: left!important;
    }


 /* management page responsive start */

 .management_team_section .image-block{
    margin-bottom: 30px;
}

 .management_team_section .image-block img{
    height: 325px;
    object-fit: cover;
 }

 .management_team_section .pb-5{
    padding-bottom: 0rem!important;
 }
 

/* management page responsive end */


/* signage faq page responsive start */


    .clj-faq-page .tab-link {
        padding: 10px 5px;
        font-size: 14.5px;
    }


/* signage faq page responsive end */

/* customer support page responsive start */


.clj_customer_support .content-box h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}


/* customer support page responsive end */



/* downloads page responsive start */


.clj_downloads_page{
    overflow-x: hidden;
}

th{
    min-width: 120px!important;
}

/* downloads support page responsive end */


/* global partner page responsive start */

.clj_global_partner_filter{
    padding: 60px 0px 30px 0px;
}

.filter_global_partner .col-md-4{
    width: 33.33333333%;
}

.filter_global_partner .col-md-8{
    width: 66.66666667%;
}

.filter_global_partner label {
    font-size: 16px;
    font-family: var(--body-font-bold);
    margin-bottom: 0;
}

.filter_global_partner select{
    font-size: 16px;
    margin-bottom: 0;
}

.global_partner_card{
    padding: 28px 28px;
}

.global_partner_card .title{
    height: max-content;
}

.global_partner_card .address{
    height: max-content;
}

/* global partner page responsive end */


 /* contact page responsive start */

 .clj_contactpage iframe{
    height: 300px;
 }

/* contact page responsive end */


 /* news page responsive start */

    .news-card-event-single{
        height: 480px;
    }

    .news-card-event-single .news-context{
        min-height: 85px;
    }

 /* news page responsive end */


 /* news page single reponsive start */

 .clj_news_listing-single{
    padding: 20px 0px 0px 0px;
 }

    .blog-single .blog-title{
        font-size: 24px;
    }

    .blog-post-detail .blog-author{
        font-size: 14px;
    }


  /* news page single reponsive end */



/* event single responsive start */

.single-event-card{
    display: grid;
}

.single-event-card img{
    width: 100%;
}

.single-event-card .item-content{
    width: 100%;
}

.single-event-card .item-content .title{
    margin-bottom: 10px;
}

.single-event-card .item-content .desc{
    margin-bottom: 10px;
    height: 30px;
}

.single-event-card .social-share{
    margin-top: 15px;
    float: none;
}

.clj_event_single .sidebar-widget:last-child{
    margin-bottom: 0;
}


/* event single responsive start */



/* about page responsive start */

.clj_aboutcolorjet{
    padding: 30px 0px 30px 0px;
}

.clj_aboutpage{
    padding: 30px 0px 30px 0px;
}

.clj_aroundworld{
    padding: 30px 0px 30px 0px;
    background: var(--lightgrey);
}


.clj_history{
    padding: 30px 0px 30px 0px;
    background: var(--white-primary);
}

/* about page responsive end */

/* cil responsive */

.seven-box img:nth-child(1){
    margin-bottom: 15px;
}

.xactcolor-box img:nth-child(1){
    margin-bottom: 15px;
}

.printer-highlights{
    padding: 40px 0px;
}

.product-support-warranty{
    padding: 40px 0px;
}

.clj_application_keys{
    padding: 40px 0px;
}

#specification{
    padding-top: 40px;
}

.section-specification{
    padding: 40px 0px;
}

.complete_solution_digital{
    padding: 30px 0px;
}

/* cil responsive */




/* blog page responsive start */


.featured-blog-card .blog-title{
    height: max-content;
}

.featured-blog-card .blog-desc{
    height: max-content;
}

.clj_pagination{
    padding-bottom: 6.5%;
}

/* blog page responsive end */





/* contact responsive start */

.contact-widget{
    padding: 0;
}

.contact-widget .widget-title{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
}

.clj_contactpage .form-block{
    margin-bottom: 60px;
}

/* contact responsive start */


/* technical document responsive start */

.clj_document_grid .col-md-2{
    width:50%!important;
}

.filter_technical_documents .col-md-4{
    width: 33.33333333%;
}

.filter_technical_documents .col-md-8{
    width: 66.66666667%;
}

.filter_technical_documents label {
    font-size: 14px;
    font-family: var(--body-font-bold);
    margin-bottom: 0;
}

.filter_technical_documents select{
    font-size: 14px;
    margin-bottom: 0;
    padding: 0;
}

/* technical document responsive start */
.has-children::after{
    display: none!important;
}

.has-children > a{
    pointer-events: none;
}

.innerpage-header .has-children::after{
    display: none!important;
}




}

/*** Mobile Responsive ***/








/******* Start Colorjet tablet Responsive Start ********/

@media (min-width:768px) and (max-width:1024px){
    .clj_number_value .col-md-4{
        width:33.33%
    }

    .clj_global_partner_filter_card .row .col-md-4{
        width: 50%;
    }

   
    
}

/******* End Colorjet tablet Responsive End ********/

@media (max-width:767px){
header.transparent{
    display: none;
}

}

.dropdown-language{
    width: 125px!important;
    overflow-x: hidden!important;
    height: 20px;
    overflow-y: hidden;
    position: absolute;
    z-index: 99900;
    top: 10px;
}



@media (min-width:768px){
    .dropdown-language--{
        width: 175px;

    } 
}

.goog-te-gadget .goog-te-combo:focus{
    outline: 0!important;
    border: 0!important;
}

.goog-te-gadget .goog-te-combo{
    font-family:var(--body-font-medium)!important;
    margin: 0px 0!important;
    color: var(--white-primary)!important;
    border: 0!important;
    background-size:0!important;
    text-align: center!important;
}

.goog-te-gadget .goog-te-combo option{
    color: var(--black-primary)!important;
}

.goog-te-gadget span{
    display: none!important;
}

.skiptranslate iframe{
    display: none!important;
}

@media (max-width:767px){
    .goog-te-gadget .goog-te-combo{
    text-align: left!important;
}
}

.contact_info{
    width: 100%;
    position: absolute;
    bottom: 10%;
    left: 5%;
}


.contact_info .email_block i{
    background: var(--blue-primary);
    height: 25px;
    width: 25px;
    text-align: center;
    color: var(--white-primary);
    line-height: 24px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.contact_info .phone_block i{
    background: var(--blue-primary);
    height: 25px;
    width: 25px;
    text-align: center;
    color: var(--white-primary);
    line-height: 24px;
    font-size: 14px;
    margin-right: 10px;
}

@media (min-width:768px){
    .contact_info{
        display: none;
    }
}

.clj_downloads_page .overtable{
    width: 100%;
/*    overflow-x: auto;*/
}

.download-btn.multiple{
    background: var(--blue-primary);
    padding: 10px 20px;
    color: var(--white-primary);
    display: inline-block;
    margin: 30px 0px 0px 0px;
}

.download-btn.multiple:hover{
    background: var(--darkblue);
}


.product-logo .h1tag{
    visibility: hidden;
    height: 0;
}

.goog-logo-link {
   display:none !important;
}

.goog-te-gadget {
   color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
/*   color: blue !important;*/
}

.main-banner .cjhome-video{
    position: relative;
}

.main-banner .cjhome-video::after{
    content:'';
    position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 2; 
  cursor: pointer; 
}