/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure{margin: 0;}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Stack Sans Text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #000B4A;
    text-decoration: none;    
}
.main-wrpper {
    height:auto;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1630px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    background: #000F29;
    padding: 25px 45px;
    border: none;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.inner-header .navbar-brand{
    display: table;
}
header .row{
    align-items: center;
}
.top-cnt ul{
    display: flex;
    align-items: center;
}
.top-cnt ul li{
    margin-right: 40px;
}
.top-cnt ul li:last-child{
    margin: 0;
}
.top-cnt ul li a{
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    display: block;
    text-decoration: underline;
}
.top-cnt ul li a:hover{
    color: #4B9F25;
}
.top-cnt ul li a:after{
    position: absolute;
    content: '|';
    color: #4B9F25;
    font-size: 15px;
    right: -25px;
    top: 0;
}
.top-cnt ul li:last-child a:after{
    display: none;
}
.navbar-brand{
    margin: 0 auto;
    display: none;
}
.navbar-brand.show{
    display: table;
}
.navbar-brand a img{
    height: 40px;
}

.nav-right ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav-right ul li{
    margin-right: 30px;
}
.nav-right ul li:last-child{
    margin: 0;
}
.btn-nav{
    padding: 0 0 0 30px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #0D2A58;
    line-height: 24px;
    border: none;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-nav span{
    padding: 9px 15px;
    background: #618560;
    color: #fff;
    margin: 0 0 0 35px;
    position: relative;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-nav span:after{
    position: absolute;
    content: '';
    border-bottom: 42px solid #618560;
    border-left: 15px solid transparent;
    right: 100%;
    top: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-nav:hover{
    background: #fff;
}
.btn-nav:hover span{
    background: #4B9F25;
}
.btn-nav:hover span:after{
    border-bottom: 42px solid #4B9F25;
    border-left: 15px solid transparent;
}
.nav-right ul li a.btn-search img{
    height: 40px;
}
.search-input{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 9;
    background-color: #000F29;
}
.search-input .form-group{
    position: relative;
}
.search-input .form-group .btn-search-close{
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.search-input .form-control{
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    font-weight: 500;
    padding: 20px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    line-height: 28px;
    padding: 32px 40px 32px 0;
    outline: none;
}
.search-input .form-control::placeholder{
    color: #fff;
}
.nav-right ul li a.lang-btn{
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}
/* **** End Header **** */


/* **** toggler **** */
.hamburger {
  position: relative;
  width: 50px;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hamburger.is-lg {
  font-size: 2rem;
}
.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.10em;
  border-radius: 0.125em;
  background: #4B9F25;
  transition: inherit;
}
.hamburger-line:nth-child(1) {
  top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
  top: 0.438em;
  width: 35px;
}
.hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}
.hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}
/* **** End toggler **** */





.menubar-sidebar {
    position: fixed;
    left: 100%;
    top: 92px;
    bottom: 0;
    background-color: #000F29;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 121;
    padding: 100px 0;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
}
aside.menubar-sidebar.active{  
    left: 0;
}
.menubar-sidebar .row{
    align-items: center;
}
.menubar-sidebar .container{
    max-width: 1598px;
}
.menubar-sidebar .navbar-nav{
    max-width: 70%;
}
.menubar-sidebar .navbar-nav ul li{
    padding: 0 0 20px;
    margin: 0 0 72px;
    border-bottom: 2px solid #4B9F25;
}
.menubar-sidebar .navbar-nav ul li.dropdown {
    margin: 0 0 180px;
}
.menubar-sidebar .navbar-nav ul li a::after{
    display: none;
}
.menubar-sidebar .navbar-nav ul li button,
.menubar-sidebar .navbar-nav ul li a{
    display: block;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
    border: none;
    display: block;
    text-align: left;
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    text-decoration: underline;
}
.menubar-sidebar .navbar-nav .dropdown-menu{
    background-color: transparent;
    border: none;
    border-radius:0;
    padding: 0;
    right: auto !important;
    margin-left: 40px !important;
    left: 100% !important;
    display: block;
    position: absolute;
    min-width: 450px;
}
.menubar-sidebar .navbar-nav .dropdown-menu li{
    padding: 0 0 8px;
    margin: 0;
    border: none;
}
.menubar-sidebar .navbar-nav .dropdown-menu li:last-child{
    padding: 0;
}
.menubar-sidebar .navbar-nav .dropdown-menu li a{
    font-size: 30px;
    color: #fff;
    padding: 0;
    white-space: normal;
    word-break: break-all;
}
.menubar-sidebar .navbar-nav .dropdown-menu li a:hover{
    color: #4B9F25;
}
.menubar-sidebar .navbar-nav ul li.current-menu-item a,
.menubar-sidebar .navbar-nav ul li button:hover, .menubar-sidebar .navbar-nav ul li a:hover{
    color: #4B9F25;
}
.addfix{
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* **** Hero **** */
.hero-wrp{
    position: relative;
}
.hero-wrp .container{
    max-width: 1598px;
}
.hero-wrp .hero-block{
    position: relative;
}
.hero-wrp .hero-block img{
    max-width: 100%;
}
.hero-wrp .hero-block .hero-desktop-img{display: block;}
.hero-wrp .hero-block .hero-mobile-img{display: none;}
.hero-wrp .hero-block .hero-left{
    width: 62%;
    position: relative;
    z-index: 9;
}
.hero-wrp .hero-block .hero-right{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 61.8%;
}
.hero-wrp .hero-block .hero-right:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(33, 93, 25, 0.59);
}
.hero-wrp .hero-block .hero-right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.hero-wrp .hero-detail{
    position: absolute;
    left: 0;
    bottom: 70px;
    right: 0;
    z-index: 9;
}
.hero-wrp .hero-detail .detail{
    display: table;
    max-width: 421px;
}
.hero-wrp .hero-detail .col-md-6:last-child .detail{
    margin-left: auto;
}
.hero-wrp .hero-detail .detail a{
    display: flex;
    flex-flow: column;
    height: 500px;
    justify-content: flex-end;
}
.hero-wrp .hero-detail .detail img{
    max-width: 100%;
    margin: 0 auto 16px;
}
.hero-wrp .hero-detail .detail p{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    text-align: center;
}

.hero-title{
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 25%;
    z-index: 9;
    text-align: center;
}
.hero-title h6{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 15px;
}
.hero-title h2{
    font-size: 56px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 28px;
}
.hero-title .btn-main{
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: fit-content;
    padding: 9px 20px;
    width: 327px;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 300;
    font-size: 16px;
    color: #0D2A58;
}
/* **** End Hero **** */


/* **** Home Page **** */
.who-we-wrp{
    padding: 65px 0 95px;
}
.titlebar{
    margin: 0 0 40px;
    max-width: 780px;
}
.titlebar h2{
    padding: 0 0 20px;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0;
    border-bottom: 2px solid #4B9F25;
}
.who-we-data{
    padding: 50px 0 0;
    max-width: 749px;
    margin: 0 0 0 auto;
}
.who-we-data p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 30px;
}
.who-we-data ol{
    margin: 0 0 30px;
    padding: 0 0 0 20px;
}
.who-we-data ol li{
    list-style-type: decimal;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
}

.who-we-data .btn-main{
    margin: 40px 0 0;
}
.btn-main{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 50px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 16px;
    font-weight: 300;
    color: #0D2A58;
    max-width: 330px;
    border: none;
}
.btn-main svg{
    margin: 0 0 0 20px;
}
.btn-main svg line{
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-main:hover{
    background: #4B9F25;
    color: #fff;
}
.btn-main:hover svg line{
    stroke: #fff;
}

.industries-wrp{
    padding: 65px 0 95px;
    background: #000F29;
}
.industries-row{
    overflow: hidden;
}
.industries-row ul{
    display: flex;
    margin: 0 -100px;
}
.industries-row ul li{
    width: 25%;
}
.industries-row ul li a{
    display: block;
    position: relative;
    overflow: hidden;
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
}
.industries-block{
    position: relative;    
}
.industries-block:after{
    position: absolute;
    content: '';
    background: #000B4A;
    opacity: 0.36;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.industries-block figure{
    margin: 0 -20vh;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
}
.industries-block img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: .4s linear;
    -webkit-transition: .4s linear;
    transform: scale(1);
    -webkit-transform: scale(1);    
}
.industries-block:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.industries-block h3{
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 auto;
    max-width: 275px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) skew(20deg);
    -webkit-transform: translateY(-50%) skew(20deg);
    z-index: 2;
}
.industries-row ul li:first-child{
    width: 30%;
}
.industries-row ul li:last-child{
    width: 30%;
}
.industries-row ul li:first-child .industries-block h3{
    max-width: 200px;
}

.product-wrps .btn-main,
.industries-wrp .btn-main{
    margin: 80px auto 0;
}

.product-wrps{
    padding: 65px 0 95px;
}
.product-top-rw.industries-row ul li a{
    transform: skew(20deg);
    -webkit-transform: skew(20deg);
}
.product-top-rw.industries-row ul li a .industries-block h3{
    transform: translateY(-50%) skew(-20deg);
    -webkit-transform: translateY(-50%) skew(-20deg);
}
.product-top-rw.industries-row ul li a .industries-block figure{
    margin: 0 -20vh;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
}


.principals-wrp{
    padding: 110px 0;
    background: #000F29;
}
.principals-list ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.principals-list ul li{
    width: 20%;
    padding: 15px;
}
.principals-logo{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.principals-list ul li figure{
    margin: 0 auto;    
}
.principals-list ul li figure img{
    width: 80%;
}
.blog-wrp .btn-main,
.principals-wrp .btn-main{
    margin: 45px auto 0;
}

.blog-wrp{
    padding: 100px 0;
}
.blog-block{
    margin: 0 0 30px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}
.blog-block h3{
    text-align: center;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #000B4A;
}
.blog-block h3 span{
    display: block;
    font-size: 15px;
    font-weight: normal;
}
.blog-block p{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 28px;
    max-width: 85%;
    margin: 0 auto 50px;
}
.blog-block .btn-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-block .btn-group a{
    font-size: 18px;
    color: #111;
}
.blog-block .btn-group a:hover{
    color: #4B9F25;
}

.blog-small-box{
    border-radius: 10px;
    overflow: hidden;
}
.blog-small-box .blog-block{
    border-radius: 0 0 10px 10px;
    margin: 0;
}
.blog-small-box .blog-block p{
    font-size: 16px;
    line-height: 24px;
    max-width: 95%;
}
.blog-img img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

footer{
    padding: 70px 0;
    overflow: hidden;
}
.footer-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}
.footer-box{
    width: 33.33%;
    padding: 0 30px; 
    display: flex;
    flex-flow: column;
}
.footer-abt figure img{
    height: 45px;
    margin: 0 0 25px;
}
.footer-abt figure img:last-child{
    margin: 0;
}
.quicklinks{
    border-left: 2px solid #4B9F25;
    border-right: 2px solid #4B9F25;
    height: 100%;   
    padding: 0 60px;
    display: flex;
    flex-flow: column;
}
.quicklinks ul li{
    margin: 0 0 5px;
}
.quicklinks ul li a{
    display: table;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    text-decoration: underline;
}
.quicklinks ul li.current-menu-item a,
.quicklinks ul li a:hover{
    color: #4B9F25;
}
.footer-add p{
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
}
.footer-add p:last-child{
    margin: 0;
}

.copyright-wrp{
    padding: 25px 0;
    background: #000F29;
}
.copyright-wrp ul{
    display: flex;
    align-items: center;
}
.copyright-wrp ul li{
    margin-right: 40px;
}
.copyright-wrp ul li:last-child{
    margin: 0;
}
.copyright-wrp ul li a{
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    display: block;
    text-decoration: underline;
}
.copyright-wrp ul li a:hover{
    color: #4B9F25;
}
.copyright-wrp ul li a:after{
    position: absolute;
    content: '|';
    color: #4B9F25;
    font-size: 15px;
    right: -25px;
    top: 0;
}
.copyright-wrp ul li:last-child a:after{
    display: none;
}
.copyright-wrp p{
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    text-align: right;
    margin: 0;
}
.copyright-wrp p a{
    color: #fff;
}
.copyright-wrp p a:hover{
    color: #4B9F25;
}
/* **** End Home Page **** */

/* **** Services Page **** */
.service-banner-title{
    padding: 35px 0;
}
.service-banner-title h1{
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 58px;
    margin: 0 0 5px;
}
.service-banner-title p{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 39px;
    margin: 0;
}
.service-banner-row ul {
    margin: 0 -150px;
}
.service-banner-row ul li{
    width: 33.33%;
}
.service-banner-row ul li:first-child,
.service-banner-row ul li:last-child{
    width: 40%;
}
.service-banner-row ul li .industries-block img{
    height: 640px;
}
.service-banner-row ul li .industries-block h3{
    text-align: center;
}

.services-pg-wrp{
    position: relative;
    overflow: hidden;
}
.services-pg-row{
    padding: 40px 0;
    background: #000F29;
    position: relative;
}
.services-pg-row:nth-child(even){
    background: transparent;
}
.services-pg-center .container .row .col-md-7,.services-pg-center .container .row,.services-pg-center .container{
    height: 100%;
}
.services-pg-data{
    max-width: 850px;
    display: flex;
    flex-flow: column;
    gap: 60px;
    height: 100%;
    justify-content: space-between;
}
.services-pg-data .titlebar{
    margin: 0 0 20px;
}
.services-pg-data .services-pg-info p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 20px;
}
.services-pg-data .services-pg-info h6{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 10px;
}
.services-pg-data .services-pg-info ul{
    margin: 0 0 20px;
    padding: 0 0 0 50px;
}
.services-pg-data .services-pg-info ul li{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    padding: 0 0 0 50px;
    position: relative;
}
.services-pg-data .services-pg-info ul li:before{
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 100%;
    top: 12px;
    left: 0;
}

.services-pg-img{
    width: 50%;
    position: absolute;
    top: 40px;
    bottom: 40px;
    right: -200px;
}
.services-pg-img figure{
    height: 100%;
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
}
.services-pg-img figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* **** End Services Page **** */

/* **** Production Page **** */
.production-banner-wrp{
    position: relative;
    padding: 25px 0 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}
.production-banner-wrp:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    background: #000F29;
    width: 100%;
    height: 165px;
}
.production-banner-img{
    width: 45%;
    position: relative;
    right: -130px;
    z-index: 1;        
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    overflow: hidden;
}
.production-banner-img figure{
    margin: 0 -20vh;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
}
.production-banner-img figure img{
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.production-banner-center{
    position: absolute;
    padding: 25px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.production-banner-data{
    max-width: 800px;
}
.production-banner-data h1{
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 60px;
    margin: 0 0 5px;
}
.production-banner-data ul.breadcrumb-lst{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 2px solid #4B9F25;
}
.production-banner-data ul.breadcrumb-lst li{
    position: relative;
    margin-right: 30px;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
}
.production-banner-data ul.breadcrumb-lst li a{
    color: #fff;
}
.production-banner-data ul.breadcrumb-lst li a:hover{
    color: rgba(255, 255, 255, 0.50);
}
.production-banner-data ul.breadcrumb-lst li:last-child{
    margin: 0;
}
.production-banner-data ul.breadcrumb-lst li:after{
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    right: -20px;
    top: 0;
}
.production-banner-data ul.breadcrumb-lst li:last-child:after{
    display: none;
}

.production-banner-data h6{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 2px solid #4B9F25;
}
.production-banner-data p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 25px;
}
.production-banner-data p a{
    color: #fff;
    text-decoration: underline;
}
.production-banner-data p a:hover{
    color: #4B9F25;
}
.production-banner-data p strong{
    font-weight: bold;
}
/* **** End Production Page **** */

/* **** Industry Page **** */
.industries-pg-wrp{
    position: relative;
}
.industries-row-wrp{
    display: flex;
    flex-wrap: wrap;
}
.industries-leftbar{
    width: 27%;
    padding: 30px 0;
    background: transparent;
}
.industries-right-part{
    width: 73%;    
}
.industry-listing-wrp{
    padding: 70px 50px;
    background: #000F29;
}

.industries-leftbar h2{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 38px;
    margin: 0 0 30px;
    padding: 0 0 20px;
    border-bottom: 2px solid #4B9F25;
    max-width: 350px;
}
.industries-leftbar ul li a{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    display: table;
    line-height: 26px;
    padding: 0 10px;
    text-decoration: underline;
    width: 100%;
}
.industries-leftbar ul li a:hover{
    color: #4B9F25;
}
.industries-leftbar ul li .sublist{
    margin: 5px 0;
}
.industries-leftbar ul li .sublist li a{
    padding: 3px 50px 3px 60px;
}
.industries-leftbar ul li.active a,
.industries-leftbar ul li .sublist li.active a{
    background: #000F29;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.industries-right-part .row{
    margin: 0 -25px;
}
.industries-right-part .row .col-md-4{
    padding: 0 25px;
}
.industry-block{
    margin: 0 0 65px;
    border: 2px solid #4B9F25;
    height: calc(100% - 65px);
}
.industry-img{
    position: relative;
}
.industry-img img{
    width: 100%;
    height: 330px;
    object-fit: cover;
}
.industry-img h4{
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    margin: 0;
    line-height: 28px;
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
}
.industry-data{
    padding: 15px 20px;
}
.industry-data h3{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 30px;
    margin: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.industry-data h3:hover{
    color: #4B9F25;
}
.industry-data p{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 5px;
}
.industry-data ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.industry-data ul li{
    margin-right: 15px;
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}
.industry-data ul li:after{
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    right: -10px;
    top: 0;
}
.industry-data ul li:last-child{
    margin: 0;
}
.industry-data ul li:last-child:after{
    display: none;
}

.industries-right-part .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.industries-right-part .btn-group a.next-btn{
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}
.industries-right-part .btn-group a.next-btn svg{
    margin: 0 0 0 15px;
}
.industries-right-part .btn-group a.next-btn svg line{
    stroke: #fff;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.industries-right-part .btn-group a.next-btn:hover{
    color: #4B9F25;
}
.industries-right-part .btn-group a.next-btn:hover svg line{
    stroke: #4B9F25;
}

.industries-right-part .btn-main{
    max-width: 350px;
    margin: 35px 0 0;
}
.industries-right-part .btn-main svg{
    margin: 0 20px 0 0;
}
/* **** End Industry Page **** */

/* **** Products Page **** */
.product-banner-wrp .production-banner-data{
    max-width: 1200px;
}
.product-banner-wrp .production-banner-img{
    right: -200px;
}
.product-banner-wrp .production-banner-data ul,
.product-banner-wrp .production-banner-data p{
    max-width: 800px;
}
.pro-dt-info ul{
    margin: 0 0 20px;
}
.pro-dt-info ul li{
    padding: 0 0 0 20px;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
}
.pro-dt-info ul li:before{
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 100%;
    top: 12px;
    left: 0;
}

.product-details-table .table{
    margin: 0;
}
.product-details-table .table tbody tr th{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 15px 0;
    line-height: 28px;
    border-bottom: 2px solid #4B9F25;
    background: transparent;
    width: 30%;
}
.product-details-table .table tbody tr td{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    padding: 15px 0;
    border-bottom: 2px solid #4B9F25;
    background: transparent;
}
.product-details-table .table tbody tr td p{
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
}
.product-details-table .table tbody tr:last-child th,
.product-details-table .table tbody tr:last-child td{
    border: none;
}
.product-details-in-wrp .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 40px 0 0;
}
.product-details-in-wrp .btn-group .btn-main{
    margin: 0 30px 0 0;
    padding: 9px 30px;
}
/* **** End Products Page **** */

/* **** Contact Page **** */
.contact-wrp{
    padding: 60px 0;
    background: #000F29;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}
.contact-map-row{
    width: 50%;
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    overflow: hidden;
    position: relative;
    right: -150px;
}
.contact-map-row .contact-map{
    margin: 0 -20vh;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    height: 640px;
}
.contact-center-rw{
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
}
.contact-data{
    max-width: 800px;
}
.contact-data p{
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
    margin: 0;
}
.contact-data .btn-main{
    margin: 30px 0 0;
}
.did-you-wrp{
    background: #000F29;
    padding: 55px 0;
}
.did-you-wrp .who-we-data p{
    margin: 0;
}
/* **** End Contact Page **** */




.lang-dropdown{
    position: relative;
}
.nav-right .lang-dropdown button{
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}
.nav-right .lang-dropdown button:after{
    display: none;
}
.nav-right .lang-dropdown .dropdown-menu{
    display: none;
    background-color: #000B4A;
    padding: 16px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
    outline: none;
    margin-top: 20px !important;
}
.nav-right .lang-dropdown .dropdown-menu li{
    margin: 0 0 2px;
}
.nav-right .lang-dropdown .dropdown-menu li:last-child{
    margin: 0;
}
.nav-right .lang-dropdown .dropdown-menu li a{
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
}
.nav-right .lang-dropdown .dropdown-menu li a:hover{
    background-color: #4B9F25;
}
.nav-right .lang-dropdown .dropdown-menu.show{
    display: block;
}



/* **** 404-pg-wrp **** */
.pg-found-wrp{
    padding: 0;
    position: relative;
}
.pg-found-wrp .pg-detail{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.pg-found-wrp .pg-detail h1{
    color: #fff;
    font-size: 150px;
    font-weight: 500;
    margin: 0;
}
.pg-found-wrp .pg-detail h3{
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 15px;
}
.pg-found-wrp .pg-detail p{
        font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 0 30px;
}
.pg-found-wrp .box-img{
    display: table;
    margin-left: auto;
    position: relative;
    height: calc(100vh - 92px);
    min-height: 450px;
    width: 65%;
}
.pg-found-wrp .box-img .hero-desktop-img{
    display: block;
}
.pg-found-wrp .box-img .hero-mobile-img{
    display: none;
}
.pg-found-wrp .box-img img{
    height: 100%;
    width: 100%;
    height: calc(100vh - 92px);
    object-fit: cover;
    object-position: left;
}
/* **** ENd 404-pg-wrp **** */



/* **** typography **** */
.typography-wrp {
    padding: 80px 0;
}
/* Headings Scale */
.typography-wrp h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}
.typography-wrp h2 {
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 18px;
}
.typography-wrp h3 {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px;
}
.typography-wrp h4 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 14px;
}
.typography-wrp h5 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
}
.typography-wrp h6 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
}

/* Paragraph */
.typography-wrp p {
    font-size: 16px;
    font-weight: 300;
    color: #dcdcdc;
    line-height: 28px;
    margin: 0 0 30px;
}

/* List */
.typography-wrp ul {
    margin-bottom: 30px;
}
.typography-wrp ul li {
    font-size: 16px;
    color: #e6e6e6;
    line-height: 28px;
    font-weight: 300;
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}
.typography-wrp ul li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    top: 12px;
    left: 0;
}

/* Images */
.typography-wrp figure {
    margin: 30px 0;
}
.typography-wrp img {
    max-width: 100%;
    display: block;
}
.typography-wrp .left-image {
    margin-left: 0;
}
.typography-wrp .center-image {
    display: block;
    margin: 0 auto;
}
.typography-wrp .right-image {
    display: block;
    margin-left: auto;
    margin-right: 0;
}
/* **** End typography **** */


/* .product-areas-items-wrapper ul{
    flex-wrap: wrap;
}
.product-areas-items-wrapper ul li:first-child{
    width: 30%;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    margin: 0;
}
.product-areas-items-wrapper ul li:nth-child(4n){
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin: 0;
}
.product-areas-items-wrapper ul li:last-child{
    width: 25%;
}
.product-areas-items-wrapper ul li{
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    margin: 0 -25px;
}
.product-areas-items-wrapper ul li a{
    transform: skew(-0deg);
    -webkit-transform: skew(-0deg);
}
.product-areas-items-wrapper .industries-block figure{
    transform: skew(-0deg);
    -webkit-transform: skew(-0deg);
}
.product-areas-items-wrapper .industries-block h3{
    transform: translateY(-50%) skew(0deg);
    -webkit-transform: translateY(-50%) skew(0deg);
} */








/* **** New CSs **** */
.product-wrps .product-list{
    overflow: hidden;
}
.product-wrps .product-list ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -100px;
}
.product-wrps .product-list ul li{
    width: 25%;
}
.product-wrps .product-list ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    transform: skew(20deg);
    -webkit-transform: skew(20deg);
}
.product-wrps .product-list ul li:nth-child(n+5) a {
    transform: skew(-20deg);
}
.product-wrps .product-list ul li:nth-child(n+5) .product-box h3{
    transform: translateY(-50%) skew(20deg);
    -webkit-transform: translateY(-50%) skew(20deg);
}
.product-wrps .product-list ul li:nth-child(n+9) a {
    transform: skew(20deg);
}
.product-wrps .product-list ul li:nth-child(n+9) .product-box h3{
    transform: translateY(-50%) skew(-20deg);
    -webkit-transform: translateY(-50%) skew(-20deg);
}

.product-wrps .product-list .product-box{
    position: relative;
}
.product-wrps .product-list .product-box:after {
    position: absolute;
    content: '';
    background: #000B4A;
    opacity: 0.36;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.product-wrps .product-list .product-box figure{
    margin: 0 -20vh;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
}
.product-wrps .product-list .product-box figure img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: .4s  linear;
    -webkit-transition: .4s linear;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.product-wrps .product-list .product-box h3 {
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    line-height: 28px;
    margin: 0 auto;
    max-width: 275px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) skew(-20deg);
    -webkit-transform: translateY(-50%) skew(-20deg);
    z-index: 2;
}
.product-wrps .product-list .product-box:hover figure img{
    transform: scale(1.2);
}
/* **** End New CSs **** */


.industries-leftbar ul li.active a, 
.industries-leftbar ul li .sublist li.active a {
    background: transparent;
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}
.industries-leftbar ul li a.active, 
.industries-leftbar ul li .sublist li a.active {
    background: #000F29;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.industry-data ul li a, .industry-data ul li {
    margin-right: 15px;
    position: relative;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}
.industries-pg-wrp .container-fluid {
    padding: 0;
}
.industries-leftbar h2{
    margin-left: 50px;
}
.industries-leftbar ul li{
    position: relative;
}
.industries-leftbar ul li a{
    padding: 0 60px;
}
.industries-leftbar ul li .sublist li a {
    padding: 3px 50px 3px 110px;
}
.industries-leftbar ul li img.remove-filter {
    position: absolute;
    left: 20px;
    top: 6px;
    transition: all 0.3s linear;
}
.industries-leftbar ul.nav-tabs{
    display: block;
    margin: 0;
    border: none;
    border-radius: 0;
}
.industries-leftbar ul.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    display: table;
    line-height: 26px;
    padding: 0 60px;
    text-decoration: underline;
    width: 100%;
    display: block;
    border-radius: 0;
    text-align: left;
    border: none;
}
.industries-leftbar ul.nav-tabs .nav-link.active{
    background: #000F29;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.address-wrapper {
    margin: 0 0 30px;
    max-width: 170px;
}
.footer-add .address-wrapper p {
    margin: 0;
}
.not-found h3 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 38px;
    text-transform: capitalize;
    margin:0;
}
.custom-pagination.zi-at-marine-custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-wrp .hero-block .hero-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    z-index: 9;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.industries-leftbar ul li .sublist li .sub-sub-list a {
    padding: 3px 50px 3px 160px;
}
.production-banner-data p.bnr-short-detail {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 2px solid #4B9F25;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 40px;
}



.industries-row-wrp {
    width: 100%;
}
.woocommerce div.product {
    padding: 0;
}
.product-details-table ul li {
    border-bottom: 2px solid #4B9F25;
    display: flex;
    padding: 16px 0;
}
.product-details-table ul li ul li {
    border: none;
    display: block;
    padding: 0;
}
.product-details-table ul li span {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
    min-width: 275px;
}
.industry-data ul li a {
    margin: 0;
}



.taxonomy-main-continer {
    max-width: 100% !important;
    padding: 0;
}
.zi-type-of-product-wrapper{max-width: 1630px;margin: 0 auto;padding: 0 15px;}
section.service-banner-wrp.zi-service-wrapper-banner{background-color: #000F29;}
.menubar-sidebar .navbar-nav ul li.current-menu-item .dropdown-menu a {color: #fff;}
.custom-pagination.zi-at-marine-custom-pagination a.next-page.ajax-page-number img {filter: brightness(06) invert(0);-webkit-transition: all 0.3s linear;transition: all 0.3s linear;}
.custom-pagination.zi-at-marine-custom-pagination a.next-page.ajax-page-number:hover img{filter: unset;}
.industry-img {overflow: hidden;}
.industry-img img{transition: all 0.3s linear;}
.industry-block:hover .industry-img img {transform: scale(1.2);}
.woocommerce div.product form.cart{margin:0;}
.zi-product-detail-page-banner .production-banner-data ul.breadcrumb-lst li{font-size: 22px;}
.product-banner-wrp .pro-dt-info ul li:before {height: 1px;width: 6px;background-color: #fff;border-radius: 0;}
.contact-data p:nth-child(2) {max-width: 270px;}