@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Montserrat", sans-serif; */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
:root{
    /* theme color */
    --theme-color : #f5c920;
    --theme-color-dark : #1b1b1b;

    /* theme font */
    --font-monsta : "Montserrat", sans-serif;
}
body{
    padding: 0%;
    margin: 0%;
    font-family: var(--font-monsta);
}
.cus-tag{
    color: var(--theme-color) !important;
}
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.section-title>h2 {
    font-size: 60px;
    font-weight: 600;
    position: relative;
}
.section-title.light>h2{
    color: var(--bs-white);
}
.section-title>h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: var(--theme-color);
    position: absolute;
    bottom: -4px;
    left: 6px;
}
.section-title a {
    display: block;
    background-color: var(--theme-color-dark);
    color: var(--bs-white);
    text-align: center;
    text-decoration: none;
    padding: 11px 35px;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;
}
.section-title a:hover{
    background-color: var(--theme-color);
}
.section-title.light a {
    background-color: var(--bs-white);
    color: var(--theme-color-dark);
}
.section-title.light a:hover{
    background-color: var(--theme-color);
}
.gap-50{
    width: 100%;
    height: 50px;
    display: block;
}
/* header style */
.bg-header{
    background-color: var(--theme-color-dark);
}
.logo{
    display: flex;
    align-items: center;
    height: 100%;
}
.img-logo{
    width: 118px;
}
.quick-contact-ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 0px;
    list-style: none;
}
.quick-contact-ul>li>a {
    text-decoration: none;
    color: var(--bs-white);
    padding: 15px;
}
.quick-contact-ul>li:last-child>a {
    background-color: var(--theme-color);
    color: var(--theme-color-dark);
    font-size: 18px;
    font-weight: 400;
    padding: 10px 35px;
}
.menu-desk-ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menu-desk-ul>li>a {
    text-decoration: none;
    color: var(--bs-white);
    padding: 10px 12px;
    font-size: 18px;
    font-weight: 400;
}
.menu-desk-ul>li>a.active{
    color: var(--theme-color);
}
/* -------- */
/* Sub-menu Styles */
ul.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
ul.sub-menu li {
    width: 240px;
}
ul.sub-menu li a {
    color: #333;
    text-decoration: none;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 400;
    display: block;
    transition: 0.3s;
}
ul.sub-menu li a:hover{
    background-color: var(--theme-color);
    color: var(--theme-color-dark);
}
/* Show the sub-menu on hover */
ul.menu-desk-ul li , ul.menu-mob-ul li{
    position: relative;
}
ul.menu-desk-ul li:hover > ul.sub-menu , ul.menu-mob-ul li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeInBottomToTop 0.5s ease-in-out;
}

/* Sub-sub-menu Styles */
ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

ul.sub-menu li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@keyframes fadeInBottomToTop {
    0% {
      opacity: 0;
      transform: translateY(30%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* start mob nav menu style */
.menu-bar {
    float: right;
    border: none;
    background-color: transparent;
    color: var(--theme-color);
    padding: 0px;
    font-size: 27px;
    line-height: 69px;
}
.mob-menu-box {
    position: fixed;
    height: 100%;
    width: 20%;
    padding: 30px;
    background-color: var(--bs-dark);
    z-index: 9999;

    right: -100%;
    transition: right 0.3s ease;
}
.mob-menu-box.open {
    right: 0;
    top: 0;
}
.menu-mob-ul{
    list-style: none;
    padding: 0%;
}
.menu-mob-ul>li>a {
    display: block;
    text-decoration: none;
    color: var(--bs-white);
    padding: 12px 8px;
    font-size: 22px;
    font-weight: 600;
}
.mob-quick-contact-ul {
    list-style: none;
    padding: 20px 0px 0px 0px;
    border-top: 1px dashed #fff;
}
.mob-quick-contact-ul>li>a{
    display: block;
    text-decoration: none;
    color: var(--bs-white);
    padding: 8px;
}
.navOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 86%);
    display: none;
    z-index: 999;
}

.mob-menu-box.open ~ .navOverlay {
    display: block; /* Show overlay when menu is open */
}
.mob-action-box{
    
}
/* end mob nav menu style */
/* home banner section */
.bg-home-banner {
    position: relative;
    height: 80vh;
    padding-top: 56.25%;
}
.banner-video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    text-align: center;
    z-index: 1;
    transform: translate(0%, 0%);
}
.video-conrol {
    position: absolute;
    top: 50%;
    left: 50%;
    /* right: 0; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    text-align: center;
    z-index: 1;
    transform: translate(0%, 0%);
}
  .btn-play {
    color: #fff;
    border: none;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #ffffff52;
    /* position: absolute; */
    transform: translate(-50%, -50%);
  }
  .btn-play:before,
  .btn-play:after {
    content: '';
    display: block;
    position: absolute;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    border: 1px solid #ffffff;
    border-radius: 50%;
  }
  .btn-play:before {
    animation: ripple 2s linear infinite;
  }
  .btn-play:after {
    animation: ripple 2s linear 1s infinite;
  }
  .video-conrol-dark .btn-play{
    background-color: #00000052;
  }
  .video-conrol-dark .btn-play:before,   .video-conrol-dark .btn-play:after{
    border: 1px solid #000000;
  }
  @keyframes ripple{
    0% { transform: scale(1); }
    50% { transform: scale(1.3); opacity:1; }
    100% { transform: scale(1.6); opacity:0; }
  }
  .modal-video{
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    padding-top: 56.25%;
}
.modal-video .modal-video-large{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: none;
}
.btn-close{
    position: absolute;
    right: -38px;
    top: -38px;
    color: #fff;
    opacity: 1;
    z-index: 9;
    background-color: #ffffff7d;
    padding: 12px;
    border-radius: 0;
}
/* home product section */
.bg-product {
    padding: 50px 15px 100px 15px;
}
.pro-card {
    height: 345px;
    padding: 25px;
    background-color: var(--theme-color-dark);
    color: var(--theme-color);
    transition: 0.3s;
    border-radius: 0px;
}
.pro-card:hover{
    background-color: var(--theme-color);
    color: var(--theme-color-dark);
}
.img-product {
    width: 200px;
    position: absolute;
    right: 0;
    bottom: -50px;
}
.btn-theme {
    display: flex;
    background-color: var(--theme-color);
    color: var(--theme-color-dark);
    border: 1px solid #ffffff00;
    font-size: 18px;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    padding: 11px 10px;
    transition: 0.3s;
}
.btn-theme:hover{
    background-color: var(--theme-color-dark);
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.btn-width-165 {
    width: 165px;
    max-width: 100%;
}
.lg-title-70 {
    font-size: 70px;
    font-weight: 600;
}
.lg-title-60 {
    font-size: 60px;
    font-weight: 600;
}
.text-description{
  font-size: 18px;
  font-weight: 400;  
}
.pro-card .text-description{
    color: var(--bs-white);
}
.pro-card:hover .text-description{
    color: var(--theme-color-dark);
}
.pro-card:hover .btn-theme{
    background-color: var(--theme-color-dark);
    color: var(--theme-color);
}
/* benefit section */
.bg-benefit {
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 100px 15px 50px 15px;
}
.border-2px {
    border: 4px solid var(--theme-color);
    padding: 50px;
}
.img-mt--50{
    margin-top: -100px;
}
/* Home Compatible engines section */
.bg-comeng{
    padding: 50px 15px;
}
.sliderComEnd{

}
.sliderComEnd .item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.img-partner {
    width: 90px !important;
}

/* Applications section */
.bg-applications{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
    
}
.card-application {
    object-fit: cover;
    background-size: cover;
    min-height: 455px;
    margin-bottom: 20px;
    border: none;
    border-radius: 0px;
    transition: 0.3s;
}
.card-application:hover .btn-icon{
    background-color: var(--theme-color);
    color: var(--bs-white);
}
.btn-icon {
    text-decoration: none;
    color: var(--bs-white);
    border: 1px solid var(--bs-white);
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    padding: 8px;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-icon:hover{
    background-color: var(--theme-color);
    color: var(--bs-white);
}
.btn-float-right{
    position: absolute;
    right: 15px;
    bottom: 15px;
}
.card-application .card-body{
    transition: 0.3s;
}
.card-application .card-body>h4 {
    font-size: 30px;
    font-weight: 600;
    color: var(--bs-white);
}
.card-application .card-body>h4>img{
width: 36px;
}

.overflow-hiden{
    overflow: hidden;
}
.card-application {
    transition: transform 1s ease;
  }
  .card-application:hover {
    transform: scale(1.1); 
  }
  .card-application:hover .card-body {
    padding: 50px;
    background-color: #00000070;
}
  .card-application:hover .btn-float-right {
    right: 70px;
    bottom: 70px;
}
/* Testimonial section  */
.bg-testimonial{
    padding: 50px 15px;
}
.test-item {
    border-radius: 0;
    padding: 30px;
    transition: 0.3s;
}
.test-item .rating{
    padding-bottom: 18px;
}
.client {
    display: flex;
    align-items: center;
}
.img-client {
    margin-right: 10px;
    width: 72px !important;
    border-radius: 50%;
}
.client>div>h5{
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color-dark);
}
.client>div>h6{
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-color-dark);
}
.owl-item.center .test-item{
    background-color: var(--theme-color-dark);
}
.owl-item.center .test-item .rating{
color: var(--theme-color);
}
.owl-item.center .test-item .text-description{
color: var(--bs-white);
}
.owl-item.center .test-item .client>div>h5, .owl-item.center .test-item .client>div>h6{
    color: var(--bs-white);
}

.box-testimonial .owl-nav button.owl-prev>span, .box-testimonial .owl-nav button.owl-next>span{
display: none;
}
.box-testimonial .owl-nav button.owl-prev, .box-testimonial .owl-nav button.owl-next {
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 50%;
    font-size: 22px;
    color: var(--theme-color-dark);
}
.box-testimonial .owl-nav button.owl-prev{
    left: -28px;
}
.box-testimonial .owl-nav button.owl-next{
    right: -28px;
}
.box-testimonial .owl-nav button.owl-prev::after{
    content: "\f177";
}
.box-testimonial .owl-nav button.owl-next::after{
    content: "\f178";
}
/* parallex */
.request-quote {
    background-image: url(../images/bg_products.jpg);
    min-height: 80vh;
    display: flex;
    align-items: center;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.we-map{
    width: 100%;
    height: 400px;
}
/* footer section */
.bg-footer{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
}
.ftr-title{
    font-size: 22px;
    color: var(--theme-color);
}
.ftr-text-description{
    font-size: 16px;
    font-weight: 400;
}
.ftr-text-description.light{
    color: var(--bs-white);
}
.fter-quick-link{
    list-style: none;
    padding: 0%;
}
.fter-quick-link>li>a {
    display: block;
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 1px;
    transition: 0.3s;
}
.ul-contact-info {
    list-style: none;
    padding: 0;
}
.ul-contact-info li {
    display: flex;
    align-items: flex-start;
    color: var(--bs-white);
    font-size: 16px;
    padding: 10px 5px;
}
.ul-contact-info li>img {
    width: 22px;
    margin-right: 8px;
    padding-top: 5px;
}
.ul-contact-info li a{
    text-decoration: none;
    color: var(--bs-white);
    font-size: 16px;
    display: block;
}
.ul-contact-info.dark, .ul-contact-info.dark li, .ul-contact-info.dark li a{
    color: var(--bs-dark);
}
.ul-contact-info.dark li>img{
    filter: invert(1);
}

.form-card{
    background-color: #494950;
    border-radius: 0%;
}
.form-card-body{
    padding: 30px;
}
.form-card-body>.form-group{
    margin-bottom: 15px;
}
.form-card-body>.form-group>label{
    font-size: 14px;
    color: var(--bs-white);
}
.form-control-bottom-line {
    width: 100%;
    color: var(--bs-white);
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--bs-white);
    padding: 10px 0px;
    background: transparent;
}
.form-control-bottom-line:focus-visible{
    outline: none;
}
.menu-close {
    background-color: var(--theme-color);
    border: none;
    line-height: 0;
    padding: 9px 11px;
    font-size: 22px;

}
.menu-close.position-top-right{
    position: absolute;
    right: 0;
    top: 0;
}
/* bottom footer */
.ftr-bdr-top {
    border-top: 1px solid #fff;
}
.mt-50{
    margin-top: 50px;
}
.pt-50{
    padding-top: 50px;
}
.img-ftr-logo {
    width: 120px;
}
.ftr-social-link{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.ftr-social-link>p {
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    margin-right: 25px;
}   
.ftr-social-link>ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
}
.ftr-social-link>ul>li{

}
.ftr-social-link>ul>li>a {
    text-decoration: none;
    color: var(--bs-white);
    padding: 10px;
    font-size: 26px;
}
.copy-right {
    display: flex;
    justify-content: space-between;
    margin: 15px 0px 0px 0px;
    color: var(--bs-white);
    font-size: 13px;
}
.copy-right a{
    text-decoration: none;
    color: var(--bs-white);
}
.modal-content.dark{
    background-color: #000;
}
.btn-close.lt-0{
    right: 0;
    top: 0;
}
.icon-wp {
    position: fixed;
    right: 15px;
    top: 80%;
    z-index: 9;
}
.icon-wp img {
    width: 56px;
}
.icon-call {
    position: fixed;
    left: 15px;
    top: 80%;
    z-index: 9;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 4px 5px 0px #00000042;
}
.icon-call img {
    width: 56px;
}
#bottomToTop {
    background-color: #00000080;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 0;
    position: fixed;
    bottom: 20px;
    right: 14px;
    display: none;
    cursor: pointer;
    padding: 10px;
    font-size: 17px;
    z-index: 1000;
    text-align: center;
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.5s, bottom 0.5s;
}
/* whatsapp */
.whatsapp-box {
    position: fixed;
    bottom: -100%; /* Start off screen */
    left: 0;
    right: 0;
    background: #336C57;
    padding: 60px 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 99999;
    transition: bottom 0.3s ease-in-out;
  }
  .wp-form-box {
    width: 450px;
    max-width: 90%;
    margin: auto;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
  .btn-wp-cross {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 20px;  /* Adjust the size as necessary */
  }
  .btn-wp-cross i{
    color: #fff;
  }
  .wp-form-box form .form-group{
    margin-bottom: 15px;
  }
  .btn-enq-dark {
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    display: block;
    text-align: center;
    text-decoration: none;
}
#wp-box-overlay {
    display: none;
    background-color: rgb(0 0 0 / 77%);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
}
/* ================ about us page===================== */
.bg-sub-page-banner {
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center bottom;
}
.about-banner-video-box{
    position: relative;
    height: 80vh;
    padding-top: 56.25%;
}
.about-banner-video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    text-align: center;
    z-index: 1;
    transform: translate(0%, 0%);
}
.sub-banner-title{
   position: relative; 
}
.sub-banner-title>h2{
    font-size: 60px;
    font-weight: 500;
    color: var(--bs-white);
}
.sub-banner-title>h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: -25px;
}
.set-anout-image{
    position: relative;
    height: 100%;
    display: flex;
}
/* ****** */
.bg-experience{
    padding: 50px 15px;
}
.text-50{
    font-size: 50px;
    color: var(--theme-color-dark);
}
.font-weight-600{
    font-weight: 600;
}
.text-description{
    font-size: 20px;
    font-weight: 400;
}
.yellow-box {
    background-color: var(--theme-color);
    text-align: center;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--bs-white);
}
.yellow-box.absolute {
    position: absolute;
    bottom: 0;
    left: -20px;
}
.yellow-box>h2 {
    font-size: 110px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}
.yellow-box>p {
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
}
.pr-50{
    padding-right: 50px;
}
/* ********** */
.bg-about-video {
    position: relative;
    text-align: center;
}
.btn-play.absolute {
    position: absolute;
    top: 50%;
    left: 50%;
}
.btn-play.absolute.red {
    color: #f62d2d;
    background-color: #f62d2d2b;
    font-size: 30px;
}
.btn-play.absolute.red:before, .btn-play.absolute.red:after{
    border: 1px solid #f62d2d;
}
.bg-excellence {
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
}
.right-align-text{
    text-align: right;
}

/* ================ Industry page ===================== */
.bg-industry{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
}
.sm-intro{
    color: var(--bs-white);
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}
.item-industry {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-col-50{
width: 100%;
padding: 15px;
}
.title-icon {
    font-size: 40px;
    font-weight: 600;
    color: var(--bs-white);
}
.gap-b15{
    margin-bottom: 15px;
}
.gap-b50{
    margin-bottom: 50px;
}
.gap-b30{
    margin-bottom: 30px;
}
.title-icon>img {
    width: 36px;
}
.sm-description{
    color: var(--bs-white);
    font-size: 20px;
    font-weight: 300;
}
.sm-title{
    font-size: 30px;
    font-weight: 400;
    color: var(--bs-white);
}
.industry-ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.industry-ul>li {
    color: #ffffffc7;
    width: 50%;
    padding: 10px 0px;
    font-size: 20px;
    display: flex;
    align-items: center;
    height: 50px;
}
.industry-ul>li>i {
    color: #fbfd00;
    margin-right: 14px;
}
.img-industry{
    width: 100%;
}

/* ----------- */
.bg-compatible{
    padding: 50px 15px;
}
.bg-compatible .col-lg-5{
    width: 20%;
}
.img-client-logo {
    width: 64px;
}
.client-ul {
    list-style: none;
    padding-left: 0;
}
.client-ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    border-bottom: 1px dashed #000;
    padding: 10px;
    position: relative;
    gap: 10px;
}
.client-ul li::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-65%, -50%);
    width: 0.1px;
    height: 100%;
    background-color: #000;
}
.client-ul li:first-child{
    border-top: 1px solid #000;
}
.client-ul li:last-child{
    border-bottom: 1px solid #000;
}
.client-ul li>span {
    font-size: 14px;
    font-weight: 600;
}
/* bg-undermentioned */
.bg-undermentioned{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
}
.sm-section-title h3{
    font-size: 40px;
    font-weight: 600;
}
.sm-section-title p{
    font-size: 16px;
    font-weight: 400;
}

.sm-section-title.light h3{
    color: var(--bs-white);
}
.sm-section-title.light p{
    color: var(--bs-white);
}
.project-video{
    width: 100%;
    height: 400px;
}

/* ====================== contact Us page ========================= */
.bg-query{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px; 
}
.bg-contact-dtls{
    background-color: #fff;
    padding: 50px 15px;
}
.contact-video>iframe{
    width: 100%;
    height: 400px;
}
.btn-theme-yellow{

}
.btn-theme-yellow.width-full{
    width: 100%;
}
.form-group{
    margin-bottom: 15px;
}
.form-control-light {
    width: 100%;
    height: 50px;
    padding: 15px 10px;
    color: var(--bs-white);
    background-color: #ffffff17;
    border: 1px solid #ffffff30;
}
.form-control-light-textarea{
    width: 100%;
    height: 100px;
    padding: 15px 10px;
    color: var(--bs-white);
    background-color: #ffffff17;
    border: 1px solid #ffffff30;
}
.form-control-light:focus-visible, .form-control-light-textarea:focus-visible{
    outline: none;
}
.btn-theme-yellow{
    background-color: #fbdb20;
    color: #000;
    border: none;
    height: 44px;
}
/* ======================== event page ============================ */
.align-info {
    list-style: none;
    padding: 0;
}
.align-info li {
    display: flex;
    align-items: center;
    color: var(--bs-white);
    font-size: 16px;
    padding: 4px 5px;
    gap: 25px;
}
.align-info li>img {
    width: 22px;
    margin-right: 16px;
    padding-top: 5px;
}
.align-info li a{
    text-decoration: none;
    color: var(--bs-white);
    font-size: 16px;
    display: block;
}
.align-info.dark, .align-info.dark li, .align-info.dark li a{
    color: var(--bs-dark);
}
.com-section-title{
    font-size: 60px;
    font-weight: 600;
}
.com-section-description{
    font-size: 16px;
    font-weight: 500;
}

/* light box style */
.gallery-flex{
    display: flex;
    gap: 10px;
}
.img-fit-gallery {
    width: 100%;
    filter: grayscale(0);
    transition: 0.3s;
}
.img-fit-gallery:hover {
    filter: grayscale(1);
}
/* end light-box style */

.video-list{
    width: 100%;
    height: 325px;

}
.manufactur-gallery-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.manufactur-gallery-flex> .item {
    width: 49.3%;
}
/* ======================== Mechanical Starter page ============================ */
.bg-odd-padding{
    padding-bottom: 200px;
}
.description {
    font-size: 20px;
    font-weight: 400;
}
.video-product iframe{
    width: 100%;
    height: 600px;
}
.odd-font-60{
    font-size: 60px;
    font-weight: 600;
}
.odd-font-60.dark{
    color: var(--theme-color-dark);
}
.ms-gallery-flex {
    display: flex;
    gap: 10px;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    margin-top: -150px;
    padding-bottom: 50px;
}
.bg-light-section{
    padding-bottom: 50px;
}
.bg-bvm{
    background-image: url(../images/bg-line.png);
    background-color: var(--theme-color-dark);
    padding: 50px 15px;
}
.bmv-nav-tab{
    margin-bottom: 25px;
}
.bmv-nav-tab .nav-item{
    position: relative;
}
.bmv-nav-tab .nav-item:first-child::before {
    content: '';
    color: #fff;
    position: absolute;
    right: 0;
    top: 15px;
}
.bmv-nav-tab .nav-link {
    font-size: 25px;
    color: rgb(255 255 255 / 70%);
    background-color: #000;
    border-radius: 0;
    border-bottom: 1px solid #000;
}
.bmv-nav-tab .nav-link.active, .bmv-nav-tab .show>.nav-link {
    color: #fbfd00;
    background-color: #fbfd001c;
    border-bottom: 1px solid #fbfd00;
}
.industry-ul.bmv-ul{
    gap: 5px;
}
.industry-ul.bmv-ul>li{
    width: 48%;
    padding: 3px 0px;
    height: auto;
    font-size: 17px;
}
hr {
    margin: 5px 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.1;
}
/* ===================== product page style ======================== */
.bg-esd-table-section{
    padding: 50px 15px;
}
.product-table-headeing{
    font-weight: 600;
    font-size: 20px;
}
.product-table-description{
    font-weight: 600;
    font-size: 18px;
}
.text-line {
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    width: 30px;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 39px;
    justify-content: center;
    height: 100%;
}
.bg-td-yellow{
    background-color: var(--theme-color) !important;
}
.table > tbody > tr > td {
    vertical-align: middle;
}
/*  */
.bg-list-tab-section{
    background-color: #ededed;
    padding: 50px 15px;
}
.nav-part-list{
    margin-bottom: 25px;
}
.nav-part-list .nav-link {
    border-radius: 0px;
    background-color: var(--theme-color-dark);
    color: var(--bs-white);
}
.nav-part-list .nav-link.active, .nav-part-list .show>.nav-link {
    color: var(--theme-color-dark);
    background-color: var(--theme-color);
}
.cus-tab-content{
    background-color: #ffffff;
}
.tab-list-title {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.tab-list-title.center{
    text-align: center;
}
.tab-list-title>span{
    color: #e5371b;
}
.pl-data-card {
    background: rgb(207, 229, 243);
    background: -moz-linear-gradient(180deg, rgba(207, 229, 243, 1) 0%, rgba(93, 136, 187, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(207, 229, 243, 1) 0%, rgba(93, 136, 187, 1) 100%);
    background: linear-gradient(180deg, rgba(207, 229, 243, 1) 0%, rgba(93, 136, 187, 1) 100%);
    border: none;
    border-radius: 0;
    height: 100%;
}
.p-list-title{
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 15px;
}
.ul-pl-list-value{
    list-style: none;
    padding: 0%;
}
.ul-pl-list-value li {
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
}
.white-line {
    position: relative;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}
.white-line::after {
    content: '';
    width: 70px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -11px;
}
.table-tech{
text-align: center;
}
.table-tech.table-striped-columns>:not(caption)>tr>:nth-child(2n) {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--theme-color);
}
.td-uppercase{
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}
.bg-table-light {
    --bs-table-bg-type: #fff !important;
}
.font-weight-600{

}
.btn-show-more {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: block;
    margin: 50px 0px;
}
.btn-show-more>i{
    font-size: 15px;
}
.text-theme-color{
    color: var(--theme-color);
}
.img-sf {
    width: 100%;
    height: 300px;
    filter: grayscale(0);
    transition: 0.3s;
    object-fit: cover;
    margin-bottom: 17px;
}
.img-sf:hover {
    filter: grayscale(1);
}
.gallery-box .owl-dots{
    text-align: center;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background-color: #ffffff79;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    border-radius: 50px;
}
.owl-dot.active{
   background-color: #fff !important; 
}
/* coming soon */
.bg-coming-soon {
    background-image: url(../images/bg_coming_soon.jpg);
    background-color: #000000d4;
    padding: 50px 15px;
    height: 100vh;
    /* overflow: hidden; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
}
.comingsoon-container {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.text-coming-soon {
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    text-shadow: 0px 0px 11px #ffffffb0;
}
.go-to-home {
    width: 200px;
    color: var(--bs-dark);
    text-decoration: none;
    margin: auto;
    display: block;
    text-align: center;
    background-color: var(--theme-color);
    padding: 15px 10px;
}
.btn-home {
    position: absolute;
    text-decoration: none;
    background-color: var(--theme-color);
    color: var(--bs-black);
    padding: 20px 20px;
    font-size: 20px;
    border-radius: 0px 0px 30px 0px;
    line-height: 1;
}
.long-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}
.long-form a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color-dark);
    background-color: var(--theme-color);
    border: 1px solid #ffffff45;
    line-height: 1;
    padding: 12px 22px;
    width: 100%;
    text-align: center;
}
.custom-tooltip {
    --bs-tooltip-bg: var(--theme-color);
    --bs-tooltip-color: var(--theme-color-dark);
  }
.buload-box {
    border: 1px dashed #f5c9206b;
    padding: 20px;
    text-align: center;
    position: relative;
}
.buload-box h4 {
    font-size: 20px;
    color: var(--bs-white);
}
.buload-box h4>small {
    font-size: 14px;
    padding: 15px 0px;
    display: block;
}
.buload-box img{
    width: 65px;
    margin-bottom: 16px;
}
.pdf-upload{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.file-name {
    margin-bottom: 0px;
    color: #ffffff61;
    font-size: 12px;
    letter-spacing: 2px;
}


.simple-list {
    display: block;
}

.simple-list li {
    width: 100% !important;
}

.why-we-are .boogi-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-we-are .pro-card .text-description {
    position: absolute;
    bottom: 0;
}

.divider-image {
    overflow: hidden;
}

.divider-image img {
    object-fit: cover;
    object-position: bottom;
}


@media (max-width: 768px) {
    .bg-query .industry-ul.bmv-ul>li {
        display: block;
    }
}

@media (max-width: 768px) {
    .pli {
        height: 150px;
    }
}